4.30.8 \(x^2 y''(x)-2 x y'(x)+2 y(x)=4 x^3\)

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.164953 (sec), leaf count = 19

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

Maple
cpu = 0.02 (sec), leaf count = 18

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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