Integral Transforms and Related Operations
Laplace Transforms
One-dimensional Laplace transforms.
The Laplace transform of a function
f (t) is given by

. The inverse Laplace transform of
F (s) is given for suitable

by

.
Here is a simple Laplace transform.
| Out[1]= |  |
|
| Out[2]= |  |
|
Even simple transforms often involve special functions.
| Out[3]= |  |
|
Here the result involves a Meijer G function.
| Out[4]= |  |
|
| Out[6]= |  |
|
The Laplace transform of this Bessel function just involves elementary functions.
| Out[5]= |  |
|
Laplace transforms have the property that they turn integration and differentiation into essentially algebraic operations. They are therefore commonly used in studying systems governed by differential equations.
Integration becomes multiplication by 1/s when one does a Laplace transform.
| Out[6]= |  |
|
| LaplaceTransform[expr,{t1,t2,...},{s1,s2,...}] |
| the multidimensional Laplace transform of expr |
| InverseLaplaceTransform[expr,{s1,s2,...},{t1,t2,...}] |
| the multidimensional inverse Laplace transform of expr |
Multidimensional Laplace transforms.
Fourier Transforms
One-dimensional Fourier transforms.
| Out[1]= |  |
|
| Out[2]= |  |
|
In
Mathematica the Fourier transform of a function
f (t) is by default defined to be

. The inverse Fourier transform of
F (
) is similarly defined as

.
In different scientific and technical fields different conventions are often used for defining Fourier transforms. The option
FourierParameters in
Mathematica allows you to choose any of these conventions you want.
| common convention | setting | Fourier transform | inverse Fourier transform |
| Mathematica default | {0, 1} |  |  |
| pure mathematics | {1, -1} |  |  |
| classical physics | {-1, 1} |  |  |
| modern physics | {0, 1} |  |  |
| systems engineering | {1, -1} |  |  |
| signal processing | {0, -2Pi} |  |  |
| general case | {a, b} |  |  |
Typical settings for FourierParameters with various conventions.
Here is a Fourier transform with the default choice of parameters.
| Out[3]= |  |
|
Here is the same Fourier transform with the choice of parameters typically used in signal processing.
| Out[4]= |  |
|
Fourier sine and cosine transforms.
In some applications of Fourier transforms, it is convenient to avoid ever introducing complex exponentials. Fourier sine and cosine transforms correspond to integrating respectively with
sin (
t) and
cos (
t) instead of
exp (i
t), and using limits 0 and

rather than
-
and

.
Here are the Fourier sine and cosine transforms of e-t.
| Out[5]= |  |
|
FourierTransform[expr,{t1,t2,...},{ 1, 2,...}] |
| the multidimensional Fourier transform of expr |
InverseFourierTransform[expr,{ 1, 2,...},{t1,t2,...}] |
| the multidimensional inverse Fourier transform of expr |
FourierSinTransform[expr,{t1,t2,...},{ 1, 2,...}],
FourierCosTransform[expr,{t1,t2,...},{ 1, 2,...}] |
| the multidimensional sine and cosine Fourier transforms of expr |
InverseFourierSinTransform[expr,{ 1, 2,...},{t1,t2,...}],
InverseFourierCosTransform[expr,{ 1, 2,...},{t1,t2,...}] |
| the multidimensional inverse Fourier sine and cosine transforms of expr |
Multidimensional Fourier transforms.
This evaluates a two-dimensional Fourier transform.
| Out[6]= |  |
|
This inverts the transform.
| Out[7]= |  |
|
Z Transforms
Z transforms.
The Z transform of a function
f (n) is given by
f (n)z-n. The inverse Z transform of
F (z) is given by the contour integral

. Z transforms are effectively discrete analogs of Laplace transforms. They are widely used for solving difference equations, especially in digital signal processing and control theory. They can be thought of as producing generating functions, of the kind commonly used in combinatorics and number theory.
This computes the Z transform of 2-n.
| Out[1]= |  |
|
Here is the inverse Z transform.
| Out[2]= |  |
|
The generating function for 1/n! is an exponential function.
| Out[3]= |  |
|