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

  1. Uniqueness:

    • If is invertible, its inverse is unique.
  2. Inversion of a Product:

    where and are invertible.

  3. Inversion of a Transpose:

  4. Inversion of a Scalar Multiple:

  5. Invertibility and Determinants:

  6. 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

  1. Analytical Formula (2x2 Matrix):
    For :

  2. Gaussian Elimination:

    • Augment with : .
    • Apply row reduction to transform .
  3. Lower–Upper Factorization (LU):

    • Use (if is invertible and exists), then solve via:
      • (forward substitution),
      • (backward substitution).
  4. Adjugate Method:

    where is the adjugate (transpose of cofactor matrix).

  5. Numerical Methods:

    • Iterative methods (e.g., Newton’s method) are used for large matrices.

Applications

  1. Solving Linear Systems:

    • is solved as if is precomputed.
  2. Control Theory:

    • Matrix inverses are crucial in state-space models and transfer functions.
  3. Statistical Models:

    • Used in covariance matrix computations and generalized least squares.
  4. Signal Processing:

    • Inverse filtering relies on matrix inversions to restore original signals.

Examples

  1. For :

  2. For , use Gaussian elimination to compute .