Internal
problem
ID
[13248]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.3
(Linear
equations).
Exercises
page
56
Problem
number
:
6
Date
solved
:
Monday, March 31, 2025 at 07:43:25 AM
CAS
classification
:
[_separable]
ode:=(u^2+1)*diff(v(u),u)+4*u*v(u) = 3*u; dsolve(ode,v(u), singsol=all);
ode=(u^2+1)*D[ v[u],u]+4*u*v[u]==3*u; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(4*u*v(u) - 3*u + (u**2 + 1)*Derivative(v(u), u),0) ics = {} dsolve(ode,func=v(u),ics=ics)