Properties of Matrix Multiplication








Properties of Matrix Multiplication
(1) Matrix multiplication is not commutative in general. For matrices  and  B , we need 
      not have  AB = BA .
      For example:
      (a) A and  B are  2 x 3  and  3 x 4 matrices, then  AB  is a  2 x 4  matrix whereas  BA  is 
            not defined.
      (b) and  are  2 x 3  and  3 x 2 matrices, then  AB  is a  2 x 2  matrix and  BA  is a 
            3 x 3  matrix.
      (c) and  are  2 x 2 matrices, then both  AB  and  BA  are  2 x 2  matrices. Even in this
            case, we may not have  AB = BA .

(2) Associative Law of Multiplication : If  A , B andbe matrices of the type  m n , n p
      p respectively, then    (AB)C  =  A(BC) .

(3) Matrix Multiplication is Distributive with respect to Addition :
      (a) If A , B and C  are matrices of the type  m n ,  n p  and  n  respectively, then 
                                                 A(B + C)  =  AB + AC
      (b) If A , B and C  are matrices of the type  n ,  m x n  and   respectively, then 
                                                 (+ B)C  =  AC + BC

(4) The Product of non-zero matrices may be a zero matrix. For matrices  A  and  B , it may
       be possible that   AB = and neither  nor  is a zero matrix.

Comments