Internal
problem
ID
[13727]
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
:
18
Date
solved
:
Thursday, October 02, 2025 at 04:36:40 AM
CAS
classification
:
[_separable]
ode:=(A*x*y(x)+B*x^2+k*x)*diff(y(x),x) = A*y(x)^2+B*x*y(x)+(A*b+k)*y(x)+B*b*x+b*k; dsolve(ode,y(x), singsol=all);
ode=(A*x*y[x]+B*x^2+k*x)*D[y[x],x]==A*y[x]^2+B*x*y[x]+(A*b+k)*y[x]+B*b*x+b*k; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") B = symbols("B") k = symbols("k") b = symbols("b") y = Function("y") ode = Eq(-A*y(x)**2 - B*b*x - B*x*y(x) - b*k - (A*b + k)*y(x) + (A*x*y(x) + B*x**2 + k*x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)