Inverse of a Matrix
The "opposite" of a matrix or transformation, (inverse of ) has the property that applying , then gives the identity transformation. So, . Notes:
- . is the inverse of , and is the inverse of .
- Non-invertible matrices are called singular. Invertible ones are called non-singular.
- Inverses are unique.
- The following properties are true for invertible matrices and :
Computing the Inverse of a Matrix
Lemma 1. A square matrix is invertible if and only if it can be transformed by elementary row operations to row-reduced form with all diagonal entries nonzero.
Lemma 2. Any row-reduced square matrix with all diagonal elements nonzero can be transformed to the identity matrix with elementary row operations.
By these lemmas, we can write so . So, we can compute the inverse of matrix by applying the elementary row operations to the identity matrix! So, to compute , apply the same row operations to the identity matrix as you applied to in order to transform it to the identity. One way of finding the inverse of an matrix is as follows:
- Form the matrix .
- Row-reduce the matrix to .
- The matrix is the matrix on the right side of the augmented matrix.
Ex. It's good practice to verify results, so you should multiply the inverse by the original matrix to check that the result is the identity matrix.
As a side note, for matrices, we can find the determinant directly with the formula:
Invertible Matrix Theorem
For any matrix , the following are equivalent:
- is invertible.
- is row equivalent to .
- has pivot positions.
- The equation has only the trivial solution.
- The columns of are linearly independent.
- The equation has at least one solution for each in .
- The columns of span .
- The equation has exactly one solution for each in .
- The determinant of is nonzero.
- The transpose of is invertible.
You don't need to memorize each one of these, but do take the time to understand why they are true — this will help you remember them.