8.18 problem Exercise 21.22, page 231

Internal problem ID [4114]

Book: Ordinary Differential Equations, By Tenenbaum and Pollard. Dover, NY 1963
Section: Chapter 4. Higher order linear differential equations. Lesson 21. Undetermined Coefficients
Problem number: Exercise 21.22, page 231.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }+y-\sin \left (x \right )-{\mathrm e}^{-x}=0} \]

Solution by Maple

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

dsolve(diff(y(x),x$2)+y(x)=sin(x)+exp(-x),y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.169 (sec). Leaf size: 36

DSolve[y''[x]+y[x]==Sin[x]+Exp[-x],y[x],x,IncludeSingularSolutions -> True]
 

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