1.5 problem Problem 11.5

Internal problem ID [4659]

Book: Schaums Outline Differential Equations, 4th edition. Bronson and Costa. McGraw Hill 2014
Section: Chapter 11. THE METHOD OF UNDETERMINED COEFFICIENTS. page 95
Problem number: Problem 11.5.
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime \prime }-6 y^{\prime }+25 y-64 \,{\mathrm e}^{-t}=0} \end {gather*}

Solution by Maple

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

dsolve(diff(y(t),t$2)-6*diff(y(t),t)+25*y(t)=64*exp(-t),y(t), singsol=all)
 

\[ y \relax (t ) = {\mathrm e}^{3 t} \sin \left (4 t \right ) c_{2}+{\mathrm e}^{3 t} \cos \left (4 t \right ) c_{1}+2 \,{\mathrm e}^{-t} \]

Solution by Mathematica

Time used: 0.008 (sec). Leaf size: 34

DSolve[y''[t]-6*y'[t]+25*y[t]==64*Exp[-t],y[t],t,IncludeSingularSolutions -> True]
 

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