Preface
This tutorial was made solely for the purpose of education and it was designed for students taking Applied Math 0330. It is primarily for students who have very little experience or have never used Mathematica before and would like to learn more of the basics for this computer algebra system. As a friendly reminder, don't forget to clear variables in use and/or the kernel.
Finally, the commands in this tutorial are all written in bold black font, while Mathematica output is in normal font. This means that you can copy and paste all commands into Mathematica, change the parameters and run them. You, as the user, are free to use the scripts for your needs to learn the Mathematica program, and have the right to distribute this tutorial and refer to this tutorial as long as this tutorial is accredited appropriately.
Return to computing page for the second course APMA0340
Return to Mathematica tutorial for the second course APMA0340
Return to Mathematica tutorial for the first course APMA0330
Return to the main page for the course APMA0330
Return to the main page for the course APMA0340
Return to Part VI of the course APMA0330
Introduction to Laplace transform
Let f be an arbitrary (complex-valued or real-valued) function defined on the semi-infinite interval \( [0, \infty ) ; \) then the integral
Theorem: If a function f is absolutely integrable over any finite interval from \( [0, \infty ) ; \) and the Laplace integral \( \int_0^{\infty} f(t)\,e^{-\lambda t} \,{\text d} t \) converges for some complex number \( \lambda = s , \) then it converges in the half-plane \( \mbox{Re}\,\lambda > \mbox{Re}\, s , \) i.e., in \( \left\{ \lambda \in \mathbb{C} \, : \, \Re\,\lambda > \Re\, s \right\} . \)
Theorem: The Laplace transform is a linear operator.
Definition: A function f is said to be piecewise continuous or intermittent on a finite interval [a,b] if the interval can be divided into finitely many subintervals so that f(t) is continuous on each subinterval and approaches a finite limit at the end points of each subinterval from the interior.
Definition: The Heaviside function H(t) is the unit step function:
Definition: A function \( f(t), \ t \in [0, \infty ) \) is said to be a function-original if it has a finite number of points of discontinuity (finite jumps) on every finite subinterval of \( [0, \infty ) \) and it grows not faster than an exponential, that is
Definition: We say that a function f is of exponential order if for some constants c, M, and T the inequality \( | f(t) | \le M\, e^{ct} \) holds. WE abbreviate this as \( f = O\left( e^{ct} \right) \) or \( f \in O\left( e^{ct} \right) . \) A function f is said to be of exponential order α, or eo(α) for abbreviation, if \( f = O\left( e^{ct} \right) \) for any real number c > α, but not when c < α. ■
Theorem: The Laplace transform exists for a function of exponential order.
Theorem: The Laplace transform establishes a one-to-one correspondence between functions-originals and their images. ■
Although Mathematica has a built-in function HeavisideTheta (which is 1 for t > 0 and 0 for t < 0), it is convenient to define the Heaviside function directly:
HVS[t_] := Piecewise[{{1, t>0}, {1/2, t==0}, {0, True}}]
UnitStep[0] = 1/2;
Protect{UnitStep]
Examples
Example. The Laplace transform of the unit function and the Heaviside function is the same and equals
Example. We find the Laplace transform of the power function:
Example. The Laplace transform of the exponential function is
Example. To find the Laplace transform of the trigonometric functions, we recall that they are real and imaginary parts of pure imaginary exponential functions:
LaplaceTransform[HeavisideTheta[t - 1] t, t, lambda]
LaplaceTransform[DiracDelta[t], t, lambda]
LaplaceTransform[f''[t], t, lambda]
Return to Mathematica page
Return to the main page (APMA0330)
Return to the Part 1 (Plotting)
Return to the Part 2 (First Order ODEs)
Return to the Part 3 (Numerical Methods)
Return to the Part 4 (Second and Higher Order ODEs)
Return to the Part 5 (Series and Recurrences)
Return to the Part 6 (Laplace Transform)
Return to the Part 7 (Boundary Value Problems)