4.26.45 \(-\left (\left (3-4 x^2\right ) y(x)\right )+y''(x)-4 x y'(x)=e^{x^2}\)

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

[[_2nd_order, _linear, _nonhomogeneous]]

Book solution method
TO DO

Mathematica
cpu = 0.164341 (sec), leaf count = 34

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

Maple
cpu = 0.047 (sec), leaf count = 27

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

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

Mathematica raw output

{{y[x] -> (E^((-1 + x)*x)*(-2*E^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) = exp(x^2), y(x))

Maple raw output

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