Tuesday, December 9, 2008

Multiplication of matrices

Two matrices A and B are conformable for multiplication if the number of columns in A is same as the number of rows in B.

A is premultiplier matrix and B is called post multiplier matrix.

AB is defined in the following way.

(AB) ij = Σ(r= 1 to n) airbrj
= ai1b1j+ai2b2j+…aimbmj

When AB exists, BA may or may not exist.

Properties of matrix multiplication

1. Matrix multiplication is not commutative in general.
2. Matrix multiplication is associative.
3. Matrix multiplication is distributive over matrix.
4. If A is an m x n matrix, then ImA = A = AIn
5. The product of two matrices can be the null matrix while neither of them is the null matrix.
6. Product of the matrix with a null matrix is always a null matrix.
7. If AB = 0 when either of them is not zero, it does not imply BA is zero.


Positive integral powers of A
An+1 = AnA
(Am)n = (A-)mn


Matrix polynomial = a0An+a1An-1+…+an-1A+anIn.

No comments: