Internal
problem
ID
[18465]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
9.
Laplace
transforms.
Section
53.
More
about
Convolutions.
The
Unit
Step
and
Impulse
Functions.
Problems
at
page
481
Problem
number
:
5
(a)
Date
solved
:
Tuesday, January 28, 2025 at 11:50:28 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 0.307 (sec). Leaf size: 39
dsolve([diff(y(t),t$2)+3*diff(y(t),t)+2*y(t)=f(t),y(0) = 0, D(y)(0) = 0],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.048 (sec). Leaf size: 87
DSolve[{D[y[t],{t,2}]+3*D[y[t],t]+2*y[t]==f[t],{y[0]==0,Derivative[1][y][0] == 0}},y[t],t,IncludeSingularSolutions -> True]