Matrix Inverses
1. The Inverse of a Matrix ()
In regular math, the inverse of is , because . Matrices have a similar concept!
Definition
Let be a square matrix. If we can find another matrix of the same size such that:
Then is said to be invertible (or non-singular). The matrix is called the inverse of , and we write it as .
Theorem of Uniqueness
If a square matrix is invertible, it has exactly one unique inverse.
2. Properties of Matrix Inverses
If and are invertible matrices of the same size, and is a non-zero scalar, then:
Double Inverse
The inverse of an inverse is the original matrix.
Scalar Inverse
Watch out! Earlier we learned that a transpose does not flip a scalar: . But an inverse does flip the scalar!
Product Inverse (The "Socks and Shoes" Rule)
Notice the order flips in reverse! Just like putting on socks then shoes , to reverse the process, you must take off your shoes first, then your socks .
3. Finding the Inverse of a 2x2 Matrix
There is a quick formula to find the inverse of a matrix without doing Gauss-Jordan elimination!
Let .
First, calculate the value: . (This is called the determinant).
The Rule
A matrix is invertible if and only if . If it equals zero, stop—the matrix has no inverse!
The Formula
If , you can find the inverse using this formula:
(Swap the items on the main diagonal, and multiply the other two items by -1).
4. Solving Matrix Algebra Equations
When doing algebra with matrices, you must remember two golden rules:
- You cannot divide by a matrix. Instead, you multiply by its inverse.
- Order matters. If you multiply the left side of an equation by on the left, you must multiply the right side of the equation by on the left.
Exercise 1: Solve for in the equation
Step 1: Get rid of the transpose by transposing both sides (since ).
Step 2: Add the identity matrix to both sides.
5. Elementary Matrices and the Invertible Matrix Theorem
Elementary Matrix Definition
An elementary matrix () is a matrix obtained by performing a SINGLE elementary row operation on the identity matrix.
Elementary Matrix Theorem
Let be an elementary matrix obtained by performing a specific row operation on . If we take any matrix and multiply it on the left (), the resulting matrix is the exact same as if we had performed that row operation directly on .
Theorem: Elementary matrices are always invertible, and their inverses are also elementary matrices!
Row Equivalence
Two matrices and are said to be row equivalent if you can transform one into the other by performing a sequence of elementary row operations.
The Invertible Matrix Theorem
Let be a square matrix. The following statements are mathematically equivalent (if one is true, they are all true!):
- is invertible.
- The equation has only the trivial solution (all zeros).
- The reduced row echelon form (RREF) of is the identity matrix.
- can be expressed as a product of elementary matrices.
6. Algorithm for Finding (Inversion Algorithm)
For matrices larger than , we don't have a simple formula. Instead, we use Gauss-Jordan elimination on a super-sized augmented matrix.
The Algorithm
- Set up an augmented matrix with your matrix on the left, and the Identity matrix on the right:
-
Perform elementary row operations to reduce the left side () into the Identity matrix.
-
Whatever operations you perform on the left, you must simultaneously perform on the right side.
-
When the left side becomes , the right side will have transformed into your inverse matrix, :