Matrix Product#
Definition: Matrix Product
The matrix product \(AB\) of a matrix \(A \in F^{m \times n}\) with a matrix \(B \in F^{n \times p}\) is another matrix \(C \in F^{m \times p}\) defined as follows:
where
Notation
Tip: Computation of Individual Entries
The entry \(c_{ij}\) in the \(i\)-th row and the \(j\)-th column of the matrix product \(C\) is obtained by multiplying the \(k\)-th entry in the \(i\)-th row of \(A\) with the \(k\)-th entry in the \(j\)-th column of \(B\) and summing these products.
Tip: Requirements for Matrix Multiplication
In order for the matrix product \(AB\) to be possible, the number of columns in \(A\) must be equal to the number of rows in \(B\).
Tip: Rows and Columns in the Matrix Product
The matrix product \(AB\) has the same number of rows as \(A\) and the same number of columns as \(B\).
Theorem: Non-Commutativity of the Matrix Product
In general, the matrix product of two matrices is not commutative:
Proof
TODO
Theorem: Associativity of the Matrix Product
The matrix product is associative:
Proof
TODO
Theorem: Distributivity of the Matrix Product
The matrix product is distributive over matrix addition:
Proof
TODO