12.11.12 problem 23

Internal problem ID [1851]
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 : 23
Date solved : Monday, January 27, 2025 at 05:37:15 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} x^{2} \left (1+x \right ) y^{\prime \prime }-x \left (-x^{2}-6 x +1\right ) y^{\prime }+\left (x^{2}+6 x +1\right ) 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: 46

Order:=6; 
dsolve(x^2*(1+x)*diff(y(x),x$2)-x*(1-6*x-x^2)*diff(y(x),x)+(1+6*x+x^2)*y(x)=0,y(x),type='series',x=0);
 
\[ y = x \left (\left (c_2 \ln \left (x \right )+c_1 \right ) \left (1-12 x +\frac {119}{2} x^{2}-\frac {583}{3} x^{3}+\frac {1981}{4} x^{4}-\frac {80287}{75} x^{5}+\operatorname {O}\left (x^{6}\right )\right )+\left (17 x -\frac {471}{4} x^{2}+445 x^{3}-\frac {118285}{96} x^{4}+\frac {702451}{250} x^{5}+\operatorname {O}\left (x^{6}\right )\right ) c_2 \right ) \]

Solution by Mathematica

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

AsymptoticDSolveValue[x^2*(1+x)*D[y[x],{x,2}]-x*(1-6*x-x^2)*D[y[x],x]+(1+6*x+x^2)*y[x]==0,y[x],{x,0,"6"-1}]
 
\[ y(x)\to c_1 x \left (-\frac {80287 x^5}{75}+\frac {1981 x^4}{4}-\frac {583 x^3}{3}+\frac {119 x^2}{2}-12 x+1\right )+c_2 \left (x \left (\frac {702451 x^5}{250}-\frac {118285 x^4}{96}+445 x^3-\frac {471 x^2}{4}+17 x\right )+x \left (-\frac {80287 x^5}{75}+\frac {1981 x^4}{4}-\frac {583 x^3}{3}+\frac {119 x^2}{2}-12 x+1\right ) \log (x)\right ) \]