4.37.24 \(a y'(x)^3+y''(x)=0\)

ODE
\[ a y'(x)^3+y''(x)=0 \] ODE Classification

[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_y_y1]]

Book solution method
TO DO

Mathematica
cpu = 0.2678 (sec), leaf count = 50

\[\left \{\left \{y(x)\to c_2-\frac {\sqrt {2 a x-2 c_1}}{a}\right \},\left \{y(x)\to \frac {\sqrt {2 a x-2 c_1}}{a}+c_2\right \}\right \}\]

Maple
cpu = 0.365 (sec), leaf count = 40

\[\left [y \left (x \right ) = \frac {\left (x +\textit {\_C1} \right ) \sqrt {2}}{\sqrt {a \left (x +\textit {\_C1} \right )}}+\textit {\_C2}, y \left (x \right ) = -\frac {\left (x +\textit {\_C1} \right ) \sqrt {2}}{\sqrt {a \left (x +\textit {\_C1} \right )}}+\textit {\_C2}\right ]\] Mathematica raw input

DSolve[a*y'[x]^3 + y''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> -(Sqrt[2*a*x - 2*C[1]]/a) + C[2]}, {y[x] -> Sqrt[2*a*x - 2*C[1]]/a + C
[2]}}

Maple raw input

dsolve(diff(diff(y(x),x),x)+a*diff(y(x),x)^3 = 0, y(x))

Maple raw output

[y(x) = (x+_C1)*2^(1/2)/(a*(x+_C1))^(1/2)+_C2, y(x) = -(x+_C1)*2^(1/2)/(a*(x+_C1
))^(1/2)+_C2]