14.22 problem 3(f)

Internal problem ID [6392]

Book: Differential Equations: Theory, Technique, and Practice by George Simmons, Steven Krantz. McGraw-Hill NY. 2007. 1st Edition.
Section: Chapter 2. Problems for Review and Discovery. Drill excercises. Page 105
Problem number: 3(f).
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_2nd_order, _linear, _nonhomogeneous]]

\[ \boxed {y^{\prime \prime }+4 y^{\prime }+4 y=\ln \left (x \right ) x} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 42

dsolve(diff(y(x),x$2)+4*diff(y(x),x)+4*y(x)=x*ln(x),y(x), singsol=all)
 

\[ y \left (x \right ) = c_{2} {\mathrm e}^{-2 x}+{\mathrm e}^{-2 x} x c_{1} -\frac {{\mathrm e}^{-2 x} \left (x +1\right ) \operatorname {Ei}_{1}\left (-2 x \right )}{4}-\frac {3}{8}+\frac {\left (2 x -2\right ) \ln \left (x \right )}{8} \]

Solution by Mathematica

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

DSolve[y''[x]+4*y'[x]+4*y[x]==x*Log[x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {1}{8} e^{-2 x} \left (2 (x+1) \operatorname {ExpIntegralEi}(2 x)-3 e^{2 x}+2 e^{2 x} (x-1) \log (x)+8 c_2 x+8 c_1\right ) \]