4.38.16 \(x^2 y''(x)+y'(x)^2=0\)

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

[[_2nd_order, _missing_y], [_2nd_order, _reducible, _mu_y_y1]]

Book solution method
TO DO

Mathematica
cpu = 0.25591 (sec), leaf count = 27

\[\left \{\left \{y(x)\to -\frac {x}{c_1}+\frac {\log (1+c_1 x)}{c_1{}^2}+c_2\right \}\right \}\]

Maple
cpu = 0.353 (sec), leaf count = 21

\[\left [y \left (x \right ) = \frac {x}{\textit {\_C1}}+\frac {\ln \left (\textit {\_C1} x -1\right )}{\textit {\_C1}^{2}}+\textit {\_C2}\right ]\] Mathematica raw input

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

Mathematica raw output

{{y[x] -> -(x/C[1]) + C[2] + Log[1 + x*C[1]]/C[1]^2}}

Maple raw input

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

Maple raw output

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