Questions: Composition of Linear Transformations

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

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
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
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
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
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.