MATRIX OPERATIONS

Matrix multiplication:
C = A B

-- where A is nxm and B is mxp.
-- and C is nxp
Associativity:
(AB)C = A(BC)
Inverse:
AB = I

-- where I is the identity matrix.