8.14 problem 14

Internal problem ID [4877]

Book: Mathematical Methods in the Physical Sciences. third edition. Mary L. Boas. John Wiley. 2006
Section: Chapter 8, Ordinary differential equations. Section 13. Miscellaneous problems. page 466
Problem number: 14.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }+4 y^{\prime }+5 y=2 \,{\mathrm e}^{-2 x} \cos \left (x \right )} \]

Solution by Maple

Time used: 0.016 (sec). Leaf size: 20

dsolve(diff(y(x),x$2)+4*diff(y(x),x)+5*y(x)=2*exp(-2*x)*cos(x),y(x), singsol=all)
 

\[ y \left (x \right ) = \left (\sin \left (x \right ) \left (c_{2} +x \right )+\cos \left (x \right ) c_{1} \right ) {\mathrm e}^{-2 x} \]

Solution by Mathematica

Time used: 0.049 (sec). Leaf size: 26

DSolve[y''[x]+4*y'[x]+5*y[x]==2*Exp[-2*x]*Cos[x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to e^{-2 x} ((1+c_2) \cos (x)+(x+c_1) \sin (x)) \]