2026 Exam Questions with 100%
Correct Answers | Latest Update
How do you calculate the determinant of a 2x2 matrix?
A = [a b , c d] - 🧠 ANSWER ✔✔det A = ad - bc
How do you calculate the determinant of a 3x3 matrix?
A = [a11 a12 a13 , a21 a22 a23 , a31 a32 a33] - 🧠 ANSWER ✔✔det A =
(a11 * det [a22 a 32 , a23 a33]) + (-1)(a12 * det [a21 a 31 , a23 a33]) + (-
1)(-1)(a13 * det [a21 a31 , a22 a32])
, What is a cofactor? - 🧠 ANSWER ✔✔C(ij) = (-1)^(i + j) * det A(ij)
What does Theorem 1 (ch 3) state? (Cofactor expansions) - 🧠 ANSWER
✔✔The determinant of any matrix can be computed by a cofactor
expansion across any row or down any column:
det A = (ai1 * Ci1) + ... + (ain * Cin)
OR
det A = (a1j * C1j) + ... + (anj * Cnj)
What does Theorem 2 (ch 3) state? (A is triangular) - 🧠 ANSWER ✔✔If A is
a triangular matrix, then det A is the product of the entries of the main
diagonal of A
What does Theorem 3 (ch 3) state? (Row operations) - 🧠 ANSWER ✔✔If A
is a square matrix:
1) Adding a multiple of one row to another row, changing A to B, makes det
B = det A
2) Changing two rows of A to produce B makes det B = -det A
3) Rescaling one row of A by k, gives matrix B, with det B = k * det A