Internal
problem
ID
[2967]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
10,
page
41
Problem
number
:
10
Date
solved
:
Sunday, March 30, 2025 at 01:02:28 AM
CAS
classification
:
[_linear]
ode:=y^2*diff(x(y),y)+(y^2+2*y)*x(y) = 1; dsolve(ode,x(y), singsol=all);
ode=y^2*D[x[y],y]+(y^2+2*y)*x[y]==1; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(y**2*Derivative(x(y), y) + (y**2 + 2*y)*x(y) - 1,0) ics = {} dsolve(ode,func=x(y),ics=ics)