If A = [[1, 2], [3, 4]], find A^2.

Practice Questions

1 question
Q1
If A = [[1, 2], [3, 4]], find A^2.
  1. [7, 10], [15, 22]
  2. [1, 2], [3, 4]
  3. [10, 13], [22, 29]
  4. [-1, -2], [-3, -4]

Questions & Step-by-step Solutions

1 item
Q
Q: If A = [[1, 2], [3, 4]], find A^2.
Solution: A^2 = A * A = [[1*1 + 2*3, 1*2 + 2*4], [3*1 + 4*3, 3*2 + 4*4]] = [[7, 10], [15, 22]].
Steps: 8

Related Questions