Internal
problem
ID
[13718]
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
:
9
Date
solved
:
Sunday, October 12, 2025 at 04:45:25 AM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class B`]]
ode:=(a*x*y(x)-a*k*y(x)+b*x-b*k)*diff(y(x),x) = c*y(x)^2+d*x*y(x)+(-d*k+b)*y(x); dsolve(ode,y(x), singsol=all);
ode=(a*x*y[x]-a*k*y[x]+b*x-b*k)*D[y[x],x]==c*y[x]^2+d*x*y[x]+(b-d*k)*y[x]; 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") y = Function("y") ode = Eq(-c*y(x)**2 - d*x*y(x) - (b - d*k)*y(x) + (-a*k*y(x) + a*x*y(x) - b*k + b*x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out