82.8.4 problem 36-5

Internal problem ID [21875]
Book : The Differential Equations Problem Solver. VOL. II. M. Fogiel director. REA, NY. 1978. ISBN 78-63609
Section : Chapter 36. Nonlinear differential equations. Page 1203
Problem number : 36-5
Date solved : Thursday, October 02, 2025 at 08:03:14 PM
CAS classification : [[_2nd_order, _missing_y], [_2nd_order, _reducible, _mu_y_y1]]

\begin{align*} x y^{\prime \prime }-{y^{\prime }}^{3}-y^{\prime }&=0 \end{align*}
Maple. Time used: 0.012 (sec). Leaf size: 31
ode:=x*diff(diff(y(x),x),x)-diff(y(x),x)^3-diff(y(x),x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= -\sqrt {-x^{2}+c_1}+c_2 \\ y &= \sqrt {-x^{2}+c_1}+c_2 \\ \end{align*}
Mathematica. Time used: 0.832 (sec). Leaf size: 103
ode=x*D[y[x],{x,2}]-D[y[x],x]^3-D[y[x],x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to c_2-i e^{-c_1} \sqrt {-1+e^{2 c_1} x^2}\\ y(x)&\to i e^{-c_1} \sqrt {-1+e^{2 c_1} x^2}+c_2\\ y(x)&\to c_2-i \sqrt {x^2}\\ y(x)&\to i \sqrt {x^2}+c_2 \end{align*}
Sympy. Time used: 9.529 (sec). Leaf size: 71
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x*Derivative(y(x), (x, 2)) - Derivative(y(x), x)**3 - Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ \left [ y{\left (x \right )} = C_{1} - x^{2} \sqrt {- \frac {C_{2}}{C_{2} x^{2} - 1}} + \frac {\sqrt {- \frac {C_{2}}{C_{2} x^{2} - 1}}}{C_{2}}, \ y{\left (x \right )} = C_{1} + x^{2} \sqrt {- \frac {C_{2}}{C_{2} x^{2} - 1}} - \frac {\sqrt {- \frac {C_{2}}{C_{2} x^{2} - 1}}}{C_{2}}\right ] \]