Many Equations, One Verdict
A system of linear equations is business modeling's native language, written compactly as . Three fates govern every system, compared by the rank of , the augmented matrix , and unknowns .
| Comparison | Verdict | Geometry |
|---|---|---|
| Unique solution | Planes meet at one point | |
| Infinitely many | Overlapping equations | |
| No solution | Parallel contradiction |
Common pitfall: A zero row like means redundancy (infinite solutions), while where means no solution.
Solving Methods
Gaussian elimination uses row operations (swapping, scaling, adding rows) to transform the matrix into triangular shape, then back-substitutes from the bottom up. Row operations preserve the exact solution set.
Cramer's rule solves square systems when via the formula:
Here, is with column replaced by . It shines for and systems, but Gaussian elimination wins for anything larger.
The geometry to keep: last lesson's determinant is your early warning. guarantees the unique solution case immediately.