Tables That Do Arithmetic
A matrix is a rectangular array of numbers — and in business, matrices are everywhere before you notice them: a sales table (rows = products, columns = branches), a cost breakdown, a transition table of customers between plans.
Notation: a matrix of dimension has rows and columns; the entry sits in row , column . Order matters and is read rows first:
Addition works entry by entry — and only between matrices of the same dimension:
If January's sales matrix and February's sales matrix have the same layout, is the two-month total, cell by cell. Adding a to a is as meaningless as adding a price list to a staff roster.
Scalar multiplication rescales every entry at once: . A 10% across-the-board price rise is one scalar: . Budgeting next year as 120% of this year: .
The algebra is friendly: addition is commutative (), associative, has a zero matrix, and scalars distribute: .
The payoff of this notation is compression: one symbol carries a whole spreadsheet, and one equation — or — performs hundreds of cell operations in a single conceptual move. That compression is what will let us solve entire systems of equations at once in the coming lessons.
Matrix operations, first rules
| Operation | Requirement | Result |
|---|---|---|
| Same dimension | Entrywise sum | |
| None | Every entry scaled | |
| None | Rows become columns |
Common pitfall: Reading column-first. The convention is rows first, always: lives in row 2, column 3 — mixing this up silently transposes every calculation that follows.