4.34.49 \(\left (1-2 x^3\right ) y''(x)+6 x^2 y'(x)-6 x y(x)=0\)

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

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

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

Maple
cpu = 0.045 (sec), leaf count = 15

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

DSolve[-6*x*y[x] + 6*x^2*y'[x] + (1 - 2*x^3)*y''[x] == 0,y[x],x]

Mathematica raw output

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

Maple raw input

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

Maple raw output

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