The objects introduced above — minor, cofactor, cofactor matrix, adjugate — form a single construction chain, each built from the previous one and culminating in the inverse formula. The table below collects each link in the chain alongside its definition, its shape (number or matrix), and the role it plays in connecting one stage to the next.
| Object |
Definition |
Shape |
Role in the chain |
| Minor Mij |
determinant of the (n−1) × (n−1) submatrix left after deleting row i and column j |
a number |
unsigned building block |
| Cofactor Cij |
Cij = (−1)i+j Mij |
a number |
signed minor; coefficient in the Laplace expansion |
| Laplace expansion |
det(A) = Σj aij Cij (any fixed row i) = Σi aij Cij (any fixed column j) |
a number |
how cofactors compute det(A) |
| Cofactor matrix cof(A) |
matrix whose (i, j) entry is Cij |
n × n matrix |
collects every cofactor in one matrix |
| Adjugate adj(A) |
adj(A) = cof(A)T |
n × n matrix |
satisfies A · adj(A) = det(A) · I |
| Inverse formula |
A−1 = adj(A) / det(A) |
n × n matrix |
valid when det(A) ≠ 0; end of the chain |