4.30.16 \(y(x) \left (a+b x^2\right )+x^2 y''(x)+2 x y'(x)=0\)

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.171617 (sec), leaf count = 58

\[\left \{\left \{y(x)\to c_1 j_{\frac {1}{2} \left (\sqrt {1-4 a}-1\right )}\left (\sqrt {b} x\right )+c_2 y_{\frac {1}{2} \left (\sqrt {1-4 a}-1\right )}\left (\sqrt {b} x\right )\right \}\right \}\]

Maple
cpu = 0.259 (sec), leaf count = 45

\[\left [y \left (x \right ) = \frac {\textit {\_C1} \BesselJ \left (\frac {\sqrt {1-4 a}}{2}, x \sqrt {b}\right )}{\sqrt {x}}+\frac {\textit {\_C2} \BesselY \left (\frac {\sqrt {1-4 a}}{2}, x \sqrt {b}\right )}{\sqrt {x}}\right ]\] Mathematica raw input

DSolve[(a + b*x^2)*y[x] + 2*x*y'[x] + x^2*y''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> C[1]*SphericalBesselJ[(-1 + Sqrt[1 - 4*a])/2, Sqrt[b]*x] + C[2]*Spheri
calBesselY[(-1 + Sqrt[1 - 4*a])/2, Sqrt[b]*x]}}

Maple raw input

dsolve(x^2*diff(diff(y(x),x),x)+2*x*diff(y(x),x)+(b*x^2+a)*y(x) = 0, y(x))

Maple raw output

[y(x) = _C1/x^(1/2)*BesselJ(1/2*(1-4*a)^(1/2),x*b^(1/2))+_C2/x^(1/2)*BesselY(1/2
*(1-4*a)^(1/2),x*b^(1/2))]