Matrixprodukt
Matrixprodukt, or matrix product, is a binary operation that takes two matrices and produces a third. It is defined when the number of columns of the first matrix equals the number of rows of the second; if A is m×n and B is n×p, the product AB is an m×p matrix.
Entries are given by (AB)_{ij} = sum_{k=1}^n A_{ik} B_{kj}. In linear algebra, matrices represent linear maps, and
Key properties include associativity (A(BC) = (AB)C) and distributivity over addition (A(B+C) = AB + AC, (A+B)C = AC + BC).
Computation is performed by row-by-column dot products: the i-th row of A is multiplied by the j-th
Matrix multiplication underlies many applications, including composition of linear transformations, coordinate changes, computer graphics transformations, and