Internal
problem
ID
[13659]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
9,
The
Laplace
transform.
Section
9.3,
Exercises
page
452
Problem
number
:
16
Date
solved
:
Tuesday, January 28, 2025 at 05:54:27 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 13.101 (sec). Leaf size: 109
dsolve([diff(y(t),t$2)+6*diff(y(t),t)+8*y(t)=piecewise(0<t and t<2*Pi,3,t>2*Pi,0),y(0) = 1, D(y)(0) = -1],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.043 (sec). Leaf size: 94
DSolve[{D[y[t],{t,2}]+6*D[y[t],t]+8*y[t]==Piecewise[{{3,0<t<2*Pi},{0,t>2*Pi}}],{y[0]==1,Derivative[1][y][0]==-1}},{y[t]},t,IncludeSingularSolutions -> True]