4.31.34 \(y(x) \left (\sum _{m=0}^n a(m) x^{2 m}\right )+\left (1-x^2\right ) y''(x)-x y'(x)=0\)

ODE
\[ y(x) \left (\sum _{m=0}^n a(m) x^{2 m}\right )+\left (1-x^2\right ) y''(x)-x y'(x)=0 \] ODE Classification

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 1.64887 (sec), leaf count = 0 , could not solve

DSolve[Sum[x^(2*m)*a[m], {m, 0, n}]*y[x] - x*Derivative[1][y][x] + (1 - x^2)*Derivative[2][y][x] == 0, y[x], x]

Maple
cpu = 31.56 (sec), leaf count = 0 , result contains DESol or ODESolStruc

\[[]\]

Mathematica raw input

DSolve[Sum[x^(2*m)*a[m], {m, 0, n}]*y[x] - x*y'[x] + (1 - x^2)*y''[x] == 0,y[x],x]

Mathematica raw output

DSolve[Sum[x^(2*m)*a[m], {m, 0, n}]*y[x] - x*Derivative[1][y][x] + (1 - x^2)*Der
ivative[2][y][x] == 0, y[x], x]

Maple raw input

dsolve((-x^2+1)*diff(diff(y(x),x),x)-x*diff(y(x),x)+sum(a(m)*x^(2*m),m = 0 .. n)*y(x) = 0, y(x))

Maple raw output

[]