Laws of matrix algebra
We can add and multiply matrices. These operations may or may not satisfy certain laws or rules that characterize matrix algebra. We also introduce an algebraic structure called a ring and show that the set of square matrices is a ring.
In what follows, we assume that matrices \(A, B\) and \(C\) are such that their shapes are compatible with matrix addition and multiplication.
Then you should be able to show at least the first two (distributive laws) of the following
\[\begin{eqnarray} A(B + C) &=& (AB) + (AC),\\ (A + B)C &=& (AC) + (BC),\\ (AB)C &=& A(BC). \end{eqnarray} \]
Let us show the last one.
Theorem (Associativity of matrix multiplication)
Let \(A = (a_{ij}), B=(b_{ij})\) and \(C=(c_{ij})\) be matrices. Suppose that \(A\) has \(r\) columns and \(B\) has \(r\) rows, and that \(B\) has \(s\) columns and \(C\) has \(s\) rows. Then \(A(BC) = (AB)C\). In other words, matrix multiplication is associative.
Proof. Let \(X = (x_{ij}) = A(BC)\) and \(Y = (y_{ij}) = (AB)C\). Then
\[x_{ij} = \sum_{k=1}^{r}a_{ik}\left(\sum_{l=1}^{s}b_{kl}c_{lj}\right)\]
and
\[y_{ij} = \sum_{l=1}^{s}\left(\sum_{k=1}^{r}a_{ik}b_{kl}\right)c_{lj}.\]
And these are both equal to the same sum:
\[\sum_{k=1}^{r}\sum_{l=1}^{s}a_{ik}b_{kl}c_{lj}.\]
■
Let \(M_n(K)\), or simply \(M_n\) when there is no confusion, denote the set of all \(n\times n\) matrices over the field \(K\) (i.e., matrices with elements of \(K\)). Then \(M_n(K)\) is closed under matrix addition and multiplication. As usual, we assume \(K = \mathbb{R}\) and \(M_n = M_n(\mathbb{R})\) in the following unless otherwise stated.
Let \(O = (o_{ij})\in M_n\) be the ``zero'' matrix where all elements are 0. For any \(A \in M_n\), we have
\[A + O = O + A = A.\]
For any \(A = (a_{ij}) \in M_n\), we define \(-A = (-a_{ij})\). Clearly, \(-A \in M_n\), and
\[A + (-A) = O.\]
That is, the additive inverse of a matrix always exists.
Let us summarize the laws of matrix algebra. In the following, \(A, B, C\in M_n\), and ``addition'' and ``multiplication'' mean matrix addition and matrix multiplication, respectively.
- \(A + B\in M_n.\) (\(M_n\) is closed under addition.)
- \((A + B) + C = A + (B+C).\) (Addition is associative.)
- The additive identity (the zero matrix) \(O\in M_n\) exists such that \(A + O = O + A = A\) holds for any \(A \in M_n.\)
- For any \(A\in M_n\), there exists its additive inverse \(-A \in M_n\) such that \(A + (-A) = O.\)
- \(A + B = B + A.\) (Addition is commutative.)
- \(AB\in M_n.\) (\(M_n\) is closed under multiplication.)
- \((AB)C = A(BC).\) (Multiplication is associative.)
- \(A(B+C) = AB + AC\). (Distributive law.)
- \((A+B)C = AC + BC.\) (Distributive law.)
Comments
Post a Comment