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

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.190701 (sec), leaf count = 33

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

Maple
cpu = 0.051 (sec), leaf count = 23

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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