53.2.8 problem 15

Internal problem ID [8461]
Book : Elementary differential equations. By Earl D. Rainville, Phillip E. Bedient. Macmilliam Publishing Co. NY. 6th edition. 1981.
Section : CHAPTER 16. Nonlinear equations. Section 97. The p-discriminant equation. EXERCISES Page 314
Problem number : 15
Date solved : Wednesday, March 05, 2025 at 05:56:15 AM
CAS classification : [_dAlembert]

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

Maple. Time used: 0.033 (sec). Leaf size: 984
ode:=diff(y(x),x)^3+x*diff(y(x),x)^2-y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} \text {Solution too large to show}\end{align*}

Mathematica. Time used: 80.947 (sec). Leaf size: 1489
ode=(D[y[x],x])^3+x*(D[y[x],x])^2-y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} \text {Solution too large to show}\end{align*}

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x*Derivative(y(x), x)**2 - y(x) + Derivative(y(x), x)**3,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out