Chapter 1
Applications of Matrices and Determinants
Inverse of a matrix, elementary transformations, and solving systems of linear equations.
1. Minors, cofactors and the adjoint
To invert a matrix we first need two building blocks. The minor of an entry is the determinant of the smaller matrix left after deleting row and column . The cofactor attaches a checkerboard sign to that minor.
The cofactor of entry is . The adjoint (adjugate) of is the transpose of the matrix of cofactors: .
The signs follow this checkerboard pattern — start with at the top-left corner:
2. Inverse of a non-singular matrix
A square matrix is called non-singular when its determinant is non-zero. Exactly these matrices can be inverted, and the adjoint gives an explicit formula.
If , then is invertible and , satisfying .
3. Determinant & adjoint identities
These identities appear constantly in objective questions — knowing them saves you from computing full matrices.
- for an matrix
- (order reverses)
- for an matrix
4. Elementary transformations & Gauss–Jordan
Row operations — swapping two rows, scaling a row, or adding a multiple of one row to another — do not change the solution set of a system. Applying them to until the left block becomes turns the right block into . This is the Gauss–Jordan method, and it is often faster than the adjoint for matrices.
5. Solving systems: the matrix-inversion method
A linear system can be packaged as a single matrix equation. If the coefficient matrix is non-singular, one multiplication solves the whole system at once.
6. Cramer's rule
When you only need the values (not itself), Cramer's rule expresses each unknown directly as a ratio of determinants.
where is with its -th column replaced by the column .
7. Rank and echelon form
The rank is the number of non-zero rows once the matrix is reduced to row-echelon form (each leading entry sits to the right of the one above it). Equivalently, it is the order of the largest non-vanishing minor.
- if has at least one non-zero entry.
- For an matrix, .
- A square matrix of order is invertible if and only if .
8. Consistency of a system by rank
Not every system has a solution. Compare the rank of with that of the augmented matrix to decide how many solutions exist. This is the Rouché–Capelli test.
- → a unique solution
- → infinitely many solutions
- → no solution (inconsistent)
9. Homogeneous systems
A system (all right-hand sides zero) always has . The interesting question is whether it has any other solutions.
10. Common exam pitfalls
- Is before you write ? A singular matrix has no inverse.
- Did you divide the adjoint by (not multiply)?
- For systems: did you compare with before counting solutions?
- Verify with or by substituting the solution back — it takes 30 seconds and catches sign errors.