Matrix Multiplication, Properties, Examples, Solved Exercises with Matrix

Matrix Multiplication

Matrix multiplication involves summing a product. It is appropriate where you need to multiply things together and then add. As an example, multiplying the number of units by the per unit cost will give the total cost.

The units on the product are found by performing unit analysis on the matrices. The labels for the product are the labels of the rows of the first matrix and the labels of the columns of the second matrix.

Am×n × Bn×p = Cm×p

Matrix multiplication is not commutative

There is no matrix division

Identity Matrix

Identity matrix of size 2

Identity matrix of size 3

Properties of Matrices

Properties of Real Numbers that aren't Properties of Matrices

Commutativity of Multiplication

Zero Product Property

Multiplicative Property of Equality

There is no matrix division

Consider the product of a 2×3 matrix and a 3×4 matrix. The multiplication is defined because the inner dimensions (3) are the same. The product will be a 2×4 matrix, the outer dimensions.

Since there are three columns in the first matrix and three rows in the second matrix (the inner dimensions which must be the same), each element in the product will be the sum of three products.

Row 1, Column 1

To find the element in row 1, column 1 of the product, we will take row 1 from the first matrix and column 1 from the second matrix. We pair these values together, multiply the pairs of values, and then add to arrive at 25.

R1: 1  -2   3 ×C1: 1  -3   6 ---------------      1  +6 +18 = 25

Row 2, Column 3

To find the element in row 2, column 3 of the product, we will take row 2 from the first matrix and column 3 from the second matrix. We pair these values together, multiply the pairs of values, and then add to arrive at 53.

R2:  4   5  -2 ×C3:  4   7  -1 ---------------      16 +35  +2 = 53

Understanding where each number in the product comes from is helpful when you only need a specific value. You don't need to multiply completely if you only want specific elements. Just take the row from the first matrix and the column from the second matrix.

The process can be completed for the rest of the elements in the matrix.

So, the final product is