Matrix Operations
≈ 20 minA matrix is a rectangular grid of numbers, with a size written as (rows columns). We add matrices of the same size entry by entry, and multiply by a scalar entry by entry.
Matrix multiplication is different: to multiply () by (), the inner dimensions must match. The entry in row , column of is the dot product of row of with column of . The result is .
Worked example. With and (a times a ), the product is :
For general matrices and , which statement is true?
If is and is , the product has size:
With and , find the top entry of .
Let and . Find the entry in row 2, column 2 of .

