If A = [[1, 0], [0, 1]] and B = [[2, 3], [4, 5]], what is AB?

Practice Questions

1 question
Q1
If A = [[1, 0], [0, 1]] and B = [[2, 3], [4, 5]], what is AB?
  1. [2, 3], [4, 5]
  2. [1, 0], [0, 1]
  3. [0, 0], [0, 0]
  4. [6, 8], [12, 15]

Questions & Step-by-step Solutions

1 item
Q
Q: If A = [[1, 0], [0, 1]] and B = [[2, 3], [4, 5]], what is AB?
Solution: AB = [[1*2 + 0*4, 1*3 + 0*5], [0*2 + 1*4, 0*3 + 1*5]] = [[2, 3], [4, 5]].
Steps: 7

Related Questions