4.38.6 \(x y''(x)+2 x y'(x)^2-2 y'(x)=0\)

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

[[_2nd_order, _missing_y], _Liouville, [_2nd_order, _reducible, _mu_xy]]

Book solution method
TO DO

Mathematica
cpu = 0.311448 (sec), leaf count = 23

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

Maple
cpu = 0.099 (sec), leaf count = 17

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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