Internal
problem
ID
[19857]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
33.
Problems
at
page
91
Problem
number
:
9
(a)
Date
solved
:
Thursday, October 02, 2025 at 04:51:21 PM
CAS
classification
:
[_separable]
ode:=diff(v(u),u)+2*v(u)/u = 3*v(u); dsolve(ode,v(u), singsol=all);
ode=D[v[u],u]+2*v[u]/u==3*v[u]; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(-3*v(u) + Derivative(v(u), u) + 2*v(u)/u,0) ics = {} dsolve(ode,func=v(u),ics=ics)