Question: For the matrix J = [[0, 1], [1, 0]], what is J^2?
Options:
Correct Answer: [[1, 0], [0, 1]]
Solution:
Calculating J^2 gives [[0, 1], [1, 0]] * [[0, 1], [1, 0]] = [[1, 0], [0, 1]], which is the identity matrix.