- categories: Linear algebra, Matrix
Definition
A circulant matrix is a square matrix where each row is a cyclic permutation of the previous row. For a vector , the circulant matrix is defined as:
Intuition
Circulant matrices are structured matrices where the entries in each row “rotate” from the previous row. They are heavily used in signal processing and computational mathematics due to their symmetry and efficient computational properties.
Key Properties
-
Toeplitz-Like Structure:
A circulant matrix is a special case of a Toeplitz Matrix, where entries are constant along diagonals and cyclically wrap around. -
Diagonalizability:
Every circulant matrix is diagonalizable using the Discrete Fourier transform (DFT). Specifically:where is the Fourier Matrix, is its conjugate transpose, and is a diagonal matrix of eigenvalues.
-
Eigenvalues:
The eigenvalues of a circulant matrix are given by:where is the th root of unity.
-
Matrix Multiplication Efficiency:
Multiplication with a circulant matrix can be computed in time using the Fast Fourier Transform (FFT). -
Matrix Inversion:
If a circulant matrix is invertible, its inverse is also circulant.
Applications
-
Signal processing:
Efficient implementation of linear convolution using the FFT. -
Numerical Linear Algebra:
Used in preconditioning and solving structured linear systems. -
Graph Theory:
Represent adjacency matrices of certain structured graphs. -
Image Processing:
Convolution operations in 2D images are efficiently modeled using circulant matrices.