60.7.47 problem 1650 (book 6.60)

Internal problem ID [11597]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 6, non-linear second order
Problem number : 1650 (book 6.60)
Date solved : Sunday, March 30, 2025 at 08:30:43 PM
CAS classification : [[_2nd_order, _missing_x]]

\begin{align*} y^{\prime \prime }&=a \sqrt {{y^{\prime }}^{2}+1} \end{align*}

Maple. Time used: 0.388 (sec). Leaf size: 32
ode:=diff(diff(y(x),x),x) = a*(1+diff(y(x),x)^2)^(1/2); 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= -i x +c_{1} \\ y &= i x +c_{1} \\ y &= c_{2} +\frac {\cosh \left (a \left (c_{1} +x \right )\right )}{a} \\ \end{align*}
Mathematica. Time used: 8.05 (sec). Leaf size: 44
ode=-(a*Sqrt[1 + D[y[x],x]^2]) + D[y[x],{x,2}] == 0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to \int _1^x\sinh (c_1+a K[1])dK[1]+c_2 \\ y(x)\to \frac {\cosh (a x)-\cosh (a)+a c_2}{a} \\ \end{align*}
Sympy
from sympy import * 
x = symbols("x") 
a = symbols("a") 
y = Function("y") 
ode = Eq(-a*sqrt(Derivative(y(x), x)**2 + 1) + Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out