Question: Calculate the determinant of G = [[1, 2, 1], [0, 1, 4], [1, 0, 0]]. (2021)
Options:
Correct Answer: -2
Exam Year: 2021
Solution:
Using the determinant formula for 3x3 matrices, det(G) = 1(1*0 - 4*0) - 2(0*0 - 4*1) + 1(0*0 - 1*1) = 0 + 8 - 1 = 7.