Internal
problem
ID
[13725]
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
:
16
Date
solved
:
Thursday, October 02, 2025 at 04:33:06 AM
CAS
classification
:
[_rational, [_Abel, `2nd type`, `class B`]]
ode:=(2*A*x*y(x)+B*x^2+b)*diff(y(x),x) = A*y(x)^2+k*(A*k+B)*x^2+c; dsolve(ode,y(x), singsol=all);
ode=(2*A*x*y[x]+B*x^2+b)*D[y[x],x]==A*y[x]^2+k*(A*k+B)*x^2+c; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") B = symbols("B") b = symbols("b") k = symbols("k") c = symbols("c") y = Function("y") ode = Eq(-A*y(x)**2 - c - k*x**2*(A*k + B) + (2*A*x*y(x) + B*x**2 + b)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out