Internal
problem
ID
[7378]
Book
:
ADVANCED
ENGINEERING
MATHEMATICS.
ERWIN
KREYSZIG,
HERBERT
KREYSZIG,
EDWARD
J.
NORMINTON.
10th
edition.
John
Wiley
USA.
2011
Section
:
Chapter
6.
Laplace
Transforms.
Problem
set
6.4,
page
230
Problem
number
:
9
Date
solved
:
Monday, January 27, 2025 at 02:51:19 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 0.547 (sec). Leaf size: 59
dsolve([diff(y(t),t$2)+4*diff(y(t),t)+5*y(t)=(1-Heaviside(t-10))*exp(t)-exp(10)*Dirac(t-10),y(0) = 0, D(y)(0) = 1],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.532 (sec). Leaf size: 94
DSolve[{D[y[t],{t,2}]+4*D[y[t],t]+5*y[t]==(1-UnitStep[t-10])*Exp[t]-Exp[10]*DiracDelta[t-10],{y[0]==0,Derivative[1][y][0] ==1}},y[t],t,IncludeSingularSolutions -> True]