Matrix Inverse Using Minors, Cofactors, and Adjugate — Definition, Formula & Examples
Matrix inverse using minors, cofactors, and adjugate is a method that computes the inverse of a square matrix by finding the minor of each entry, applying a checkerboard of signs to get cofactors, transposing the cofactor matrix to form the adjugate, and dividing by the determinant.
For an invertible matrix with , the inverse is given by , where is the transpose of the cofactor matrix whose -entry is , and is the minor obtained by deleting row and column from .
Key Formula
Where:
- = The original invertible square matrix
- = The cofactor matrix, with entries C_{ij} = (-1)^{i+j} M_{ij}
- = Transpose of the cofactor matrix, also called the adjugate adj(A)
- = Determinant of A (must be nonzero)
- = Minor: determinant of the submatrix after deleting row i and column j
How It Works
First, compute the minor for every entry by taking the determinant of the submatrix formed when you delete that entry's row and column. Next, build the cofactor matrix by multiplying each minor by , which flips the sign in a checkerboard pattern starting with in the top-left. Then transpose the cofactor matrix — swap rows and columns — to get the adjugate. Finally, compute ; if it is nonzero, divide every entry of the adjugate by to obtain .
Worked Example
Problem: Find the inverse of the matrix A = [[1, 2, 0], [0, 1, 1], [1, 0, 1]].
Determinant: Expand along the first row to find det(A).
Cofactor Matrix: Compute each cofactor C_{ij} = (-1)^{i+j} M_{ij}. The nine cofactors are:
Adjugate (transpose of C): Transpose the cofactor matrix to get adj(A).
Divide by determinant: Divide every entry by det(A) = 3.
Answer: A⁻¹ = (1/3) [[1, −2, 2], [1, 1, −1], [−1, 2, 1]]
Why It Matters
This method appears throughout linear algebra courses and is the standard way to derive Cramer's Rule. In engineering and physics, the adjugate formula gives a closed-form expression for the inverse, which is essential when working with symbolic matrices or proving theoretical results about determinants.
Common Mistakes
Mistake: Forgetting to transpose the cofactor matrix before dividing by the determinant.
Correction: The adjugate is the transpose of the cofactor matrix, not the cofactor matrix itself. Skipping the transpose swaps off-diagonal entries and produces a wrong result.
