8.14 problem 14

Internal problem ID [4368]

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 )=0} \]

Solution by Maple

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

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 ) = \sin \left (x \right ) {\mathrm e}^{-2 x} c_{2} +\cos \left (x \right ) {\mathrm e}^{-2 x} c_{1} +{\mathrm e}^{-2 x} \sin \left (x \right ) x \]

Solution by Mathematica

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

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

\begin{align*} y(x)\to e^{-2 x} ((1+c_2) \cos (x)+(x+c_1) \sin (x)) \\ \end{align*}