12.16.12 problem 8

Internal problem ID [2074]
Book : Elementary differential equations with boundary value problems. William F. Trench. Brooks/Cole 2001
Section : Chapter 7 Series Solutions of Linear Second Equations. 7.6 THE METHOD OF FROBENIUS III. Exercises 7.7. Page 389
Problem number : 8
Date solved : Monday, January 27, 2025 at 05:41:40 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

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

Using series method with expansion around

\begin{align*} 0 \end{align*}

Solution by Maple

Time used: 0.010 (sec). Leaf size: 56

Order:=6; 
dsolve(x^2*diff(y(x),x$2)+10*x*diff(y(x),x)+(14+x)*y(x)=0,y(x),type='series',x=0);
 
\[ y = \frac {c_1 \left (1-\frac {1}{6} x +\frac {1}{84} x^{2}-\frac {1}{2016} x^{3}+\frac {1}{72576} x^{4}-\frac {1}{3628800} x^{5}+\operatorname {O}\left (x^{6}\right )\right ) x^{5}+c_2 \left (\ln \left (x \right ) \left (-x^{5}+\operatorname {O}\left (x^{6}\right )\right )+\left (2880+720 x +120 x^{2}+20 x^{3}+5 x^{4}+\operatorname {O}\left (x^{6}\right )\right )\right )}{x^{7}} \]

Solution by Mathematica

Time used: 0.021 (sec). Leaf size: 68

AsymptoticDSolveValue[x^2*D[y[x],{x,2}]+10*x*D[y[x],x]+(14+x)*y[x]==0,y[x],{x,0,"6"-1}]
 
\[ y(x)\to c_2 \left (\frac {x^2}{72576}+\frac {1}{x^2}-\frac {x}{2016}-\frac {1}{6 x}+\frac {1}{84}\right )+c_1 \left (\frac {1}{x^7}+\frac {1}{4 x^6}+\frac {1}{24 x^5}+\frac {1}{144 x^4}+\frac {1}{576 x^3}\right ) \]