Matrix Multiplication (contd.):
- The product of two matrices A and B, denoted by AB, is obtained by multiplying each element of a row of A with the corresponding element of a column of B and summing the products.
- Example:
- A = [[1, 2], [3, 4]]
- B = [[5, 6], [7, 8]]
- AB = [[(15 + 27), (16 + 28)], [(35 + 47), (36 + 48)]]
- AB = [[19, 22], [43, 50]]