Internal
problem
ID
[7371]
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
:
27
Date
solved
:
Monday, January 27, 2025 at 02:51:11 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 0.767 (sec). Leaf size: 40
dsolve([diff(y(t),t$2)+4*y(t)=piecewise(0<t and t<5,8*t^2,t>5,0),y(1) = 1+cos(2), D(y)(1) = 4-2*sin(2)],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.046 (sec). Leaf size: 51
DSolve[{D[y[t],{t,2}]+4*y[t]==Piecewise[{{8*t^2,0<t<5},{0,t>5}}],{y[1]==1+Cos[2],Derivative[1][y][1]==4-2*Sin[2]}},y[t],t,IncludeSingularSolutions -> True]