Internal
problem
ID
[4530]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
6.
The
Laplace
Transform
and
Its
Applications.
Problems
at
page
291
Problem
number
:
6.52
Date
solved
:
Tuesday, September 30, 2025 at 07:33:56 AM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
ode:=diff(diff(diff(diff(y(t),t),t),t),t)-5*diff(diff(y(t),t),t)+4*y(t) = 120*exp(3*t)*Heaviside(t-1); ic:=[y(0) = 15, D(y)(0) = -6, (D@@2)(y)(0) = 0, (D@@3)(y)(0) = 0]; dsolve([ode,op(ic)],y(t),method='laplace');
ode=D[y[t],{t,4}]-5*D[y[t],{t,2}]+4*y[t]==120*Exp[3*t]*UnitStep[t-1]; ic={y[0]==15,Derivative[1][y][0] == -6,Derivative[2][y][0] == 0,Derivative[3][y][0] == 0}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(4*y(t) - 120*exp(3*t)*Heaviside(t - 1) - 5*Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 4)),0) ics = {y(0): 15, Subs(Derivative(y(t), t), t, 0): -6, Subs(Derivative(y(t), (t, 2)), t, 0): 0, Subs(Derivative(y(t), (t, 3)), t, 0): 0} dsolve(ode,func=y(t),ics=ics)