4.119 min read
Non-Singular Matrices and Unique Inverses
An invertible square matrix is also called non-singular. A non-invertible square matrix is singular. The inverse satisfies .
The inverse is unique: if is a left inverse and is a right inverse of , then (and so the two-sided inverse is unique). Proof: .
Key inverse properties: , (note order reversal), .
Formal View
Theorem 4.11 — Uniqueness and Properties of Inverse
If is invertible, its inverse is unique and satisfies: \begin{enumerate} \item \item for invertible \item \end{enumerate}
Why This Matters
Knowing inverse properties lets us manipulate matrix equations like scalar equations.
- Solving : (but computing explicitly is expensive — use LU instead)
- is the "reverse-order law," critical in signal processing and control
- The formula (Moore-Penrose pseudoinverse) appears in least squares
Quiz
Question 1
If and are invertible, equals:
Common Mistakes
- Writing — the correct order reverses: .
- Computing explicitly when solving — it's better to use LU decomposition.