Definition
A matrix is a rectangular array of numbers arranged in rows () and columns (). In the context of linear systems, an augmented matrix represents a system by capturing only the coefficients and constants, removing the symbolic overhead of variables.
- How to read: “i (row index); j (column index).”
- Meaning: A matrix is a rectangular array of numbers. The augmented form appends the constant column to encode an entire linear system.
Why It Matters
Matrices turn complex, multi-variable problems into manageable linear algebra. This is the engine behind everything from Google’s search algorithm to structural engineering simulations, allowing computers to solve millions of simultaneous constraints instantly.
Core Concepts
- Augmented Matrix: A compact representation where the last column contains the constants (the “results” of the equations).
- Row Operations: Transformative actions that maintain system equivalence:
- Interchanging any two rows ().
- How to read: “Swap row i and row j.”
- Meaning: Reordering equations does not change the solution set.
- Multiplying a row by a non-zero constant ().
- How to read: “Row i equals k times row i.”
- Meaning: Scaling an equation by a nonzero constant preserves its solution set.
- Adding a multiple of one row to another ().
- How to read: “New row i equals k times row j plus old row i.”
- Meaning: Adding a multiple of one equation to another creates an equivalent system—used to eliminate variables.
- Row Echelon Form (REF): A matrix structured such that leading 1s cascade downwards to the right, with zeros below.
- Reduced Row Echelon Form (RREF): An REF matrix where leading 1s are the only non-zero entries in their respective columns. This state represents the solved system.