Multiplication and Power of Matrices

The multiplications of matrices are presented using examples and questions with solutions.

Multiplication of Rows and Columns Matrices

Let A be a row matrix of order 1 × p with entries a1j and B be a column matrix of order p × 1 with entries bj1. The multiplication of matrix A by matrix B is a 1 × 1 matrix defined by:
row column matrix multiplication
Example 1
Matrices A and B are defined by
row column example
Find the matrix A B.

Solution
row column multiplication solution to example

Multiplication of Matrices

We now apply the idea of multiplying a row by a column to multiplying more general matrices. Let A be an m × p matrix and B be an p × n matrix. Let R1, R2, ... Rm be the rows of matrix A and C1, C2, ... Cn be the columns of column B and write the two matrices as:
 column row multiplication
The product of the two matrices A and B is matrix C of order m × n defined by
 column row multiplication result

Example 2
Find the product
[210122][221012]

Solution
The matrix on the left has 2 rows R1 and R2 the matrix on the right has 2 columns C1 and C2. Their product is given by:

[210122][221012]=[R1R2][C1C2]=[R1C1R1C2R2C1R2C2]

=[[210][211][210][202][122][211][122][202]]=[(2)(2)+(1)(1)+(0)(1)(2)(2)+(2)(0)+(0)(2)(1)(2)+(2)(1)+(2)(1)(1)(2)+(2)(0)+(2)(2)]=[3422]

Power of a Matrix

The power of a square matrix A is defined as follows:
A0=I, I the identity matrix
An=AA....A (n times) , where n is a positive integer.
If m and n are positive integers, then
AmAn=Am+n
(Am)n=Amn

Properties of Matrix Multiplication

  1. The product AB of two matrices A and B is defined if the number of columns of matrix A is equal to the number of rows of matrix B.
  2. In general, the product of two matrices is not commutative: ABBA
  3. Matrix multiplication is associative: (AB)C=A(BC) if all the multiplications are defined.
  4. Matrix multiplication is distributive: A(B+C)=AB+AC and (A+B)C=AC+BC
  5. Multiplication by an identity matrix I: AI=IA=A , this holds for square matrices of dimension n by n.
  6. For α and β real: α(A+B)=αA+αB
  7. For α and β real: α(βA)=αβ(A)
  8. For α and β real: (α+β)A=αA+βA
  9. For α real: α(AB)=(αA)B=A(αB)

Questions on Multiplication of Matrices

Solutions to the Above Questions

More References and links