Internal
problem
ID
[17760]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
5.
The
Laplace
transform.
Section
5.6
(Differential
equations
with
Discontinuous
Forcing
Functions).
Problems
at
page
342
Problem
number
:
12
Date
solved
:
Tuesday, January 28, 2025 at 11:02:22 AM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 13.770 (sec). Leaf size: 57
dsolve([diff(y(t),t$4)-y(t)=Heaviside(t-1)-Heaviside(t-2),y(0) = 12, D(y)(0) = 7, (D@@2)(y)(0) = 2, (D@@3)(y)(0) = -9],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.105 (sec). Leaf size: 154
DSolve[{D[y[t],{t,4}]-y[t]==UnitStep[t-1]-UnitStep[t-2],{y[0]==12,Derivative[1][y][0] ==7,Derivative[2][y][0] ==2,Derivative[3][y][0] ==-9}},y[t],t,IncludeSingularSolutions -> True]