Many Equations, One Verdict
A system of linear equations is business modeling's native language: production plans meeting capacity limits, budgets split across departments, markets clearing. In matrix form, all of it is one line:
Three possible fates (Rouché–Frobenius): compare the rank of with the rank of the augmented matrix and the number of unknowns :
- Unique solution (compatible determinate): . The lines/planes meet at exactly one point.
- Infinitely many (compatible indeterminate): — free parameters remain; the equations overlap.
- No solution (incompatible): — the equations contradict; parallel lines that never meet.
Gaussian elimination is the workhorse: use row operations (swap rows, scale a row, add a multiple of one row to another) to sweep the matrix into a triangular shape, then back-substitute from the bottom up. Each row operation preserves the solution set — you are rewriting the story, not changing its ending.
Cramer's rule is the determinant shortcut for square systems with :
where is with column replaced by . Elegant for and ; Gaussian elimination wins for anything bigger.
The geometry to keep: two lines in a plane either cross once (unique), coincide (infinite), or run parallel (none). Every 1,000-variable production model ends in one of the same three fates — and last lesson's determinant is the early warning: guarantees the first, happiest case.
The Rouché–Frobenius verdicts
| Comparison | Verdict | Geometry |
|---|---|---|
| Unique solution | Lines meet at one point | |
| Infinitely many | Equations overlap | |
| No solution | Parallel — contradiction |
Common pitfall: Declaring "no solution" the moment a row of zeros appears in elimination. A zero row of the form signals redundancy (infinitely many solutions); only with signals contradiction.