Toeplitz Matrix — Definition, Formula & Examples
A Toeplitz matrix is a matrix where every descending diagonal from left to right contains the same value. This means each entry depends only on the difference between its row and column indices.
An matrix is a Toeplitz matrix if for all valid indices and . Equivalently, there exist constants such that .
Key Formula
Where:
- = Entry in row $i$, column $j$ of the matrix
- = Constant associated with the diagonal indexed by $i - j$
How It Works
To build a Toeplitz matrix, you only need values: one for each of the diagonals above the main diagonal, one for the main diagonal itself, and one for each of the diagonals below. Place the same constant along each diagonal that runs from upper-left to lower-right. Because of this structure, an Toeplitz matrix is fully determined by its first row and first column.
Worked Example
Problem: Construct a 4×4 Toeplitz matrix with first row [1, 3, 5, 7] and first column [1, 2, 4, 6].
Step 1: The first row gives the values on the main diagonal and the diagonals above it: , , , .
Step 2: The first column (below the top entry) gives the values on the diagonals below: , , .
Step 3: Fill in the matrix by placing at position .
Answer: Each descending diagonal contains a single repeated value, confirming is Toeplitz.
Why It Matters
Toeplitz matrices arise naturally in signal processing and time-series analysis because convolution and autocorrelation produce this diagonal-constant structure. Their special form allows matrix-vector multiplication in time using the Fast Fourier Transform, rather than the usual .
Common Mistakes
Mistake: Confusing a Toeplitz matrix with a symmetric matrix.
Correction: A Toeplitz matrix has constant diagonals but is not necessarily symmetric. It is symmetric only when for every .
