Courses / Business I
Mathematics I

Matrix Addition

Business I 216 words Free to read

Matrix Basics

A matrix is a rectangular array of numbers representing data like sales, costs, or transitions.

Dimension is written as m×nm \times n (mm rows, nn columns). The entry aija_{ij} sits in row ii, column jj. Order is always 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}

Common pitfall: Reading aija_{ij} column-first. Mixing this up silently transposes every calculation that follows.
OperationRequirementResult
A+BA + BSame dimension m×nm \times nEntrywise sum
λA\lambda ANoneEvery entry scaled
ATA^TNoneRows become columns
The same two digits name a different cell depending which index is

Addition & Scaling

Matrix 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}. 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% price rise is 1.1P1.1\,P.

Properties: 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 is compression: one symbol carries a whole spreadsheet, and one equation performs hundreds of operations in a single conceptual move.

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

Mathematics I