4.26.44 \(-\left (\left (3-4 x^2\right ) y(x)\right )+y''(x)-4 x y'(x)=0\)

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.160857 (sec), leaf count = 29

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

Maple
cpu = 0.065 (sec), leaf count = 21

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

[y(x) = _C1*exp((x+1)*x)+_C2*exp(x*(x-1))]