15.24.5 problem 5

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

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

Using series method with expansion around

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

Solution by Maple

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

Order:=6; 
dsolve(x^2*diff(y(x),x$2)-x*(2*x+3)*diff(y(x),x)+4*y(x)=0,y(x),type='series',x=0);
 
\[ y \left (x \right ) = x^{2} \left (\left (c_{2} \ln \left (x \right )+c_{1} \right ) \left (1+4 x +6 x^{2}+\frac {16}{3} x^{3}+\frac {10}{3} x^{4}+\frac {8}{5} x^{5}+\operatorname {O}\left (x^{6}\right )\right )+\left (\left (-6\right ) x -13 x^{2}-\frac {124}{9} x^{3}-\frac {173}{18} x^{4}-\frac {374}{75} x^{5}+\operatorname {O}\left (x^{6}\right )\right ) c_{2} \right ) \]

Solution by Mathematica

Time used: 0.005 (sec). Leaf size: 116

AsymptoticDSolveValue[x^2*D[y[x],{x,2}]-x*(2*x+3)*D[y[x],x]+4*y[x]==0,y[x],{x,0,"6"-1}]
 
\[ y(x)\to c_1 \left (\frac {8 x^5}{5}+\frac {10 x^4}{3}+\frac {16 x^3}{3}+6 x^2+4 x+1\right ) x^2+c_2 \left (\left (-\frac {374 x^5}{75}-\frac {173 x^4}{18}-\frac {124 x^3}{9}-13 x^2-6 x\right ) x^2+\left (\frac {8 x^5}{5}+\frac {10 x^4}{3}+\frac {16 x^3}{3}+6 x^2+4 x+1\right ) x^2 \log (x)\right ) \]