To find the inverse of a 3x3 matrix with row operations, write the augmented matrix [A | I] and apply elementary row operations until the left block becomes the identity; the right block is then the inverse. Learn the three allowed row operations, the step-by-step method, and how to spot a singular matrix.
Finding the inverse of a 3x3 matrix with row operations
To find the inverse of a 3x3 matrix using row operations, you set the matrix beside the identity matrix and reduce. Write the augmented matrix [A | I], then apply elementary row operations until the left block becomes the identity matrix. Whatever the right block turns into is A⁻¹, the inverse.
Inverse of a 3x3 matrix: reduce [A | I] with row operations until it becomes [I | A⁻¹].
The three row operations you can use
Only three moves are allowed, and each keeps the system equivalent: swap two rows, multiply a row by a nonzero constant, or add a multiple of one row to another. This is the same toolkit used in Gaussian elimination.
Step by step
Build the augmented matrix [A | I] by placing the identity to the right of A.
Get a 1 in the top-left, then clear the rest of that column to zeros.
Repeat down the diagonal until the left block is the identity.
Read off the right block — it is A⁻¹.
When a matrix has no inverse
If a full row on the left becomes all zeros during reduction, the matrix is singular and has no inverse. This happens exactly when the determinant is 0. You can check your answer by confirming that A × A⁻¹ gives the identity, which relies on matrix multiplication.