10.14.5 problem 5. case \(x_0=0\)

Internal problem ID [1387]
Book : Elementary differential equations and boundary value problems, 10th ed., Boyce and DiPrima
Section : Chapter 5.3, Series Solutions Near an Ordinary Point, Part II. page 269
Problem number : 5. case \(x_0=0\)
Date solved : Monday, January 27, 2025 at 04:56:32 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} y^{\prime \prime }+4 y^{\prime }+6 y x&=0 \end{align*}

Using series method with expansion around

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

Solution by Maple

Time used: 0.002 (sec). Leaf size: 52

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

Solution by Mathematica

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

AsymptoticDSolveValue[D[y[x],{x,2}]+4*D[y[x],x]+6*x*y[x]==0,y[x],{x,0,"6"-1}]
 
\[ y(x)\to c_1 \left (-\frac {4 x^5}{5}+x^4-x^3+1\right )+c_2 \left (\frac {47 x^5}{15}-\frac {19 x^4}{6}+\frac {8 x^3}{3}-2 x^2+x\right ) \]