Given matrices A = [[3, 1], [-2, 5]] and B = [[0, -4], [6, 1]], what is the result of A + B?
✓ Correct Answer: Option A
To add matrices, add corresponding elements: [[3+0, 1+(-4)], [-2+6, 5+1]] = [[3, -3], [4, 6]].
To add matrices, add corresponding elements: [[3+0, 1+(-4)], [-2+6, 5+1]] = [[3, -3], [4, 6]].