4.35.38 \(\left (a^2+x^2\right )^2 \left (b^2+x^2\right ) y''(x)+x \left (\text {a0}+\text {b0} x^2\right ) y'(x)+y(x) \left (\text {a1}+\text {b1} x^2\right )=0\)

ODE
\[ \left (a^2+x^2\right )^2 \left (b^2+x^2\right ) y''(x)+x \left (\text {a0}+\text {b0} x^2\right ) y'(x)+y(x) \left (\text {a1}+\text {b1} x^2\right )=0 \] ODE Classification

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 139.621 (sec), leaf count = 0 , DifferentialRoot result

\[\left \{\left \{y(x)\to \text {DifferentialRoot}\left (\{\unicode {f818},\unicode {f817}\}\unicode {f4a1}\left \{\left (\unicode {f817}^2+b^2\right ) \unicode {f818}''(\unicode {f817}) \left (\unicode {f817}^2+a^2\right )^2+\left (\text {b1} \unicode {f817}^2+\text {a1}\right ) \unicode {f818}(\unicode {f817})+\left (\text {b0} \unicode {f817}^3+\text {a0} \unicode {f817}\right ) \unicode {f818}'(\unicode {f817})=0,\unicode {f818}(0)=c_1,\unicode {f818}'(0)=c_2\right \}\right )(x)\right \}\right \}\]

Maple
cpu = 1.707 (sec), leaf count = 0 , result contains DESol

\[ \left \{ y \left ( x \right ) ={\it DESol} \left ( \left \{ {\frac {{\rm d}^{2}}{{\rm d}{x}^{2}}}{\it \_Y} \left ( x \right ) +{\frac {x \left ( {x}^{2}{\it b0}+{\it a0} \right ) {\frac {\rm d}{{\rm d}x}}{\it \_Y} \left ( x \right ) }{ \left ( {a}^{2}+{x}^{2} \right ) ^{2} \left ( {b}^{2}+{x}^{2} \right ) }}+{\frac { \left ( {\it b1}\,{x}^{2}+{\it a1} \right ) {\it \_Y} \left ( x \right ) }{ \left ( {a}^{2}+{x}^{2} \right ) ^{2} \left ( {b}^{2}+{x}^{2} \right ) }} \right \} , \left \{ {\it \_Y} \left ( x \right ) \right \} \right ) \right \} \]

Mathematica raw input

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

Mathematica raw output

{{y[x] -> DifferentialRoot[Function[{\[FormalY], \[FormalX]}, {(a1 + \[FormalX]^
2*b1)*\[FormalY][\[FormalX]] + (\[FormalX]*a0 + \[FormalX]^3*b0)*Derivative[1][\
[FormalY]][\[FormalX]] + (\[FormalX]^2 + a^2)^2*(\[FormalX]^2 + b^2)*Derivative[
2][\[FormalY]][\[FormalX]] == 0, \[FormalY][0] == C[1], Derivative[1][\[FormalY]
][0] == C[2]}]][x]}}

Maple raw input

dsolve((a^2+x^2)^2*(b^2+x^2)*diff(diff(y(x),x),x)+x*(b0*x^2+a0)*diff(y(x),x)+(b1*x^2+a1)*y(x) = 0, y(x),'implicit')

Maple raw output

y(x) = DESol({diff(diff(_Y(x),x),x)+x*(b0*x^2+a0)/(a^2+x^2)^2/(b^2+x^2)*diff(_Y(
x),x)+(b1*x^2+a1)/(a^2+x^2)^2/(b^2+x^2)*_Y(x)},{_Y(x)})