18.3.11 problem Problem 16.12 (b)

Internal problem ID [3511]
Book : Mathematical methods for physics and engineering, Riley, Hobson, Bence, second edition, 2002
Section : Chapter 16, Series solutions of ODEs. Section 16.6 Exercises, page 550
Problem number : Problem 16.12 (b)
Date solved : Monday, January 27, 2025 at 07:40:06 AM
CAS classification : [[_Emden, _Fowler]]

\begin{align*} \left (z^{2}+5 z +7\right ) y^{\prime \prime }+2 y&=0 \end{align*}

Using series method with expansion around

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

Solution by Maple

Time used: 0.003 (sec). Leaf size: 54

Order:=6; 
dsolve((z^2+5*z+7)*diff(y(z),z$2)+2*y(z)=0,y(z),type='series',z=0);
 
\[ y \left (z \right ) = \left (1-\frac {1}{7} z^{2}+\frac {5}{147} z^{3}-\frac {11}{2058} z^{4}+\frac {5}{14406} z^{5}\right ) y \left (0\right )+\left (z -\frac {1}{21} z^{3}+\frac {5}{294} z^{4}-\frac {47}{10290} z^{5}\right ) D\left (y \right )\left (0\right )+O\left (z^{6}\right ) \]

Solution by Mathematica

Time used: 0.001 (sec). Leaf size: 63

AsymptoticDSolveValue[(z^2+5*z+7)*D[y[z],{z,2}]+2*y[z]==0,y[z],{z,0,"6"-1}]
 
\[ y(z)\to c_2 \left (-\frac {47 z^5}{10290}+\frac {5 z^4}{294}-\frac {z^3}{21}+z\right )+c_1 \left (\frac {5 z^5}{14406}-\frac {11 z^4}{2058}+\frac {5 z^3}{147}-\frac {z^2}{7}+1\right ) \]