Courses / Business I
Mathematics I

Matrix Addition

Business I 332 words Free to read

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 AA of dimension m×nm \times n has mm rows and nn columns; the entry aija_{ij} sits in row ii, column jj. Order matters and is read rows first:

A2×3=(a11a12a13a21a22a23)A_{2\times 3} = \begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \end{pmatrix}

Addition works entry by entry — and only between matrices of the same dimension:

(A+B)ij=aij+bij(A+B)_{ij} = a_{ij} + b_{ij}

If January's sales matrix and February's sales matrix have the same layout, A+BA + B is the two-month total, cell by cell. Adding a 2×32\times 3 to a 3×23\times 2 is as meaningless as adding a price list to a staff roster.

Scalar multiplication rescales every entry at once: (kA)ij=kaij(kA)_{ij} = k\,a_{ij}. A 10% across-the-board price rise is one scalar: 1.1P1.1\,P. Budgeting next year as 120% of this year: 1.2B1.2\,B.

The algebra is friendly: addition is commutative (A+B=B+AA+B = B+A), associative, has a zero matrix, and scalars distribute: k(A+B)=kA+kBk(A+B) = kA + kB.

The payoff of this notation is compression: one symbol carries a whole spreadsheet, and one equation — T=A+BT = A + B or P=1.1PP' = 1.1P — 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

OperationRequirementResult
A+BA + BSame dimension m×nm \times nEntrywise sum
λA\lambda ANoneEvery entry scaled
ATA^TNoneRows become columns
Common pitfall: Reading aija_{ij} column-first. The convention is rows first, always: a23a_{23} lives in row 2, column 3 — mixing this up silently transposes every calculation that follows.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

12practice questions
2interactive scenes
Start Business I free

Mathematics I