15.23.3 problem 3

Internal problem ID [3353]
Book : Differential Equations by Alfred L. Nelson, Karl W. Folley, Max Coral. 3rd ed. DC heath. Boston. 1964
Section : Exercise 41, page 195
Problem number : 3
Date solved : Monday, January 27, 2025 at 07:34:43 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

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

Using series method with expansion around

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

Solution by Maple

Time used: 0.015 (sec). Leaf size: 40

Order:=6; 
dsolve(x^2*(4+x)*diff(y(x),x$2)+7*x*diff(y(x),x)-y(x)=0,y(x),type='series',x=0);
 
\[ y \left (x \right ) = \frac {c_{2} x^{{5}/{4}} \left (1+\frac {1}{48} x -\frac {5}{19968} x^{2}+\frac {25}{1810432} x^{3}-\frac {75}{62390272} x^{4}+\frac {39}{293601280} x^{5}+\operatorname {O}\left (x^{6}\right )\right )+c_{1} \left (1+2 x +\operatorname {O}\left (x^{6}\right )\right )}{x} \]

Solution by Mathematica

Time used: 0.008 (sec). Leaf size: 58

AsymptoticDSolveValue[x^2*(4+x)*D[y[x],{x,2}]+7*x*D[y[x],x]-y[x]==0,y[x],{x,0,"6"-1}]
 
\[ y(x)\to c_1 \sqrt [4]{x} \left (\frac {39 x^5}{293601280}-\frac {75 x^4}{62390272}+\frac {25 x^3}{1810432}-\frac {5 x^2}{19968}+\frac {x}{48}+1\right )+\frac {c_2 (2 x+1)}{x} \]