Internal
problem
ID
[14086]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
5.6
Laplace
transform.
Nonhomogeneous
equations.
Problems
page
368
Problem
number
:
Problem
14(b)
Date
solved
:
Tuesday, January 28, 2025 at 06:14:01 AM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 9.885 (sec). Leaf size: 45
dsolve([diff(y(t),t$4)-16*y(t)=32*(Heaviside(t)-Heaviside(t-Pi)),y(0) = 0, D(y)(0) = 0, (D@@2)(y)(0) = 0, (D@@3)(y)(0) = 0],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.014 (sec). Leaf size: 72
DSolve[{D[y[t],{t,4}]-16*y[t]==32*(UnitStep[t]-UnitStep[t-Pi]),{y[0]==0,Derivative[1][y][0] ==0,Derivative[2][y][0] ==0,Derivative[3][y][0]==0}},y[t],t,IncludeSingularSolutions -> True]