Internal
problem
ID
[13729]
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
:
20
Date
solved
:
Sunday, October 12, 2025 at 04:46:12 AM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class B`]]
ode:=(A*x*y(x)+B*x^2+k*x)*diff(y(x),x) = A*y(x)^2+c*x*y(x)+d*x^2+(-A*beta+k)*y(x)-c*beta*x-k*beta; dsolve(ode,y(x), singsol=all);
ode=(A*x*y[x]+B*x^2+k*x)*D[y[x],x]==A*y[x]^2+c*x*y[x]+d*x^2+(k-A*\[Beta])*y[x]-c*\[Beta]*x-k*\[Beta]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") A = symbols("A") B = symbols("B") k = symbols("k") c = symbols("c") d = symbols("d") BETA = symbols("BETA") y = Function("y") ode = Eq(-A*y(x)**2 + BETA*c*x + BETA*k - c*x*y(x) - d*x**2 - (-A*BETA + 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)
Timed Out