Question: If A = [[1, 0], [0, 1]] and B = [[2, 3], [4, 5]], what is AB?
Options:
Correct Answer: [2, 3], [4, 5]
Solution:
AB = [[1*2 + 0*4, 1*3 + 0*5], [0*2 + 1*4, 0*3 + 1*5]] = [[2, 3], [4, 5]].