Internal
problem
ID
[18391]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
9.
Laplace
transforms.
Section
53.
More
about
Convolutions.
The
Unit
Step
and
Impulse
Functions.
Problems
at
page
481
Problem
number
:
4
(a)
Date
solved
:
Monday, March 31, 2025 at 05:27:12 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using Laplace method With initial conditions
ode:=diff(diff(y(t),t),t)+5*diff(y(t),t)+6*y(t) = 4*exp(3*t); ic:=y(0) = 0, D(y)(0) = 0; dsolve([ode,ic],y(t),method='laplace');
ode=D[y[t],{t,2}]+5*D[y[t],t]+6*y[t]==4*Exp[3*t]; ic={y[0]==0,Derivative[1][y][0] == 0}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(6*y(t) - 4*exp(3*t) + 5*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {y(0): 0, Subs(Derivative(y(t), t), t, 0): 0} dsolve(ode,func=y(t),ics=ics)