Everything else is earned as it appears.
Every product falls into one of these cells. The examples below are labelled with the cell(s) they cover, so you can check the whole grid is filled.
| Cell |
Situation |
What could trip you up |
Example |
| A |
Square × square (both 2×2) |
mechanics of row·column |
E1 |
| B |
Rectangular, shapes align |
3-term sum; result shape |
E2 |
| C |
Shapes don't align |
product is undefined |
E3 |
| D |
Multiply by identity I |
I changes nothing |
E4 |
| E |
Zero matrix / zero divisors |
AB=0 with A,B=0 |
E5 |
| F |
Order matters: AB=BA |
geometry of composition |
E6 |
| G |
Associativity (AB)C=A(BC) |
bracketing is free; cost differs |
E7 |
| H |
Inverse of a product |
order reverses |
E8 |
| I |
Word problem (real world) |
reading a chain as a matrix |
E9 |
| J |
Exam twist: (A+B)2 |
binomial trap |
E10 |
Sign cases (positive, negative, zero entries) appear throughout — E1, E2 and E6 all carry negatives so no sign is left unshown.
Row i of A against column j of B gives which entry?
(AB)ij, the dot product ∑kAikBkj.
A is 2×3, B is 3×3 — is AB defined, and what shape?
Yes, inner dims 3=3; result is 2×3.
A is 2×2, B is 3×3 — is AB defined?
No; columns of A (2) ≠ rows of B (3).
Can a nonzero matrix square to the zero matrix 0?
Yes — e.g. (0010)2=0 (zero divisors).
To undo "apply B then A", which inverse acts first?
A−1: (AB)−1=B−1A−1.
Why is (A+B)2=A2+2AB+B2 in general?
The cross terms are AB+BA, which only merge to 2AB if A,B commute.
In the supply-chain problem, which product gives materials-per-product?
MP — do products→parts first (P), then parts→materials (M).