Internal
problem
ID
[18468]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
1.
section
5.
Problems
at
page
19
Problem
number
:
18
Date
solved
:
Monday, March 31, 2025 at 05:30:16 PM
CAS
classification
:
[_linear]
ode:=diff(v(u),u)+2*v(u)/u = 3; dsolve(ode,v(u), singsol=all);
ode=D[v[u],u]+2*v[u]/u==3; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(Derivative(v(u), u) - 3 + 2*v(u)/u,0) ics = {} dsolve(ode,func=v(u),ics=ics)