Let f be an arbitrary (complex-valued or real-valued) function defined on the semi-infinite interval
[0,∞); then the integral
fL(λ)=(Lf)(λ)=∫∞0f(t)e−λtdt
is said to be the Laplace transform of f provided that the above integral converges for some value
λ=s of a parameter λ. Therefore, the Laplace transform of a function
(if it exists) depends on a parameter λ, which could be either a real number or a complex number. Saying that
a function f(t) has a Laplace transform fL means that for some λ = s, the limit
fL(λ)=limN→∞∫N0f(t)e−λtdt
exists. From definition of integral, it follows that the Laplace transform
does not depend on the values of an integrated function at a discrete number
of points. Therefore, the Laplace transform can map different functions into
the same output. Since application of the Laplace transformation to
differential equations requires also the inverse Laplace transform, we need a
class of functions that is in bijection relation with its Laplace transforms.
The integral that defines the Laplace transform does not have to
converge. For example, neither L[1/t] nor
L[et2] exist.
There are known some sufficient conditions
guaranteeing the existence of L[f(t)].
Theorem 1:
If a function f is absolutely integrable over any finite interval from
[0,∞); and the Laplace integral ∫∞0f(t)e−λtdt
converges for some complex number
λ=s, then it converges in the
half-plane Reλ>Res,
i.e., in {λ∈C:ℜλ>ℜs}.
Definition:
The smallest real number σ∈ℝ for which the integral ∫∞0f(t)e−σtdt
converges is called the abscissa of convergence of the function f.
We plot the abscissa of convergence and the domain where the Laplace transformation converges.
Abscissa of convergence and the domain of convergence for a Laplace transformation.
Mathematica code
Theorem 2: The Laplace transform is a linear operator.
In most applications t is the time and the domain of the real variable
t is the time domain. But the product λt in
e−λt is necessarily a pure number. One way to see this is by expanding the exponential function into the Taylor series
e−λt=1−λt+12!(λt)2−13!(λt)3+⋯.
If λt had any units, such as millimeters or seconds, the terms in the series would all have different units and summation would make no sense. Since λt is a pure number, λ must have the units of 1/t. Hence, the product λt represents a dimensionless number (such as cycles) and λ has the units of frequency. It is often advantageous to let λ be complex, and consider it as the complex frequency. Then the set of values of λ is referred to as the frequency domain.
Definition: A function f is said to be piecewise continuous or intermittent on a finite interval [𝑎,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.
A function f(t), defined on semi-infinite interval [0, ∞), is piecewise continuous if this interval can be broken into finite number of pieces
[0,∞)=[0,b1)∪(a2,b2)∪⋯∪(am,∞),
so that the function f(t) is continuous on each of them and has finite limit values at the endpoints. A piecewise continuous function can be defined as
f(t)={f1(t),0<t<b1,f2(t),a2<t<b2,⋮fm(t),am<t<∞,
where each function fk(t), k = 1, 2, … , m, is continuous on the interval (𝑎k, bk) and has finite limit values at 𝑎k and
bk.
We do not specify the values of the function f(t) at endpoints
(𝑎k, bk) because we are going to apply the Laplace transformation to such intermittent functions; recall that the integral is not sensitive to the values of the function at finite number of points. So whatever the function has values at the points of discontinuities, its Laplace transform does not depend on these values.
Definition: The
Heaviside functionH(t) is the unit step function:
H(t)={1,t>0,1/2,t=0,0,t<0.
The unit step function u(t) is assumed to be zero at t = 0.
Definition:
A function f(t),t∈[0,∞) 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,∞) and it grows not faster than an exponential, that is
|f(t)|≤Mectfort>T,
with some constants c, M, and T. Moreover, we assume that at points of discontinuity the
values of a function-original are equal to the corresponding mean values:
The Laplace transform of such a function is called the image.
In practical applications, the mean value property (4) is not essential---it is used mostly in theoretical analysis. We usually do not pay attention to values of the function-original at the points of discontinuity (if any). However, be aware that the inverse Laplace transformation (as well as Fourier) restores the function with the mean value property. Therefore, the inverse Laplace transform automatically defines a function that has the property (4).
Example 1:
Consider a function f(t)=t−1/2H(t) that has infinite discontinuity at t = 0. Hence, this function is not piecewise continuous on [0, ∞). However, its Laplace transform exists and equals
fL(λ)=∫∞0t−1/2e−λtdt=2∫∞0e−λu2du=√πλ−1/2.
This example shows that the Laplace transform exists for a wider class of functions than functions-original.
Assuming[ s > 0, Integrate[ t^(-1/2)*Exp[-s*t], {t, 0, Infinity}]]
Sqrt[\[Pi]]/Sqrt[s]
■
Definition:
We say that a function f is of exponential order if the inequality |f(t)|≤Mect holds for some constants
c, M, and T. We abbreviate this as
f=O(ect) or
f∈O(ect).
A function f is said to be of exponential order α, or
eo(α) for abbreviation, if
f=O(ect) for any real number c > α, but not when
c < α.
Theorem 3: The Laplace transform exists for a function of exponential order, and tends to zero at infinite point.
Theorem 4: The Laplace transform establishes a one-to-one correspondence between
functions-originals and their images. ⧫
Examples
Example 2:
The Laplace transforms of the unit function and the Heaviside function are the same and equal to
L[1]=L[H(t)]=∫∞0e−λtdt=1λ.
Note that the Laplace transform (2.1) does not depend on the value of the Heaviside function at t = 0.
■
Example 3:
We find the Laplace transform of the power function:
Let us consider a particular case when p = -½. In this case, substitution λt = x² gives
LaplaceTransform[t^(-1/2), t, s]
Sqrt[\[Pi]]/Sqrt[s]
L[t−1/2]=∫∞0t−1/2e−λtdt=2√λ∫∞0e−x2dx=√πλ
because λdt=2xdx. With a similar substitution, we obtain
LaplaceTransform[t^(1/2), t, s]
Sqrt[\[Pi]]/(2 s^(3/2))
L[t1/2]=∫∞0t1/2e−λtdt=2λ√λ∫∞0x2e−x2dx=12λ√πλ.
Note that the Laplace transform of the power function tp (t ≥ 0) exists only when p > -1. Otherwise, the Laplace transform does not exist because the corresponding integral diverges.
■
Example 4:
The Laplace transform of the exponential function is
L[eat]=∫∞0eate−λtdt=1λ−a.
Mathematica confirms:
LaplaceTransform[Exp[I*a*t], t, lambda]
1/(-I a + lambda)
Its abscissa of convergence is λ = Re𝑎.
■
Example 5:
To find the
Laplace transform of the trigonometric functions, we recall that they are
real and
imaginary parts of pure imaginary exponential functions (known as Euler's formula):
sin(at)=ℑejatandcos(at)=ℜejat,
where j is the unit vector in positive vertical direction on the complex plane, so j2 = -1. As usual, ℑ = Im is the imaginary part of a complex number; correspondingly, ℜ = Re is the real part of a complex number. So ℑ(𝑎 + jb) = b and ℜ(𝑎 + jb) = 𝑎.
Let us take 𝑎 in Eq.(4.1) to be pure imaginary, so 𝑎 ↦ j𝑎. Then
Here ℜ denotes the real part of a complex number, so ℜ(𝑎 + jb) = 𝑎, and ℑ is the imaginary part, so ℑ(𝑎 + jb) = b. The abscissa of convergence for these trigonometric functions is zero. Note that tangent function does not have a Laplace transform because the corresponding integral (1) diverges.
■
Finally, we present some examples of Maxima codes involving the Laplace transform.
Example 6:
We present some examples to show how Mathematica can be helpful in dealing with Laplace transformation and its applications. We start with t4sin(𝑎t):
L[t4sin(at)]=24a(a4−10a2λ2+5λ4)(a2+λ2)5.
LaplaceTransform[t^4 Sin[a*t], t, s]
(24 a (a^4 - 10 a^2 s^2 + 5 s^4))/(a^2 + s^2)^5
Mathematica is able to find the Laplace transform of the divative:
LaplaceTransform[f''[t], {t,s}]
For the delayed cosine function, cos(t)H(t−π), we have