Internal
problem
ID
[13290]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
Miscellaneous
Review.
Exercises
page
60
Problem
number
:
19
Date
solved
:
Wednesday, March 05, 2025 at 09:34:43 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=4*x*y(x)*diff(y(x),x) = 1+y(x)^2; ic:=y(2) = 1; dsolve([ode,ic],y(x), singsol=all);
ode=4*x*y[x]*D[y[x],x]==y[x]^2+1; ic={y[2]==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*x*y(x)*Derivative(y(x), x) - y(x)**2 - 1,0) ics = {y(2): 1} dsolve(ode,func=y(x),ics=ics)