334 1 11 Lec29
334 1 11 Lec29
11/21/2011
Review.
• Solution procedure of Laplace transform method:
1. Transform the equation: left hand side and the right hand side;
2. Obtain Y (s);
3. Take inverse transform y(t) = L−1{Y }.
• What are involved in transforming the right hand side:
1. Table of Laplace transform of basic functions;
2. L{f (t) u(t − a)} = e−as L{f (t + a)} when the right hand side is piecewise defined;
3. L{f (t) δ(t − a)} = e−as f (a) when the right hand side involves the impulse function.
• What are involved in the inverse transform:
1. Table of Laplace transforms;
2. L−1{e−as F (s)} = u(t − a) f (t − a).
• A remark about the smoothness of solution:
1. When the right hand side is smooth, the solution is smooth;
2. When the right hand side is piecewise defined, the solution is at least C 1 (meaning: y and y ′
are continuous functions);
3. When the right hand side involves δ, the solution is continuous – y ′ is not continuous anymore.
Convolution.
• A “binary” operation: Two inputs and one output. Other examples of binary operations include +, −,
×, /. Each of them takes two functions as inputs and give out one single function as the output.
• Convolution is much harder to compute than the four basic operations. In particular, don’t confuse
convolution with multiplication!
• Given two functions f (t) and g(t), their convolution is defined as
6
Z t
h(t) {f ∗g }(t) = f (t − τ ) g(τ ) dτ . (1)
0
1
2 Lecture 29 Convolution
We now switch the order of the integration. To do this we have to first understand what the region
of integration look like. We have t running from 0 to ∞, and τ from 0 to t. This is the triangular
region 0 < τ < t < ∞ in the t − τ plane:
τ
To switch the order of integration, we first check what values can τ take? The answer is any value
from 0 to ∞. Once τ is given, t can only run from τ to ∞. So we have
Z ∞Z t Z ∞Z ∞
[e−st f (t − τ ) g(τ )] dτ dt = [e−st f (t − τ ) g(τ )] dt dτ . (6)
0 0 0 τ
Remark. Another way of doing this is to first observe: 0 < t < ∞ together with 0 < τ < t is the same
as 0 < τ < t < ∞. Now ignore t we have 0 < τ < ∞, once τ is given, the range for t is τ < t < ∞.
Further calculate:
Z ∞Z ∞ Z ∞ Z ∞
[e−st f (t − τ ) g(τ )] dt dτ = g(τ ) e−st f (t − τ ) dt dτ
0 τ
Z0 ∞ Zτ ∞
−sτ −s(t−τ )
= g(τ ) e e f (t − τ ) dt dτ
Z0 ∞ τ
Z ∞
= e−sτ g(τ ) e−s(t−τ ) f (t − τ ) dt dτ . (7)
0 τ
Example 5. Express the solution of the following initial value problem in terms of a convo-
lution integral:
y ′′ + 4 y ′ + 4 y = g(t); y(0) = 0, y ′(0) = 0. (16)
Solution.
First transform the equation:
L{y ′′} = s2 Y − s y(0) − y ′(0) = s2 Y ; (17)
L{y ′} = s Y − y(0) = s Y (18)
Denoting L{g } = G(s), we have the transformed equation as
(s2 + 4 s + 4) Y = G(s). (19)
4 Lecture 29 Convolution
So
G(s)
Y= . (20)
s2 + 4 s + 4
Now take inverse transform:
Z t
G(s) 1
y = L −1
= L −1 −1
∗L {G} = (e −2t
t)∗g = e−2(t−τ ) (t −
(s + 2)2 (s + 2)2 0
τ ) g(τ ) dτ . (21)
Remark 6. Once we obtain this formula, we can get some information of the solution without
really compute them. For example, if we are further told that g is bounded, that is there is a
constant M such that |g | 6 M , then we can immediately compute
Z t
2 t + 1 −2t
e−2(t−τ ) (t − τ ) dτ = M 1 −
|y | 6 M e . (22)
0 4
In particular we can conclude |y | share the same bound M as g without requiring detailed
information of g.