Question: If A = [[2, 3], [1, 4]], what is A^2? (2020)
Options:
Correct Answer: [[12, 21], [21, 16]]
Exam Year: 2020
Solution:
A^2 = A * A = [[2*2 + 3*1, 2*3 + 3*4], [1*2 + 4*1, 1*3 + 4*4]] = [[10, 21], [21, 16]].