How to Multiply Matrices
Read,2 minutes
Matrices Operations
The basic operations on a matrix are addition, subtraction, and multiplication. For matrices to be added or subtracted, they must be in the same order. For matrices to be multiplied, the number of columns in the first Matrix must equal the number of rows in the second Matrix.
How to Multiply Matrixes
If A and B be any two matrices, then their product A×B will be defined only when the number of columns in A is equal to the number of rows in B.
If A = [aij]m×n and B = [bij]n×p then, their final product will be A×B = C = [cij]m×p:
Cij = ∑nt=1aitbtj
Consider A = [a11a12 a21a22], B = [b11b12 b21b22]
⇒ A×B = C = [a11b11 + a12b21a11b12 + a12b22 a21b11 + a22b21a21b12 + a22b22]
Matrix Multiplication Properties
1- In general, matrix multiplication is not commutative: AB ≠ BA
2- Multiplication of matrices is associative, which means that: (AB)C = A(BC)
3- Multiplication of matrices is distributive over the addition of matrices, which means that A(B + C) = AB + AC and (A + B)C = AC + BC.
4- Is A an m×n matrix? If so, then ImA = A = AIn.
5- The product of two matrices can be a null matrix even if neither of the two matrices is null. This means that if AB = 0, it is not necessary that A = 0 or B = 0.
6- If A is an m×n matrix and O is a null matrix, then the product of a matrix and a null matrix is always a null matrix: Am×nOn×p = Om×p
7- If AB = 0, it does not necessarily follow that A or B are zero, and a zero matrix could result from multiplying two non-zero matrices.
8- If AB = AC, B ≠ C (Cancellation Law is not applicable).
9- tr(AB) = tr(BA)
10- For every square Matrix, there is a multiplicative identity such that AI = IA =A
Free printable Worksheets
Exercises for Matrix Multiplication
1) Find the answer: [−62 3−5]×[13 0−1]
2) Find the answer: [4−8 −23]×[20 13]
3) Find the answer: [7 3 4]×[−21]
4) Find the answer: [3 9]×[73−2]
5) Find the answer: [7−2]×[3 9]
6) Find the answer: [−41 −35]×[79]
7) Find the answer: [4 −2 3]×[75]
8) Find the answer: [−9 8]×[3−2−4]
9) Find the answer: [5−7]×[43 7−6]
10) Find the answer: [549]×[7 −6 3]
1) Find the answer: [−62 3−5]×[13 0−1]
[−62 3−5]×[13 0−1] = [(−6×1) + (2×0)(−6×3) + (2×−1) (3×1) + (−5×0)(3×3) + (−5×−1)] =[−6−20 314]
2) Find the answer: [4−8 −23]×[20 13]
[4−8 −23]×[20 13] = [(4×2) + (−8×1)(4×0) + (−8×−3) (−2×2) + (3×1)(−2×0) + (3×3)] = [0−24 −19]
3) Find the answer: [7 3 4]×[−21]
[7 3 4]×[−21] =[(7×(−2))(7×1) (3×(−2))(3×1) (4×(−2))(4×1)] = [−147 −63 −84]
4) Find the answer: [3 9]×[73−2]
[3 9]×[73−2] = [(3×7)(3×3)(3×(−2)) (9×7)(9×3)(9×(−2))] = [219−6 6327−18]
5) Find the answer: [7−2]×[3 9]
[7−2]×[3 9] = [(7×3) + (−2×9)] = [3]
6) Find the answer: [−41 −35]×[79]
[−41 −35]×[79] = [(−4×7) + (1×9)(−3×7) + (5×9)] =[−1924]
7) Find the answer: [4 −2 3]×[75]
[4 −2 3]×[75] = [(4×7)(4×5) ((−2)×7)((−2)×5) (3×7)(3×5)] = [2820 −14−10 2115]
8) Find the answer: [−9 8]×[3−2−4]
[−9 8]×[3−2−4] = [(−9×3)(−9×(−2))(−9×(−4)) (8×3)(8×(−2))(8×(−4))] = [−271836 24−16−32]
9) Find the answer: [5−7]×[43 7−6]
[5−7]×[43 7−6] = [(5×4) + (−7×7)(5×3) + (−7×(−6))] = [−2957]
10) Find the answer: [549]×[7 −6 3]
[7−2]×[3 9] = [(5×7) + (4×(−6)) + (9×3)] = [38]
Matrix Multiplication Practice Quiz