Matrix multiplication is a fundamental operation in linear algebra with various applications in science, engineering, and computer science. Let’s delve into the key properties that govern this operation.
Non-Commutativity
Unlike regular multiplication of numbers, matrix multiplication is generally non-commutative. This means that for two matrices $A$ and $B$, the product $AB$ is not necessarily equal to $BA$. For example:
$A = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix}, B = begin{pmatrix} 2 & 0 \ 1 & 2 end{pmatrix}$
$AB = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix} begin{pmatrix} 2 & 0 \ 1 & 2 end{pmatrix} = begin{pmatrix} 4 & 4 \ 10 & 8 end{pmatrix}$
$BA = begin{pmatrix} 2 & 0 \ 1 & 2 end{pmatrix} begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix} = begin{pmatrix} 2 & 4 \ 7 & 10 end{pmatrix}$
Associativity
Matrix multiplication is associative. This means for any three matrices $A$, $B$, and $C$, the equation $(AB)C = A(BC)$ holds true. For example:
$A = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix}, B = begin{pmatrix} 2 & 0 \ 1 & 2 end{pmatrix}, C = begin{pmatrix} 0 & 1 \ 1 & 0 end{pmatrix}$
$(AB)C = begin{pmatrix} 4 & 4 \ 10 & 8 end{pmatrix} begin{pmatrix} 0 & 1 \ 1 & 0 end{pmatrix} = begin{pmatrix} 4 & 4 \ 8 & 10 end{pmatrix}$
$A(BC) = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix} begin{pmatrix} 1 & 2 \ 2 & 0 end{pmatrix} = begin{pmatrix} 4 & 4 \ 8 & 10 end{pmatrix}$
Distributivity
Matrix multiplication is distributive over matrix addition. This means for any matrices $A$, $B$, and $C$, the following equations hold:
$A(B + C) = AB + AC$
$(A + B)C = AC + BC$
Identity Matrix
The identity matrix $I$ acts as a multiplicative identity in matrix multiplication. For any matrix $A$, multiplying it by the identity matrix $I$ results in the same matrix $A$:
$AI = IA = A$
For example, if $I$ is a $2 times 2$ identity matrix and $A$ is a $2 times 2$ matrix:
$I = begin{pmatrix} 1 & 0 \ 0 & 1 end{pmatrix}, A = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix}$
$AI = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix} begin{pmatrix} 1 & 0 \ 0 & 1 end{pmatrix} = begin{pmatrix} 1 & 2 \ 3 & 4 end{pmatrix}$
Zero Matrix
The zero matrix $O$ acts as an annihilator in matrix multiplication. For any matrix $A$, multiplying it by the zero matrix $O$ results in the zero matrix:
$AO = OA = O$
Conclusion
Understanding these properties of matrix multiplication is essential for solving problems in linear algebra and its applications in various fields. Remember, matrix multiplication is non-commutative but associative and distributive, and special matrices like the identity and zero matrices play unique roles in these operations.