The product \(AB\) is defined only when the number of columns in \(A\) equals the number of rows in \(B\).
Each entry \(c_{ij}\) in the product \(C\) is the dot product of row \(i\) of \(A\) and column \(j\) of \(B\):
A factory makes two products P and Q. Materials required per unit:
Production quantities (units per week):
Total materials needed:
520 kg of steel and 600 kg of plastic are required.
| Property | Statement |
|---|---|
| Not commutative | \(AB \neq BA\) in general |
| Associative | \((AB)C = A(BC)\) |
| Identity | \(AI = IA = A\) |
| Zero | \(AO = OA = O\) |
| Distributive | \(A(B+C) = AB + AC\) |
For a square matrix \(A\):
Powers are used in transition and Markov chain problems to find state distributions after \(n\) steps.
COMMON MISTAKE: Reversing the order of multiplication. If \(A\) is \(2 \times 3\) and \(B\) is \(3 \times 4\), then \(AB\) is valid but \(BA\) requires \(B\) to be \(m \times 2\), which it is not here.
EXAM TIP: Write out the orders of each matrix before multiplying. Then confirm the inner dimensions match and record the outer dimensions for the result order.