Internal
problem
ID
[19208]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
49
(page
56)
Date
solved
:
Thursday, October 02, 2025 at 03:43:40 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _rational, [_Abel, `2nd type`, `class B`]]
ode:=(x*(x+y(x))+a^2)*diff(y(x),x) = y(x)*(x+y(x))+b^2; dsolve(ode,y(x), singsol=all);
ode=(x*(x+y[x])+a^2)*D[y[x],x]==y[x]*(x+y[x])+b^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-b**2 + (a**2 + x*(x + y(x)))*Derivative(y(x), x) - (x + y(x))*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)