67.8.31 problem 13.5 (g)

Internal problem ID [16526]
Book : Ordinary Differential Equations. An introduction to the fundamentals. Kenneth B. Howell. second edition. CRC Press. FL, USA. 2020
Section : Chapter 13. Higher order equations: Extending first order concepts. Additional exercises page 259
Problem number : 13.5 (g)
Date solved : Thursday, October 02, 2025 at 01:36:02 PM
CAS classification : [[_2nd_order, _missing_x], _Liouville, [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_xy]]

\begin{align*} y y^{\prime \prime }&=2 {y^{\prime }}^{2} \end{align*}
Maple. Time used: 0.025 (sec). Leaf size: 17
ode:=y(x)*diff(diff(y(x),x),x) = 2*diff(y(x),x)^2; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= 0 \\ y &= -\frac {1}{c_1 x +c_2} \\ \end{align*}
Mathematica. Time used: 0.083 (sec). Leaf size: 19
ode=y[x]*D[y[x],{x,2}]==2*D[y[x],x]^2; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to \frac {c_2}{x+c_1}\\ y(x)&\to 0 \end{align*}
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(y(x)*Derivative(y(x), (x, 2)) - 2*Derivative(y(x), x)**2,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE -sqrt(2)*sqrt(y(x)*Derivative(y(x), (x, 2)))/2 + Derivative(y(x), x) cannot be solved by the factorable group method