Internal
problem
ID
[13748]
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
:
1
Date
solved
:
Thursday, October 02, 2025 at 07:57:33 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Abel]
ode:=diff(y(x),x) = a*y(x)^3+b/x^(3/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==a*y[x]^3+b*x^(-3/2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(-a*y(x)**3 - b/x**(3/2) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -a*y(x)**3 - b/x**(3/2) + Derivative(y(x), x) cannot be solved b