73.26.10 problem 36.2 (j)

Internal problem ID [15750]
Book : Ordinary Differential Equations. An introduction to the fundamentals. Kenneth B. Howell. second edition. CRC Press. FL, USA. 2020
Section : Chapter 36. The big theorem on the the Frobenius method. Additional Exercises. page 739
Problem number : 36.2 (j)
Date solved : Tuesday, January 28, 2025 at 08:06:34 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} x y^{\prime \prime }+4 y^{\prime }+\frac {12 y}{\left (x +2\right )^{2}}&=0 \end{align*}

Using series method with expansion around

\begin{align*} -2 \end{align*}

Solution by Maple

Time used: 0.066 (sec). Leaf size: 48

Order:=6; 
dsolve(x*diff(y(x),x$2)+4*diff(y(x),x)+12/(x+2)^2*y(x)=0,y(x),type='series',x=-2);
 
\[ y = \frac {c_{1} \left (x +2\right )^{5} \left (1+\frac {3}{2} \left (x +2\right )+\frac {3}{2} \left (x +2\right )^{2}+\frac {5}{4} \left (x +2\right )^{3}+\frac {15}{16} \left (x +2\right )^{4}+\frac {21}{32} \left (x +2\right )^{5}+\operatorname {O}\left (\left (x +2\right )^{6}\right )\right )+c_{2} \left (2880+720 \left (x +2\right )+120 \left (x +2\right )^{2}+15 \left (x +2\right )^{5}+\operatorname {O}\left (\left (x +2\right )^{6}\right )\right )}{\left (x +2\right )^{2}} \]

Solution by Mathematica

Time used: 0.035 (sec). Leaf size: 70

AsymptoticDSolveValue[x*D[y[x],{x,2}]+4*D[y[x],x]+12/(x+2)^2*y[x]==0,y[x],{x,-2,"6"-1}]
 
\[ y(x)\to c_1 \left (\frac {1}{4 (x+2)}+\frac {1}{(x+2)^2}+\frac {1}{24}\right )+c_2 \left (\frac {15}{16} (x+2)^7+\frac {5}{4} (x+2)^6+\frac {3}{2} (x+2)^5+\frac {3}{2} (x+2)^4+(x+2)^3\right ) \]