augmented matrix
An augmented matrix is a shorthand for a whole system of linear equations: you strip away the variable names and plus signs and keep only the numbers, packed into one grid. It is the system with its scaffolding removed, ready for fast bookkeeping.
You build it by laying out the coefficient matrix and then tacking on one extra column holding the constants from the right-hand sides — usually marked off by a vertical bar. Each row is one equation; each column on the left is one variable's coefficients; the column past the bar is what each equation equals.
Why bother? Because every legal move on the equations corresponds to an elementary row operation on this grid, and steering the augmented matrix toward reduced row echelon form reads off the solution directly. It turns solving a system into a clean, mechanical procedure on numbers alone.
The system 2x + y = 5, x - 3y = -1 becomes the augmented matrix [2, 1 | 5; 1, -3 | -1], the bar separating coefficients from constants.
Left of the bar: coefficients. Right of the bar: constants.