4.38.17 \(x^2 y''(x)=\left (3 x-2 y'(x)\right ) y'(x)\)

ODE
\[ x^2 y''(x)=\left (3 x-2 y'(x)\right ) y'(x) \] ODE Classification

[[_2nd_order, _missing_y]]

Book solution method
TO DO

Mathematica
cpu = 0.018197 (sec), leaf count = 28

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

Maple
cpu = 0.297 (sec), leaf count = 22

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

DSolve[x^2*y''[x] == (3*x - 2*y'[x])*y'[x],y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(x^2*diff(diff(y(x),x),x) = (3*x-2*diff(y(x),x))*diff(y(x),x), y(x),'implicit')

Maple raw output

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