Given A=[100−1] and B=[0220]
To find AB, multiply each row of A by each column of B.
Position (1,1):
Row 1 of A: [1, 0] and Column 1 of B: [0, 2]
(1×0)+(0×2)
=0
Position (1,2):
Row 1 of A: [1, 0] and Column 2 of B: [2, 0]
(1×2)+(0×0)
=2
Position (2,1):
Row 2 of A: [0, -1] and Column 1 of B: [0, 2]
(0×0)+(−1×2)
=−2
Position (2,2):
Row 2 of A: [0, -1] and Column 2 of B: [2, 0]
(0×2)+(−1×0)
=0
Therefore, AB=[0−220]