4.28.48 \(\left (4 x^2+1\right ) y'(x)+4 x \left (x^2+1\right ) y(x)+x y''(x)=0\)

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.167907 (sec), leaf count = 21

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

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

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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