4.59 min read
Algebraic Properties of Matrix Multiplication
Matrix multiplication satisfies several familiar algebraic properties, but with important differences from scalar multiplication.
Works: Associativity: . Distributivity: and . Identity: . Scalar: .
Does NOT work in general: Commutativity ( in general), cancellation ( does not imply ), zero products ( does not imply or ).
Formal View
Theorem 4.5 — Properties of Matrix Multiplication
Let be matrices of compatible dimensions and : \begin{enumerate} \item (associativity) \item (left distributivity) \item (right distributivity) \item and (identity) \item (scalar compatibility) \end{enumerate}
Why This Matters
These properties justify algebraic manipulation of matrix expressions.
- Associativity allows us to evaluate or — whichever is cheaper
- Distributivity enables expanding matrix polynomials like (note: !)
Quiz
Question 1
For all matrices and , .
Common Mistakes
- Treating matrix algebra like scalar algebra — especially the commutativity assumption.
- Thinking — the correct formula is (order reverses).