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