The Fourier transform is great for analyzing steady-state behavior (what happens when sinusoids are applied at all frequencies). But it has a weakness: signals must decay enough that their integrals converge. Many signals (a step, an unstable response, a growing exponential) do not.
The Laplace transform generalizes the Fourier transform by replacing with a complex variable :
(Note the integration starts at 0, not ; this is the one-sided Laplace transform, used for analyzing causal systems with initial conditions.)
When , the factor inside (because ) helps the integral converge for many more signals. The price: the result is a function of complex . The benefit: you can now analyze step inputs, exponential transients, and unstable responses, none of which Fourier handles cleanly.
5.1 Why we use it
The Laplace transform is the right tool for two related tasks:
- Solving differential equations with initial conditions. Time-domain differential equations become algebraic equations in the s-domain. Solve algebraically, then invert.
- Analyzing circuit transients where Fourier alone wouldn't converge.
In the Laplace domain, every circuit element gets an s-impedance:
- Resistor: (same as before).
- Inductor: .
- Capacitor: .
Where do these come from? Take the inductor relation , and Laplace-transform both sides using the differentiation property (). With zero initial current, . So in the s-domain, the inductor looks like a "resistor" of value . The capacitor is dual: , and zero-initial-condition Laplace gives , so the capacitor's s-impedance is .
You can then apply all of network analysis (KVL, KCL, Thevenin, etc.) in the s-domain, treating and like any other "resistance." The result is a transfer function that captures everything about the circuit's frequency and transient response. Setting gives the steady-state frequency response.
5.2 Standard Laplace transforms
| Time signal | Laplace |
|---|---|
| (step) | |
| (ramp) | |
Useful properties (mostly mirrored from Fourier with the playing the role of ):
- Linearity: .
- Time shift (causal): .
- s-shift: .
- Differentiation: .
- Integration: .
- Final value theorem: (when the limit exists).
- Initial value theorem: .
5.3 Inverse Laplace via partial fractions
To get back to the time domain from , decompose into partial fractions and look up each piece. Example:
Inverse: .
For repeated or complex poles, the partial fractions are slightly more involved, but the principle is the same: decompose into pieces whose inverse transforms are in the table, then add them up.
5.4 Poles and stability: the s-plane
A system's transfer function is a ratio of polynomials in . The roots of the denominator are the poles; the roots of the numerator are the zeros. Their location in the complex s-plane tells you everything about the system's transient behavior.
jω (imaginary axis)
│
× │ ×
(LHP) │ (RHP)
stable │ unstable
│
× │ ×
──────────┼────────── σ (real axis)
│
× │ ×
│
× │ ×
│Pole in left half plane (LHP, ): the corresponding term has a factor with negative , which decays. Stable.
Pole in right half plane (RHP, ): grows. Unstable.
Pole on the imaginary axis (): pure sinusoidal oscillation. Marginally stable.
Concretely:
- Real, negative pole at : exponential decay . Stable.
- Complex conjugate pair at (negative real part): damped oscillation . Stable. The real part sets how quickly the oscillation dies; the imaginary part sets the oscillation frequency.
- Pure imaginary pair at : undamped oscillation . Marginally stable.
- Right-half-plane pole (positive real part): growing exponential. Unstable.
So the stability criterion in the s-plane is all poles in the left half plane equals stable. Any pole on the imaginary axis or in the right half is trouble.
This will come back in spades when we get to control systems (Chapter 8), where we explicitly design feedback to place poles where we want them. It also comes back when we analyze oscillator design in Chapter 5; an oscillator is exactly a circuit you've nudged onto the imaginary axis on purpose, riding the line between stable and unstable.