Questions: Matrix Addition and Subtraction

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A student wants to compute A + B where A is a 2×3 matrix and B is a 3×2 matrix. They transpose B to make it 2×3, then add entry-by-entry, reasoning that both now have the same total number of entries. What is wrong with this approach?

ANothing is wrong — addition is defined as long as both matrices have the same number of entries
BThe student should transpose A instead of B, since convention requires adding along rows
CMatrix addition requires identical dimensions; transposing B creates a mathematically different matrix, and the result is not a valid sum of A and the original B
DThe approach is valid but inefficient — direct addition without transposing would give the same result
Question 2 Multiple Choice

Which property does matrix addition NOT share with scalar addition?

ACommutativity: A + B = B + A
BAssociativity: (A + B) + C = A + (B + C)
CExistence of an additive identity: there is a matrix 0 such that A + 0 = A
DUnrestricted operability: A + B is defined even when A and B have different dimensions
Question 3 True / False

Matrix addition proceeds entry-by-entry: the (i,j) entry of A + B equals a_ij + b_ij.

TTrue
FFalse
Question 4 True / False

Matrix multiplication, like matrix addition, is defined entry-by-entry: (AB)_ij = a_ij · b_ij.

TTrue
FFalse
Question 5 Short Answer

Why do m×n matrices under addition form a vector space, and what does this tell us about the relationship between matrices and vectors in ℝ^(mn)?

Think about your answer, then reveal below.