The Laplace transform is an integral operator that converts a function of time into a function of a complex variable . Used to solve linear ODEs by turning differential equations into algebraic equations.
The kernel is a decaying exponential that “weights” the signal over time. As long as the integral converges (more on convergence below), is well-defined.
When you apply the transform, you move from the time domain (functions of ) to the frequency domain (functions of , also called the s-domain). The variable is generally complex, encoding both decay rate and oscillation frequency.
Why it solves ODEs
The core property: differentiation in time becomes multiplication by in the s-domain.
A linear ODE with constant coefficients, like , transforms into:
This is just an algebraic equation in . Solve for , then invert the transform to get :
The Laplace transform reduces the ODE to algebra plus a table lookup for the inverse transform. See Method of Laplace transform for the full procedure.
Linearity
The Laplace transform is a linear operator: for any constants and functions :
This is what lets you transform linear ODEs term by term.
Convergence
The integral doesn’t always converge. The strict definition is
For this limit to exist, we need conditions on . The standard sufficient condition: is piecewise continuous and of exponential order — see Properties of Laplace transform.
If grows too fast (faster than any exponential), no makes the integral converge — the Laplace transform doesn’t exist for such .
Common transforms
The most-used pairs:
| Region of convergence | ||
|---|---|---|
| () | ||
| (Heaviside step function) | ||
| (Dirac delta function) | all |
The variable is complex; the convergence condition is on its real part. Writing "" works when is real but is sloppy for the general case — convergence of depends on the decay rate of the kernel, not on itself. The imaginary part of contributes oscillation only and never affects whether the integral converges.
A larger table is in any DE textbook.
Example application
Compute :
This works for (otherwise the integral diverges). For , the Laplace transform of doesn’t exist.
Compute :
For . If , the exponential blows up and the integral diverges.
When to use Laplace
The Laplace transform shines for:
- IVPs — initial conditions are baked into the algebra naturally.
- Discontinuous forcing — handles step functions, impulses cleanly via Heaviside step function and Dirac delta function.
- Convolutions — products in the s-domain correspond to convolutions in time, and vice versa. See Convolution integral.
- Systems — multiple coupled ODEs become a system of algebraic equations.
- Transfer functions — input-output behavior of linear systems is encoded in . See Transfer function.
For the inverse direction, see Inverse Laplace transform. For the full solution procedure, see Method of Laplace transform.
Bilateral and complex frequency
The form above is the unilateral Laplace transform — appropriate for causal signals and IVPs. For signals defined on the whole real line, the bilateral form integrates from to and requires tracking the region of convergence.
The variable lives in the complex s-plane; the imaginary part is the frequency from the Fourier transform, and the real part is the damping factor that lets the transform converge for signals the Fourier integral can’t handle. Stable signals have defined on a strip containing the imaginary axis, where recovers the Fourier transform.
For inversion, partial fractions are the standard technique — see Partial fraction decomposition. For the transfer-function view of LTI systems, see Transfer function and Pole and zero.