Internal
problem
ID
[13724]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.3.
Abel
Equations
of
the
Second
Kind.
subsection
1.3.4-2.
Problem
number
:
15
Date
solved
:
Thursday, October 02, 2025 at 04:33:02 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _rational, [_Abel, `2nd type`, `class B`]]
ode:=(x*y(x)+x^2+a)*diff(y(x),x) = y(x)^2+x*y(x)+b; dsolve(ode,y(x), singsol=all);
ode=(x*y[x]+x^2+a)*D[y[x],x]==y[x]^2+x*y[x]+b; 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 - x*y(x) + (a + x**2 + x*y(x))*Derivative(y(x), x) - y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)