L (Z f (τ) dτ = F(s) s: f (t) t-domain ˙ f (t) F (s) 1/s s-domain
L (Z f (τ) dτ = F(s) s: f (t) t-domain ˙ f (t) F (s) 1/s s-domain
3.1.4 Integration
Zt
F(s)
L ( f(τ) dτ =
0 s
The t-domain s-domain equivalence is:
f (t)
R
f˙(t) F (s) 1/s F (s)
s
t-domain s-domain
Example Using this property, we can compute the LT of the unit ramp signal t:
Z t
1
L (t) = L us (τ) dτ = 2
0 s
Applying this recursively: we can show that:
n!
L (tn ) =
sn+1
Example Using this property, we can compute the LT of the exponential signal e−at :
1
L(e−at ) = L(e−at us (t)) =
s+a
Example Using this property, we can also compute the LT of the signal te−at :
1
L(e−at t) =
(s + a)2
3.1.7 Convolution
This is a fundamental property for LTI systems:
Example an LTI system with input x(t) and IR h(t), what is the LT of its output y(t)?
Dr.Guernane 9
EE352 Lectures:03 Spring 2023
Examples We check this property with initial values of sine and cosine functions:
s
1. lim+ cos(t) = lim s = 1(X)
t→0 s→∞ s2 +1
1
2. lim+ sin(t) = lim s = 0(X)
t→0 s→∞ s2 +1
pole-zeros Map (pzmap) The poles and zeros of a Laplace Transform can be represented in the
s-plane (complex plane). Zeros are represented with small circles (o) whereas poles are marked
with a cross (x).
(s + 1)(s + 3)
F(s) =
s(s − 1)(s2 + 2s + 2)
Zeros are −3 and −1, whereas the poles are 0,1, −1 ± j
jω
−1 + j
LHP RHP
0 σ
−3 −1 1
−1 − j
• The Left-half plane (LHP) in green, is the region where <(s) < 0 (negative real part)
• The Right-Half plane (RHP) in orange, is the region where <(s) > 0 (positive real part).
Dr.Guernane 10
EE352 Lectures:03 Spring 2023
Provided that the limit (of limt→∞ f(t) ) exists. A sufficient condition on F(s) is that:
all poles of sF(s) have negative real parts, or are all in LHP .
4
Y(s) =
s(s − 3)
4 −4
lim y(t) 6= lim sY(s) = lim = because sY(s) has a pole 3 not in LHP
t→∞ s→0 s→0 s − 3 3
v̈o (t) + 3v̇o (t) + 2vo (t) = v̇i (t) + 3vi (t)
Dr.Guernane 11
EE352 Lectures:03 Spring 2023
s+3
Vo (s) = Vi (s)
s2 + 3s + 2
If vi (t) = us (t) ⇒ Vi (s) = 1/s
s+3
Vo (s) =
s(s2 + 3s + 2)
s
Example: Let F(s) = s+2 what is f(t)?, Using linearity and the LT of exponential signal:
s 2
f(t) = L−1 (F(s)) = L−1 ( ) = L−1 (1 − ) = δ(t) − 2e−2t t≥0
s+2 s+2
Cp1 Cp2
F(s) = + ...
s − p1 s − p2
Crp Cr−1
p C1p
+ + . . .
(s − p)r (s − p)r−1 s−p
1 di
Cpr−i = [(s − p)r F(s)]|s=p i = 0...,r − 1
i! dsi
Cp
Where Cp = (s − p)F(s)|s=p
s−p
Dr.Guernane 12
EE352 Lectures:03 Spring 2023
s+3
F(s) =
(s + 1)(s + 2)2
2 −1 −2
F(s) = + 2
+ ⇒ f(t) = 2e−t − te−2t − 2e−2t t≥0
s + 1 (s + 2) s+2
5
F(s) =
(s + 2)(s2 + 1)
Poles are −2,−j,+j
A B C 1 αs + β 1 s 2
F(s) = + + = + 2 = − 2 + 2 ⇒
s+2 s−j s+j s+2 s +1 s+2 s +1 s +1
Dr.Guernane 13
EE352 Lectures:03 Spring 2023
Dr.Guernane 14
EE352 Lectures:03 Spring 2023
MATLAB tips:
1. To define(create) a LT in matlab X(s), you can use either tf() or zpk() routine, (for instance if
s+1
X(s) = s2 +2s+2 )
>> pole(X)
>> zero(X)
>> dcgain(X)
>> isproper(X)
>> pzmap(X)
Dr.Guernane 15