- categories: Linear algebra, Operation
Definition
The inverse of a square matrix is a matrix such that:
where is the identity matrix of size .
A matrix is invertible (or nonsingular) if and only if it is square and its Determinant is nonzero, i.e., .
Intuition
Matrix inversion generalizes division for matrices. If represents a linear transformation, reverses that transformation.
Key Properties
-
Uniqueness:
- If is invertible, its inverse is unique.
-
Inversion of a Product:
where and are invertible. -
Inversion of a Transpose:
-
Inversion of a Scalar Multiple:
-
Invertibility and Determinants:
-
Block Matrices:
Invertibility of block matrices follows specific conditions. For example, if and are invertible in:
the entire matrix can be inverted using Schur complements.
Methods to Compute
-
Analytical Formula (2x2 Matrix):
For :
-
Gaussian Elimination:
- Augment with : .
- Apply row reduction to transform .
-
Lower–Upper Factorization (LU):
- Use (if is invertible and exists), then solve via:
- (forward substitution),
- (backward substitution).
- Use (if is invertible and exists), then solve via:
-
Adjugate Method:
where is the adjugate (transpose of cofactor matrix). -
Numerical Methods:
- Iterative methods (e.g., Newton’s method) are used for large matrices.
Applications
-
Solving Linear Systems:
- is solved as if is precomputed.
-
Control Theory:
- Matrix inverses are crucial in state-space models and transfer functions.
-
Statistical Models:
- Used in covariance matrix computations and generalized least squares.
-
Signal Processing:
- Inverse filtering relies on matrix inversions to restore original signals.
Examples
-
For :
-
For , use Gaussian elimination to compute .