12.11.7 problem 17

Internal problem ID [1846]
Book : Elementary differential equations with boundary value problems. William F. Trench. Brooks/Cole 2001
Section : Chapter 7 Series Solutions of Linear Second Equations. 7.1 Exercises. Page 318
Problem number : 17
Date solved : Monday, January 27, 2025 at 05:37:09 AM
CAS classification : [[_Emden, _Fowler]]

\begin{align*} x^{2} y^{\prime \prime }+2 x y^{\prime }-3 y x&=0 \end{align*}

Using series method with expansion around

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

Solution by Maple

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

Order:=6; 
dsolve(x^2*diff(y(x),x$2)+2*x*diff(y(x),x)-3*x*y(x)=0,y(x),type='series',x=2);
 
\[ y = \left (1+\frac {3 \left (x -2\right )^{2}}{4}-\frac {3 \left (x -2\right )^{3}}{8}+\frac {9 \left (x -2\right )^{4}}{32}-\frac {27 \left (x -2\right )^{5}}{160}\right ) y \left (2\right )+\left (x -2-\frac {\left (x -2\right )^{2}}{2}+\frac {\left (x -2\right )^{3}}{2}-\frac {5 \left (x -2\right )^{4}}{16}+\frac {31 \left (x -2\right )^{5}}{160}\right ) y^{\prime }\left (2\right )+O\left (x^{6}\right ) \]

Solution by Mathematica

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

AsymptoticDSolveValue[x^2*D[y[x],{x,2}]+2*x*D[y[x],x]-3*x*y[x]==0,y[x],{x,2,"6"-1}]
 
\[ y(x)\to c_1 \left (-\frac {27}{160} (x-2)^5+\frac {9}{32} (x-2)^4-\frac {3}{8} (x-2)^3+\frac {3}{4} (x-2)^2+1\right )+c_2 \left (\frac {31}{160} (x-2)^5-\frac {5}{16} (x-2)^4+\frac {1}{2} (x-2)^3-\frac {1}{2} (x-2)^2+x-2\right ) \]