Section 5.2 Lecture Notes (Part 2)
The goal of this activity is to add a couple more important properties of the Laplace transform.
Theorem
Suppose f is piecewise continuous and of exponential order. If c is a constant, then
Proof: We’ll use our definition of the Laplace transform to write
where F is the Laplace transform of f. Now, many find the last step of the proof difficult to understand, so let’s
note that the Laplace transform of a function of t returns a function of s. That is,
where F is the Laplace transform of f. Now, let’s note what this means. Suppose we substitute 5 for s. Then we
would get
Now, note that if we substituted for s, we would get:
Let’s add this to our table.
1
Let’s try an example.
Example #1:
Find the Laplace transform of .
Solution: By property #4 in our table, we know that:
That is,
Therefore, by our new theorem (item #6 in our table), we can write:
Let’s check our answer with Matlab.
syms s t
2
y=exp(3*t)*cos(5*t);
Y=laplace(y)
Y =
Y=simplifyFraction(Y)
Y =
Same answer! Now, here is some visual evidence that it is true. Recall from algebra, that the graph of
is a shift of the graph of , c units to the right (provided ). Let’s use this fact to better understand what is
going on with our new property.
syms s t
g=cos(5*t);
G=laplace(g);
f=exp(3*t)*cos(5*t);
F=laplace(f);
fplot(G,[0,10])
hold on
fplot(F,[3,10])
grid on
xlabel(‘s-axis’)
title(‘Laplace transforms of g(t)=cos 5t and f(t)=exp(3*t)cos 5t’)
legend(‘F(s)’,’F(s-3)’,’Location’,’southeast’)
hold off
3
Nice! Clearly shows that if , then , because the graph of the second is translated 3
units to the right.
Theorem
Suppose f is a piecewise continuous function of exponential order. Let be the Laplace transform of f. Then,
Proof: Let’s start with the definition of the Laplace transform.
Now, let’s differentiate both sides with respect to s.
Note that we can bring the derivative with respect to s inside because we have an integral with respect to t.
Now, we can continue with:
4
Therefore, we’ve shown that:
Let’s try an example and see if this works.
Example #2:
Find the Laplace transform of .
Solution: Using item in our table, we know that if , then:
Therefore, by our new theorem,
so we’ll need to differentiate to find the answer.
Therefore,
Now, let’s check our answer with Matlab.
syms s t
y=t*exp(5*t);
5
Y=laplace(y)
Y =
Same answer! 🙂
Higher Powers of t
We’ve shown that
where F is the Laplace transform of f. Let’s find what is equal to.
Therefore, we’ve shown that
If we were to differentiate again, we would discover that:
If we were to differentiate again, we would discover that
where the notation means the “fourth derivative of F.” If we were to differentiate again, we would
discover that
If we were to differentiate again, we would discover that
6
There is a definite pattern developing here which can be finally expressed as
where means the “n th derivative of F.” Let’s add this to our table.
Let’s try an example.
Example #3:
Find the Laplace transform of .
Solution: Using item #5 in our table, we know that if , then
Therefore, by property #7 in our table,
Therefore, we’ll have to find the second derivative of . Let’s start with the first derivative.
7
We can check this answer with Matlab.
syms s t
F=4/(s^2+16);
diff(F,s)
ans =
Same answer, so we can find the second derivative.
A lot of work. Let’s check this derivative with Matlab.
diff(F,s,2)
ans =
simplifyFraction(diff(F,s,2))
ans =
Same answer. Therefore,
8
Now, we can quickly check our answer with Matlab’s laplace command.
y=t^2*sin(4*t);
Y=laplace(y)
Y =
Y=simplifyFraction(Y)
Y =
Same answer.
Let’s do another example. In our previous examples, we showed a number of detailed steps to help our readers,
but now we will start to take some shortcuts.
Example #4:
Write the following initial value problem in algebraic form, then solve for .
Solution: The Laplace transform of the left side of our equation is:
Note how we used the initial conditions and in our last step. Next, the right side. By property
#5 in our table,
Therefore, by property #6 in our table,
Therefore, the Laplace transform of our equation is:
9
Now we can solve for .
A lot of work, so errors are likely. Let’s check our answer with Matlab.
syms s t Y
f=exp(2*t)*sin(3*t);
F=laplace(f);
y0=1;
yp0=-1;
Y1=s*Y-y0;
Y2=s*Y1-yp0;
sol=solve(Y2-2*Y==F,Y);
sol=simplifyFraction(sol)
sol =
Perfect! 🙂
Example #5:
Write the following initial value problem in algebraic form, then solve for .
Solution: We’ll first find the Lapalce transform of the left side, using our initial conditions and .
Now we take the Laplace transform of the right side. First, by property #4 in our table, we have:
10
Therefore, by property #7 in our table,
so we need to differentiate .
We can check our differentiation with Matlab.
syms s
F=s/(s^2+9);
Fp=diff(F,s);
Fp=simplifyFraction(Fp)
Fp =
Same answer! Therefore, the Laplace transform of our right side is:
Now, we can set up an algebraic equation for our initial value problem with these results and solve for .
11
Wow! A lot of steps, so a mistake is likely. Let’s check our answer with Matlab. Recall that the initial value
problem is:
syms s t Y
f=t*cos(3*t);
F=laplace(f);
y0=1;
yp0=0;
Y1=s*Y-y0;
Y2=s*Y1-yp0;
sol=solve(Y2-2*Y1+Y==F,Y);
sol=simplifyFraction(sol)
sol =
Same answer! We’re done. 🙂
12
Please Solve The Problems I Will Attach With Details