60.8.2 problem 1838

Internal problem ID [11763]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 7, non-linear third and higher order
Problem number : 1838
Date solved : Wednesday, March 05, 2025 at 03:06:28 PM
CAS classification : [[_3rd_order, _missing_x], [_3rd_order, _with_linear_symmetries]]

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

Maple
ode:=diff(diff(diff(y(x),x),x),x)+diff(diff(y(x),x),x)*y(x)-diff(y(x),x)^2+1 = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=1 - D[y[x],x]^2 + y[x]*D[y[x],{x,2}] + Derivative[3][y][x] == 0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(y(x)*Derivative(y(x), (x, 2)) - Derivative(y(x), x)**2 + Derivative(y(x), (x, 3)) + 1,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE -sqrt(y(x)*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)) + 1) + Derivative(y(x), x) cannot be solved by the factorable group method