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