60.7.90 problem 1701 (book 6.110)

Internal problem ID [11640]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 6, non-linear second order
Problem number : 1701 (book 6.110)
Date solved : Wednesday, March 05, 2025 at 02:35:34 PM
CAS classification : [[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]

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

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