1. Solve a 2×2 system with small integer coefficients
Problem
Write the coefficient matrix A and compute its determinant using the 2×2 formula .
Replace the first column of A with the constants to form , then compute its determinant.
Replace the second column of A with the constants to form , then compute this determinant.
Apply Cramer's Rule: divide each new determinant by to find both variables.
Answer:
Cramer's Rule gives us each variable directly from a determinant ratio, without substitution or elimination. This method is clean and systematic for small systems.