Matrix Inverses
Chapter 2 • Section 2-4
"Looking for a way back? You need an inverse! đ"
âŠī¸ What is an Inverse?
The Definition
An $n \times n$ matrix $A$ is invertible if there exists a matrix $B$ such that:
Theorem: Uniqueness of Inverse
If $A$ has an inverse, it is unique.
Proof: Suppose $B$ and $C$ are both inverses of $A$. Then $AB = I$ and $CA = I$.
$B = IB = (CA)B = C(AB) = CI = C$. Thus $B = C$. $\blacksquare$
Warning
Not all square matrices have inverses. A matrix without an inverse is called singular or non-invertible.
Example: The zero matrix is singular.
The $2 \times 2$ Shortcut
For a $2 \times 2$ matrix $A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}$:
The Formula
The quantity $ad-bc$ is called the determinant ($\det A$).
If $\det A = 0$, the matrix is not invertible!
Visual Mnemonic
1. Swap Blue (Diagonal)
2. Negate Red (Off-diagonal)
3. Divide by Determinant
đ§Ž Quick Inverse Win $10
Find the inverse of $A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$. Note: $\det A = 4-6 = -2$.
The General Algorithm
For larger matrices ($3 \times 3$ and up), we use row reduction.
Augment the matrix with the Identity: $[A \mid I]$.
Row reduce until the left side becomes the Identity: $[I \mid A^{-1}]$.
If you can't get $I$ on the left, then $A$ is not invertible.
Concept Check
Problem
True or False: If $A^3 = 4I$, then $A$ is invertible.
True!
We need to find a matrix $B$ such that $AB = I$ and $BA = I$.
Given $A^3 = 4I$, we can rearrange it:
$A( \frac{1}{4} A^2 ) = I$ and $(\frac{1}{4} A^2) A = I$
Thus, $A$ is invertible and $A^{-1} = \frac{1}{4}A^2$.
Key Properties
Inverse of a Product
Inverse of Transpose
You can swap the order of inverse and transpose.
$A^T (A^{-1})^T = (A^{-1} A)^T = I^T = I$.
$(A^{-1})^T A^T = (A A^{-1})^T = I^T = I$. $\blacksquare$
đ§ Logic Check Win $20
If $A$ is invertible, what is $(A^{-1})^{-1}$?