Question: If D = [[2, 1], [1, 2]], what is the trace of D?
Options:
Correct Answer: 3
Solution:
The trace of a matrix is the sum of its diagonal elements. Trace(D) = 2 + 2 = 4.