Questions: Matrix Multiplication

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Matrix A is 3×4 and matrix B is 4×2. Which of the following is correct?

ABoth AB and BA are defined, and both produce 3×2 matrices
BAB is defined and produces a 3×2 matrix; BA is not defined
CAB is defined and produces a 4×4 matrix; BA produces a 2×3 matrix
DNeither AB nor BA is defined because the outer dimensions don't match
Question 2 Multiple Choice

You apply transformation B to a vector, then apply transformation A to the result. Which matrix product encodes this composition?

AThe product BA, because you apply B first and A second, so B comes first in the expression
BThe product AB, because matrix multiplication is commutative and order doesn't matter
CThe product AB, because in function composition notation the rightmost matrix is applied first
DYou need two separate matrices; a single product cannot encode a two-step transformation
Question 3 True / False

Matrix multiplication is commutative: for any two square matrices A and B of the same size, AB = BA.

TTrue
FFalse
Question 4 True / False

If AB is defined, then BA is expected to also be defined.

TTrue
FFalse
Question 5 Short Answer

Explain why matrix multiplication is not commutative, using the connection between matrices and linear transformations.

Think about your answer, then reveal below.