60.1.514 problem 527

Internal problem ID [10528]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 1, linear first order
Problem number : 527
Date solved : Sunday, March 30, 2025 at 05:45:02 PM
CAS classification : [[_1st_order, _with_linear_symmetries]]

\begin{align*} {y^{\prime }}^{3}-x y^{4} y^{\prime }-y^{5}&=0 \end{align*}

Maple. Time used: 0.337 (sec). Leaf size: 47
ode:=diff(y(x),x)^3-x*y(x)^4*diff(y(x),x)-y(x)^5 = 0; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= -\frac {3 \sqrt {3}}{2 x^{{3}/{2}}} \\ y &= \frac {3 \sqrt {3}}{2 x^{{3}/{2}}} \\ y &= 0 \\ y &= c_1 \sqrt {\frac {c_1^{10}}{\left (c_1^{4} x -1\right )^{2}}} \\ \end{align*}
Mathematica. Time used: 0.033 (sec). Leaf size: 64
ode=-y[x]^5 - x*y[x]^4*D[y[x],x] + D[y[x],x]^3==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to \frac {1}{c_1 x-c_1{}^3} \\ y(x)\to 0 \\ y(x)\to \text {Indeterminate} \\ y(x)\to -\frac {3 \sqrt {3}}{2 x^{3/2}} \\ y(x)\to \frac {3 \sqrt {3}}{2 x^{3/2}} \\ \end{align*}
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-x*y(x)**4*Derivative(y(x), x) - y(x)**5 + Derivative(y(x), x)**3,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out