The Z-transform is to discrete-time what Laplace is to continuous-time. Same job, different domain.
6.1 Definition
The variable is a complex number. You can think of as the discrete-time analog of the Laplace , with the relationship that comes from sampling a continuous-time signal: a Laplace exponential evaluated at gives .
That mapping has a beautiful consequence: the imaginary axis in the s-plane (where , the home of all sinusoids) maps to the unit circle in the z-plane, . The frequency response of a discrete-time system is what you get by evaluating on the unit circle. The left half of the s-plane (stable region) maps to the inside of the unit circle (stable region for discrete-time).
6.2 Standard Z-transforms
| Sequence | Z-transform | Region of convergence |
|---|---|---|
| All | ||
| $ | ||
| $ | ||
| $ | ||
| $ |
Two different time signals (the third and fourth rows) have the same algebraic form but different regions of convergence. So the Z-transform is incomplete without specifying the ROC.
6.3 Properties
Just like Laplace and Fourier:
- Linearity (sums and scalings).
- Time shift: . Each one-sample delay multiplies the Z-transform by . So is the algebraic embodiment of "delay by one sample."
- Convolution becomes multiplication: .
- Differentiation in : .
6.4 Stability in the z-plane
For a discrete-time LTI system described by transfer function :
- All poles inside the unit circle (): stable.
- Poles on the unit circle: marginally stable.
- Any pole outside the unit circle: unstable.
This is the discrete-time analog of "left half plane equals stable" for continuous-time, derived directly from the mapping.
6.5 Why Z-transform matters
When you implement a digital filter in software or in an FPGA, the difference equation looks like:
Take the Z-transform of both sides (each shift becomes ), get an algebraic equation, and solve for :
Now tells you everything: stability (pole locations), frequency response (evaluate on the unit circle, ), transient response. We will use the Z-transform extensively in Chapter 17 (DSP) when we design FIR and IIR digital filters.