8.7 problem 7

Internal problem ID [5950]

Book: DIFFERENTIAL EQUATIONS with Boundary Value Problems. DENNIS G. ZILL, WARREN S. WRIGHT, MICHAEL R. CULLEN. Brooks/Cole. Boston, MA. 2013. 8th edition.
Section: CHAPTER 7 THE LAPLACE TRANSFORM. EXERCISES 7.5. Page 315
Problem number: 7.
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime \prime }+2 y^{\prime }-\left (\delta \left (t -1\right )\right )=0} \end {gather*} With initial conditions \begin {align*} [y \relax (0) = 0, y^{\prime }\relax (0) = 1] \end {align*}

Solution by Maple

Time used: 0.031 (sec). Leaf size: 28

dsolve([diff(y(t),t$2)+2*diff(y(t),t)=Dirac(t-1),y(0) = 0, D(y)(0) = 1],y(t), singsol=all)
 

\[ y \relax (t ) = \frac {\left (-{\mathrm e}^{-2 t +2}+1\right ) \theta \left (t -1\right )}{2}+\frac {1}{2}-\frac {{\mathrm e}^{-2 t}}{2} \]

Solution by Mathematica

Time used: 0.219 (sec). Leaf size: 32

DSolve[{y''[t]+2*y'[t]==DiracDelta[t-1],{y[0]==0,y'[0]==1}},y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to \frac {1}{2} \left (\theta (t-1)-e^{-2 t} \left (e^2 \theta (t-1)+1\right )+1\right ) \\ \end{align*}