4.310 min read
The Column Perspective on Matrix Products
The most geometric way to understand is column-by-column. Each column of is the result of multiplying by the corresponding column of : .
So means: take each column of , multiply it by , and the results become the columns of . This is separate matrix-vector multiplications.
This perspective makes the composition story concrete: the -th column of tells us "where the -th basis vector goes under ." Then transforms that destination. The result is where the -th basis vector goes under the composition .
Formal View
Theorem 4.3 (Column Form)
If , then the -th column of is
where is the -th column of .
Interactive Visualization
Matrix Product — Column Perspective
Why This Matters
The column perspective makes it clear that each column of AB is independently computed via matrix-vector products.
- Parallelization: each column of can be computed independently on separate processors
- Sparse matrix products: if has many zero columns, those columns of are immediately zero
Quiz
Question 1
The second column of equals times the second column of .
Common Mistakes
- Computing by multiplying each row of with each column of when the column perspective is clearer.