Matrix multiplication can be understood through three equivalent views:
- Dot product view — each entry of is the dot product of row of with column of
- Column combination view — each column of is a linear combination of columns of , with coefficients from the corresponding column of
- Transformation view — represents the composition of two linear transformations: first , then
Dimensions: if is and is , then is . The inner dimensions must match.
Matrix multiplication is associative but not commutative in general.
The transformation view is the most geometrically powerful: multiplying by a matrix rotates, scales, shears, or projects space. Composing transformations = multiplying matrices.
See also: Gaussian Elimination, Eigendecomposition, Rank and Null Space