Courses / Business I
Mathematics I

Matrix Product

Business I 308 words Free to read

Row Meets Column

Matrix multiplication is not entrywise — it is the algebra of chained dependencies, and it works row-by-column:

(AB)ij=kaikbkj(AB)_{ij} = \sum_k a_{ik}\,b_{kj}

Entry (i,j)(i,j) of the product is the dot product of row ii of AA with column jj of BB: multiply matching components, add them up.

Dimension rule: Am×nBn×p=Cm×pA_{m\times n} \cdot B_{n \times p} = C_{m\times p} — the inner dimensions must match and then disappear:

(m×n)(n×p)    m×p(m \times \underline{n})\,(\underline{n} \times p) \;\rightarrow\; m \times p

Why business loves it. Suppose QQ holds units sold (products by branches) and each product has a price and a unit cost in matrix VV (values by products). Then VQVQ delivers revenue and cost per branch in one stroke. Every 'multiply quantities by rates, then total' calculation — payroll, input requirements, portfolio returns — is a matrix product.

The famous warning: order matters.

ABBA(in general)AB \ne BA \quad \text{(in general)}

BABA may have different dimensions, or not exist at all, or exist and simply differ. Chains read like processes: raw materials → components → products composes in one direction only.

Other habits to unlearn: AB=0AB = 0 does not force A=0A=0 or B=0B=0; and you cannot cancel — AB=ACAB = AC does not imply B=CB = C unless AA is invertible (a determinant question, next lesson).

The identity matrix II (ones on the diagonal, zeros elsewhere) is the neutral element: AI=IA=AAI = IA = A — the matrix world's multiply-by-one.

Tip: Before multiplying anything, write the dimensions side by side: (m×n)(n×p)(m \times n)(n \times p). Inner numbers must match; outer numbers announce the answer's shape. Ten seconds of dimension checking catches most errors before they exist.
Common pitfall: Assuming AB=BAAB = BA. Matrix multiplication is order-sensitive because it chains dependencies — applying "prices after quantities" is not "quantities after prices." Commuting matrices are the exception, never the rule.

Practise this lesson

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

13practice questions
2interactive scenes
Start Business I free

Mathematics I