4.32.10 \(\left (a^2-x^2\right ) y''(x)-8 x y'(x)-12 y(x)=0\)

ODE
\[ \left (a^2-x^2\right ) y''(x)-8 x y'(x)-12 y(x)=0 \] ODE Classification

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.195507 (sec), leaf count = 38

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

Maple
cpu = 0.058 (sec), leaf count = 52

\[\left [y \left (x \right ) = \frac {\textit {\_C1} \left (a^{2}+3 x^{2}\right )}{\left (a -x \right )^{3} \left (a +x \right )^{3}}+\frac {\textit {\_C2} x \left (3 a^{2}+x^{2}\right )}{\left (a -x \right )^{3} \left (a +x \right )^{3}}\right ]\] Mathematica raw input

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

Mathematica raw output

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

Maple raw input

dsolve((a^2-x^2)*diff(diff(y(x),x),x)-8*x*diff(y(x),x)-12*y(x) = 0, y(x))

Maple raw output

[y(x) = _C1/(a-x)^3/(a+x)^3*(a^2+3*x^2)+_C2*x*(3*a^2+x^2)/(a-x)^3/(a+x)^3]