The Laplace transform of a function defined on is defined as the improper integral, an integral transform of a function to a function of a complex variable .

The inverse Laplace transform reverses this process. The domain and range of are in the set of real numbers, while the domain and range of is in the complex plane (sometimes called the -domain, -plane, frequency domain), where has units of hertz, hence the frequency domain.

The real part of is only defined for , where is the exponential class bounding growth rate. What this means is that any function is only defined for values of that satisfy this property. Otherwise it’s undefined.

This means we can link with the CTFT of a signal. However, if the region of definition of the Laplace transform is purely real (i.e., it doesn’t include the imaginary axis), we cannot obtain the CTFT from the Laplace transform (and the CTFT may not even exist).

Applications

We can use the Laplace transform to compute the output response of a causal LTI CT system with a right-sided input. This is used especially in circuit analysis.

Laplace transforms can be used to solve systems of ODEs, which show up often in linear circuits. In particular, phasor analysis is sometimes insufficient because it only deals with sinusoidal steady state signals. The Laplace transform is not restricted to signals of this type.

Many Laplace transforms in circuit analysis are rational functions. For linear circuits, they’re always rational, where the degree of the denominator is greater than that of the numerator. The poles and zeroes are the critical frequencies of . always has an equal number of poles and zeroes (this may include ). The Laplace domain in circuit analysis is also called the frequency domain.

Properties

The Laplace transform is a linear transform:

One of the most important properties is that differential equations (with constant coefficients) in terms of can become algebraic equations in terms of via the Laplace transform. For example:

The change of scale theorem is:1

Table of transforms

The basic transforms are as followed. They can be derived with integration by parts.

The below also works for , provided :

The transforms of trigonometric functions can be derived with IBP or an equally valid approach using complex analysis. See this page.

Special cases

The first and second translation theorems.

For functions multiplied by . This is especially useful for ODEs.

For the convolution of two functions:

For the integral of a function (i.e., we divide by in the -domain):

For a periodic function where , when we can integrate over one period:

For the Dirac delta function:

Definition

We must assume . The integral converges to a specific value in is is piecewise continuous (it has a finite number of discontinuities over any finite interval), and if is of exponential order, where there exist two constants such that

Note the above transforms for and : this means the transforms aren’t defined for some values in . The Laplace transform has a uniqueness property (except for points where either function aren’t defined):

In terms of units (especially when dealing with circuits), we have unit seconds (). This is all fully consistent. As above, is in units of Hertz.

Limit properties

The initial value property states:

and is valid if the limits exist and is a proper rational function (or equivalently continuous at 0).

The final value property states:

which is valid when the poles of are in the left half-plane.

Computer-aided

Through the Symbolic Math Toolbox, MATLAB can compute the Laplace transforms of symbolic functions. By default, the output is in terms of s and the independent variable is or .

syms t, a, s;
f = exp(-a * t);
F = laplace(f, t, s) % function, independent variable, transform variable

For the Dirac delta function and the Heaviside function, we can:

syms t, s;
syms a positive; % only positive a
F_1 = laplace(dirac(t-a),t,s)
F_2 = laplace(heaviside(t-a),t,s)

Footnotes

  1. Derivation here. We essentially assume and .