Internal
problem
ID
[19862]
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
:
10
(a)
Date
solved
:
Thursday, October 02, 2025 at 04:51:33 PM
CAS
classification
:
[_separable]
ode:=diff(v(u),u)+2*u*v(u) = 2*u; dsolve(ode,v(u), singsol=all);
ode=D[v[u],u]+2*u*v[u]==2*u; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(2*u*v(u) - 2*u + Derivative(v(u), u),0) ics = {} dsolve(ode,func=v(u),ics=ics)