Questions: Cofactor Expansion and n×n Determinants
5 questions to test your understanding
Score: 0 / 5
Question 1 Multiple Choice
You must compute the determinant of a 4×4 matrix. Its second row is [0, 5, 0, 0]. Which expansion strategy minimizes computation?
AExpand along row 1, because cofactor expansion always begins with the first row
BExpand along row 2, because it has three zeros and requires computing only one cofactor
CExpand along column 1, because columns are always more efficient than rows
DExpand along the main diagonal
Any row or column gives the same determinant — the choice is entirely strategic. Row 2 has three zeros, so three of the four terms a₂ⱼ·C₂ⱼ vanish immediately (since a₂ⱼ = 0). Only the j=2 term survives: a₂₂·C₂₂ = 5·C₂₂, reducing the work to computing a single 3×3 determinant. Expanding along row 1 (which has no zeros) requires computing four 3×3 determinants — four times more work. The first option reflects the common misconception that cofactor expansion must start at the top row.
Question 2 Multiple Choice
What is the sign of the (2, 3) cofactor C₂₃ in cofactor expansion?
APositive, because all cofactors in the second row are positive
BNegative, because (−1)^(2+3) = (−1)^5 = −1
CPositive, because (−1)^(2×3) = (−1)^6 = +1
DIt depends on the values of the matrix entries
The sign of the (i,j) cofactor is always (−1)^(i+j), regardless of the matrix entries. For position (2,3): (−1)^(2+3) = (−1)^5 = −1, so C₂₃ = −M₂₃. Option C is the classic error: multiplying i and j rather than adding them. Option D confuses the sign of the cofactor (determined by position) with the value of the minor (determined by the submatrix entries). The sign depends only on the position in the checkerboard pattern.
Question 3 True / False
Expanding a matrix determinant along different rows or columns can produce different values for the determinant.
TTrue
FFalse
Answer: False
This is a fundamental property of the determinant: cofactor expansion along any row or any column gives the same result. The (−1)^(i+j) sign pattern in the cofactors is precisely what ensures this consistency — it compensates for the different positions of the entries across rows and columns. If different expansions gave different values, the determinant would not be a well-defined function of the matrix. Choosing a different row is purely a computational strategy, not a mathematically different operation.
Question 4 True / False
The (2,3) cofactor C₂₃ equals (−1)^(2+3) times the determinant of the submatrix formed by deleting row 2 and column 3.
TTrue
FFalse
Answer: True
This is precisely the definition of a cofactor. The (i,j) minor Mᵢⱼ is the determinant of the (n−1)×(n−1) submatrix obtained by deleting row i and column j. The cofactor Cᵢⱼ = (−1)^(i+j) × Mᵢⱼ. For position (2,3), the sign is (−1)^5 = −1, so C₂₃ = −M₂₃. This signed minor is what appears in the cofactor expansion formula det(A) = Σⱼ aᵢⱼ Cᵢⱼ.
Question 5 Short Answer
Why is the freedom to expand along any row or column practically useful, not just a mathematical curiosity? What strategy should you always apply before beginning a cofactor expansion?
Think about your answer, then reveal below.
Model answer: Different rows and columns may have different numbers of zeros; expanding along a row or column with many zeros means most terms vanish (aᵢⱼ·Cᵢⱼ = 0 whenever aᵢⱼ = 0), leaving fewer cofactors to actually compute. The strategy is to scan all rows and columns before starting and choose whichever has the most zeros. If no zeros exist, row operations can sometimes create them first. This can reduce a 4×4 expansion from four 3×3 determinants to just one.
The mathematical guarantee that all expansions give the same value is what licenses this strategic choice. Without it, you would be forced to expand along a fixed row and might face unnecessary arithmetic. The savings grow rapidly with matrix size: a zero in row i of a 5×5 matrix eliminates one 4×4 determinant, each 4×4 term requires four 3×3 determinants, and so on — each zero saved eliminates an exponentially growing subtree of computation.