Linear Algebra — Matrices
Solving systems — Cramer’s rule
continues from lesson 2 — values defined earlier in the course stay live here
The Algebra 1 system 2x + y = 8, x − y = 1 in matrix form is A·[x, y] = [8, 1]. Cramer's rule solves it with determinants alone: replace a column with the right-hand side, divide the dets:
= coefficient matrix
= must be nonzero — else no unique solution
= x: right side replaces column 1
= y: right side replaces column 2
✓ pass same (3, 2) Algebra 1 found by elimination
Same answer, zero algebra — and unlike elimination, this scales to systems with thousands of unknowns (with better algorithms than Cramer, but the same idea: systems are matrix equations).