Internal
problem
ID
[7370]
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.3,
page
224
Problem
number
:
26
Date
solved
:
Monday, January 27, 2025 at 02:51:08 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 0.466 (sec). Leaf size: 70
dsolve([diff(y(t),t$2)+2*diff(y(t),t)+5*y(t)=piecewise(0<t and t<2*Pi,10*sin(t),t>2*Pi,0),y(Pi) = 1, D(y)(Pi) = 2*exp(-Pi)-2],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.062 (sec). Leaf size: 94
DSolve[{D[y[t],{t,2}]+2*D[y[t],t]+5*y[t]==Piecewise[{{10*Sin[t],0<t<2*Pi},{0,t>2*Pi}}],{y[Pi]==1,Derivative[1][y][Pi]==2*Exp[-Pi]-2}},y[t],t,IncludeSingularSolutions -> True]