Internal
problem
ID
[14085]
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(a)
Date
solved
:
Tuesday, January 28, 2025 at 06:13:51 AM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 9.935 (sec). Leaf size: 51
dsolve([diff(y(t),t$4)-5*diff(y(t),t$2)+4*y(t)=12*(Heaviside(t)-Heaviside(t-1)),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.015 (sec). Leaf size: 88
DSolve[{D[y[t],{t,4}]-5*D[y[t],{t,2}]+4*y[t]==12*(UnitStep[t]-UnitStep[t-1]),{y[0]==0,Derivative[1][y][0] ==0,Derivative[2][y][0] ==0,Derivative[3][y][0]==0}},y[t],t,IncludeSingularSolutions -> True]