Systems & Geometry
A linear equation uses only sums and scalar multiples, like . A system requires several to hold simultaneously, written compactly as where is the matrix, is the variables, and is the constants.
Geometrically, each equation in two variables is a line. A solution is a point on all lines at once, leading to three geometric cases:
| Case | Geometry | Meaning |
|---|---|---|
| Unique | Cross at one point | Consistent, independent |
| None | Parallel and distinct | Inconsistent |
| Infinite | Same exact line | Dependent |
Common pitfall: Assuming every system has a unique solution. Always check for parallel lines or redundant equations.
Gaussian Elimination
The systematic method is Gaussian elimination: apply row operations to the augmented matrix to reach row-echelon form, then back-substitute.
Allowed row operations (which never change the solution set):
- Swap two rows
- Scale a row by a non-zero constant
- Add a multiple of one row to another
| Row Result | Meaning | Solution Count |
|---|---|---|
| Contradiction | No solution | |
| Redundancy | Infinite solutions (free variables) | |
| Pivot found | Unique solution (if full rank) |