15.27 problem 23

Internal problem ID [1375]

Book: Elementary differential equations with boundary value problems. William F. Trench. Brooks/Cole 2001
Section: Chapter 7 Series Solutions of Linear Second Equations. 7.6 THE METHOD OF FROBENIUS II. Exercises 7.6. Page 374
Problem number: 23.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _with_linear_symmetries]]

Solve \begin {gather*} \boxed {x^{2} \left (1+2 x \right ) y^{\prime \prime }+x \left (5+9 x \right ) y^{\prime }+\left (3 x +4\right ) y=0} \end {gather*} With the expansion point for the power series method at \(x = 0\).

Solution by Maple

Time used: 0.022 (sec). Leaf size: 81

Order:=8; 
dsolve(x^2*(1+2*x)*diff(y(x),x$2)+x*(5+9*x)*diff(y(x),x)+(4+3*x)*y(x)=0,y(x),type='series',x=0);
 

\[ y \relax (x ) = \frac {\left (\ln \relax (x ) c_{2}+c_{1}\right ) \left (1+3 x +\frac {3}{2} x^{2}-\frac {1}{2} x^{3}+\frac {3}{8} x^{4}-\frac {3}{8} x^{5}+\frac {7}{16} x^{6}-\frac {9}{16} x^{7}+\mathrm {O}\left (x^{8}\right )\right )+\left (\left (-5\right ) x -\frac {25}{4} x^{2}+\frac {5}{4} x^{3}-\frac {25}{32} x^{4}+\frac {113}{160} x^{5}-\frac {247}{320} x^{6}+\frac {2123}{2240} x^{7}+\mathrm {O}\left (x^{8}\right )\right ) c_{2}}{x^{2}} \]

Solution by Mathematica

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

AsymptoticDSolveValue[x^2*(1+2*x)*y''[x]+x*(5+9*x)*y'[x]+(4+3*x)*y[x]==0,y[x],{x,0,7}]
 

\[ y(x)\to \frac {c_1 \left (-\frac {9 x^7}{16}+\frac {7 x^6}{16}-\frac {3 x^5}{8}+\frac {3 x^4}{8}-\frac {x^3}{2}+\frac {3 x^2}{2}+3 x+1\right )}{x^2}+c_2 \left (\frac {\frac {2123 x^7}{2240}-\frac {247 x^6}{320}+\frac {113 x^5}{160}-\frac {25 x^4}{32}+\frac {5 x^3}{4}-\frac {25 x^2}{4}-5 x}{x^2}+\frac {\left (-\frac {9 x^7}{16}+\frac {7 x^6}{16}-\frac {3 x^5}{8}+\frac {3 x^4}{8}-\frac {x^3}{2}+\frac {3 x^2}{2}+3 x+1\right ) \log (x)}{x^2}\right ) \]