An introduction to multiplying matrices for Class 12: when two matrices can be multiplied, the row-into-column method, and the laws that matrix multiplication obeys, worked through several questions from Exercise 3.2.
This lesson teaches how to find the product of two matrices. It starts with the condition for multiplication, that the number of columns of the first matrix must equal the number of rows of the second, and how that fixes the order of the answer. It then walks through the row-into-column rule with worked examples, and covers the laws of matrix multiplication: not commutative, associative, distributive, and the existence of an identity matrix. Several questions from Exercise 3.2 are solved in full.
What you'll learn
When two matrices can be multiplied, and how to read off the order of the product
How to multiply matrices using the row into column rule and add up the products
Why matrix multiplication is not commutative but is associative and distributive
How the identity matrix acts as the multiplicative identity for square matrices
Lesson chapters
0:00When can two matrices be multiplied
1:52First example: row into column
4:22Multiplying two square matrices
6:26Laws of matrix multiplication
10:40Exercise 3.2: worked questions
Lesson notes
This lesson introduces the product of two matrices: when the product exists, the row-into-column rule for computing it, and the laws matrix multiplication obeys, followed by several worked questions from Exercise 3.2.
When can two matrices be multiplied
To find the product AB, the number of columns of A must equal the number of rows of B. If A has order m×n and B has order n×p, then the product AB exists and has order m×p.
To multiply, take row into column (not row into row): multiply the first row of A by the first column of B element by element and add up, then the first row by the second column, and so on. Move to the second row of A and repeat against each column of B.
First example
Let A=[314255] (order 2×3) and B=123 (order 3×1).
Since the columns of A match the rows of B, the product has order 2×1:
AB=[3(1)+4(2)+5(3)1(1)+2(2)+5(3)]=[3+8+151+4+15]=[2620]
Multiplying two square matrices
Let P=[1235] and Q=[4256], both 2×2, so PQ is 2×2.
Multiplicative identity. For every square matrix there is an identity matrix of the same order that acts as the multiplicative identity. I1,I2,I3 are the identities for square matrices of order 1,2,3 respectively, so for a 2×2 matrix the identity is I2.
Exercise 3.2: worked questions
Question 1
Compute [a−bba][a−bba]. The product is 2×2:
[a(a)+b(−b)−b(a)+a(−b)a(b)+b(a)−b(b)+a(a)]=[a2+b200a2+b2]
The off-diagonal entries are ab−ab=0 and −ab+ab=0.
Question 2
Multiply the column matrix by the row matrix. Here A=123 is 3×1 and B=[234] is 1×3, so the answer is 3×3. Each entry is one element of A times one element of B (do not add):
AB=2463694812
Question 4
Let A=234345456 and B=103−320545, both 3×3, so AB is 3×3:
AB=2+0+123+0+154+0+18−6+6+0−9+8+0−12+10+010+12+2015+16+2520+20+30=1418220−1−2425670
Question 6
Let A=[3−1−1032] (2×3) and B=213−301 (3×2), so AB is 2×2:
AB=[6−1+9−2+0+6−9+0+33+0+2]=[144−65]
Key takeaways
The product AB exists only when the columns of A equal the rows of B; if A is m×n and B is n×p, then AB is m×p.
Multiply row into column: pair each row of the first matrix with each column of the second, multiply matching elements, and add.
Matrix multiplication is associative and distributive but not commutative, and every square matrix has an identity matrix of the same order as its multiplicative identity.