Transformation T is a 90° counterclockwise rotation and S is a horizontal reflection. You apply T first, then S. Which matrix represents this composite transformation?
A[T][S] — the first transformation goes on the left
B[S][T] — the first transformation goes on the right
C[T] + [S] — transformations combine by addition
D[S]⁻¹[T] — you invert the second transformation before composing
The matrix of S ∘ T (apply T first, then S) is [S][T]. The first transformation applied temporally (T) has its matrix on the right; the second (S) goes on the left. This follows from how matrix-vector multiplication works: [S][T]v = [S]([T]v) — v is first multiplied by [T] (apply T), then by [S] (apply S). Option A reverses the order, which would mean S is applied first. This reversal between temporal order and matrix order is the central confusion in this topic.
Question 2 Multiple Choice
A student sets up the matrix product for 'scale by 2, then rotate by 45°' as [Scale][Rotate]. What error has the student made?
ANothing — the first operation always goes on the left in matrix products
BThe operations should be added, not multiplied
CThe order is reversed: if scaling happens first (temporally), its matrix goes on the right. The correct product is [Rotate][Scale]
DMatrix products require both transformations to have the same dimensions
The fundamental rule: in the product [A][B], transformation B is applied first and A second. 'First temporally = rightmost in the product.' The student has put the first operation (Scale) on the left, which encodes 'scale second.' The correct product is [Rotate][Scale]v = [Rotate]([Scale]v): first scale, then rotate. This reversal consistently trips up students because English reads left to right, but transformations are applied right to left in matrix notation.
Question 3 True / False
Matrix multiplication is non-commutative in general because function composition is non-commutative — rotating then reflecting gives a different result than reflecting then rotating.
TTrue
FFalse
Answer: True
This is the geometric root of matrix non-commutativity. Since [S][T] represents 'do T then S' and [T][S] represents 'do S then T,' and applying two geometric operations in different orders generally produces different results, these are typically different matrices. The non-commutativity of matrix multiplication is not an arbitrary algebraic quirk — it directly mirrors the fact that the order of operations matters for transformations.
Question 4 True / False
The matrix of the composition S ∘ T is [T][S] — you write the matrices in the same left-to-right order as you read the composition notation (S first, then T).
TTrue
FFalse
Answer: False
The correct formula is [S][T], not [T][S]. In the notation S ∘ T, T is applied first — but its matrix goes on the right. There is a systematic reversal between the way you write/read the composition and the order of the matrix product. S ∘ T means 'apply T, then apply S,' and [S][T] encodes this: reading right to left gives the temporal order. This confusion — reading left to right and writing [T][S] — is one of the most persistent errors in linear algebra.
Question 5 Short Answer
Why is matrix multiplication defined using dot products of rows with columns? What does this computational rule have to do with composing linear transformations?
Think about your answer, then reveal below.
Model answer: Matrix multiplication is defined to encode the composition of linear transformations. The (i, j) entry of [S][T] must capture what happens to the j-th basis vector when first sent by T and then by S. T maps eⱼ to the j-th column of [T]. Then S maps that vector to [S] times that column — which is exactly the dot product of each row of [S] with the j-th column of [T]. So the row-times-column rule is not an arbitrary algorithm; it is the unique definition that makes [S][T] represent 'do T first, then S.' Matrix multiplication was invented to capture this composition structure — understanding this makes the definition feel inevitable rather than arbitrary.
The theorem that [S∘T] = [S][T] explains why matrix multiplication is defined the way it is. The formula isn't defined and then applied to transformations; it was derived from the requirement that matrix products represent composed transformations.