Internal
problem
ID
[6019]
Book
:
Differential
Gleichungen,
Kamke,
3rd
ed,
Abel
ODEs
Section
:
Abel
ODE
with
constant
invariant
Problem
number
:
problem
38
Date
solved
:
Wednesday, March 05, 2025 at 12:04:20 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Abel]
ode:=-a*y(x)^3-b/x^(3/2)+diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=-a*y[x]^3-b/(x^(3/2))+D[y[x],x]==0; 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 by the lie group method