5 questions to test your understanding
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?
Which property does matrix addition NOT share with scalar addition?
Matrix addition proceeds entry-by-entry: the (i,j) entry of A + B equals a_ij + b_ij.
Matrix multiplication, like matrix addition, is defined entry-by-entry: (AB)_ij = a_ij · b_ij.
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)?