Internal
problem
ID
[13767]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.4.
Equations
Containing
Polynomial
Functions
of
y.
subsection
1.4.1-2
Abel
equations
of
the
first
kind.
Problem
number
:
20
Date
solved
:
Thursday, October 02, 2025 at 08:01:28 AM
CAS
classification
:
[_Abel]
ode:=diff(y(x),x) = -1/x^(16/9)*(a*x-6/25)^(34/9)*y(x)^3+2/27*(9*a*x-2/25)/x^(11/18)/(a*x-6/25)^(61/18); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==-x^(-16/9)*(a*x-6/25)^(34/9)*y[x]^3+2/27*(9*a*x-2/25)*x^(-11/18)*(a*x-6/25)^(-61/18); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(Derivative(y(x), x) + (a*x - 6/25)**(34/9)*y(x)**3/x**(16/9) - (2*a*x/3 - 4/675)/(x**(11/18)*(a*x - 6/25)**(61/18)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out