Question: If F = [[2, 1, 3], [1, 0, 2], [3, 4, 1]], find det(F). (2022)
Options:
Correct Answer: -10
Solution:
Using the determinant formula, det(F) = 2*(0*1 - 2*4) - 1*(1*1 - 2*3) + 3*(1*4 - 0*3) = 2*(-8) - 1*(-5) + 3*4 = -16 + 5 + 12 = 1.