NDA Maths · Matrices & Determinants

Determinants: Evaluation & Properties

A determinant collapses a square matrix to one number; a handful of properties (multiplicativity, row operations, the factor theorem) evaluate almost any exam determinant without brute force.

Why this matters

Fifty-nine PYQs — the largest and hardest area in the chapter (46% HARD). This is where the marks and the traps both live: determinant of products and scalars (det(kA) = kⁿ det A is the #1 trap), the row/column properties, the factor-theorem and Vandermonde determinants, cyclic determinants, and telescoping sums of determinants. The eight concepts below cover the lot.

Test yourself — a quick 14-question Matrices & Determinants recall quiz, instant score.

Concept 1 of 10

Evaluating 2×2 and 3×3 determinants

Intuition

A 2×22\times2 determinant is adbcad - bc; geometrically it's the signed area of the parallelogram spanned by the columns. A 3×33\times3 is found by cofactor expansion along any row/column, or by Sarrus' diagonal rule.

Definition

abcd=adbc\begin{vmatrix}a&b\\c&d\end{vmatrix} = ad - bc. For 3×33\times3, expand along a row: ja1j(1)1+jM1j\sum_j a_{1j}(-1)^{1+j}M_{1j}, or use Sarrus — add the three down-right diagonal products, subtract the three down-left ones. Expanding along the row/column with the most zeros is fastest.

2×2 determinant

abcd=adbc\begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc
det = ad − bc = area of the parallelogramarea = |det|col 1 = (a, c)col 2 = (b, d)det = 0 ⇔ columns parallel ⇔ zero area ⇔ singular (no inverse).

Worked example

Evaluate 123045106\begin{vmatrix}1 & 2 & 3\\0 & 4 & 5\\1 & 0 & 6\end{vmatrix} by expanding along the first column.
  1. Down column 1 the entries are 1,0,11, 0, 1 with cofactor signs +,,++, -, + — the middle (zero) term drops out.
  2. =14506+12345= 1\cdot\begin{vmatrix}4 & 5\\0 & 6\end{vmatrix} + 1\cdot\begin{vmatrix}2 & 3\\4 & 5\end{vmatrix}.
  3. 4506=24\begin{vmatrix}4 & 5\\0 & 6\end{vmatrix} = 24; 2345=1012=2\begin{vmatrix}2 & 3\\4 & 5\end{vmatrix} = 10 - 12 = -2.
  4. Sum: 1(24)+1(2)=221(24) + 1(-2) = 22.
Answer:2222.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 1Matrices & DeterminantsMODERATE
What is the value of the determinant 11111+xyz1111+xyz\begin{vmatrix}1&1&1\\1&1+xyz&1\\1&1&1+xyz\end{vmatrix}?

[Q33 · Apr · 2017]

Concept 2 of 10

Determinant of products, scalars, and powers

Intuition

Determinant is multiplicative: det(AB)=detAdetB\det(AB) = \det A \cdot \det B. The single most-tested trap is scaling: pulling a scalar out of the WHOLE matrix multiplies the determinant by knk^n (not kk), because it scales all nn rows.

Definition

For n×nn\times n matrices:

  • Product: det(AB)=detAdetB\det(AB) = \det A\,\det B
  • Transpose: det(AT)=detA\det(A^T) = \det A
  • Scalar: det(kA)=kndetA\det(kA) = k^n \det A (all nn rows scale)
  • Power: det(Am)=(detA)m\det(A^m) = (\det A)^m
  • Inverse: det(A1)=1/detA\det(A^{-1}) = 1/\det A
  • Conjugation: det(B1AB)=detA\det(B^{-1}AB) = \det A
  • Gram: det(AAT)=(detA)2\det(AA^T) = (\det A)^2
  • Rank-1 update (matrix-determinant lemma): det(I+AAT)=1+ATA\det(I + AA^T) = 1 + A^T A; for a column vector AA, ATAA^T A is just the sum of squares of its entries.

Multiplicativity and scaling

det(AB)=detAdetB,det(kA)=kndetAdet(AT)=detAdet(Am)=(detA)mdet(A1)=1detAdet(B1AB)=detA\det(AB) = \det A\,\det B, \qquad \det(kA) = k^{\,n}\det A \qquad \det(A^T) = \det A \qquad \det(A^m) = (\det A)^m \qquad \det(A^{-1}) = \frac{1}{\det A} \qquad \det(B^{-1}AB) = \det A

Worked example

If AA is a square matrix with A=2|A| = -2, find AAT|AA^T|.
  1. AAT=AAT|AA^T| = |A|\cdot|A^T|.
  2. AT=A=2|A^T| = |A| = -2.
  3. AAT=(2)(2)=4=A2|AA^T| = (-2)(-2) = 4 = |A|^2.
Answer:44.
Practice this conceptself-check · 5 quick reps

From the bank · past-year question

Example 2Matrices & DeterminantsEASY
If A is a square matrix such that A=2|A|=-2, then AAT|AA^T|, where ATA^T is the transpose of A, is equal to

[Q17 · Apr · 2026]

det(kA)=kndetA\det(kA) = k^n \det A, NOT kdetAk\det A

Pulling a scalar out of a determinant works one ROW at a time. Factoring kk from the whole n×nn\times n matrix factors it from each of the nn rows → knk^n. The single most common determinant mistake in this bank.

det(I+AAT)=1+ATA\det(I+AA^T) = 1 + A^TA — use the dot product, not the trace

For a column vector AA, det(I+AAT)=1+ATA=1+ai2\det(I+AA^T)=1+A^TA=1+\sum a_i^2. The common slip is to add tr(AAT)\operatorname{tr}(AA^T) without the +1+1, or to expand the full 3×33\times3 by hand.

det(A+B)detA+detB\det(A+B) \neq \det A + \det B

Determinant is multiplicative (det(AB)=detAdetB\det(AB)=\det A\,\det B) but NOT additive. det(A+B)\det(A+B) has no shortcut — you must add the matrices first, then take ONE determinant. Splitting it as detA+detB\det A + \det B is the trap.

Concept 3 of 10

Core row and column properties

Intuition

A short list of properties handles most symbolic determinants: swapping two rows flips the sign, two equal (or proportional) rows make it 0, a common factor pulls out of a row, and adding a multiple of one row to another leaves it unchanged — the workhorse for simplifying.

Definition

  • Transpose: detAT=detA\det A^T = \det A (rows and columns play identical roles).
  • Swap: swapping two rows/columns multiplies the determinant by 1-1.
  • Equal/proportional: two identical or proportional rows/columns det=0\Rightarrow \det = 0.
  • Common factor: a factor common to a row/column pulls outside.
  • Row operation: RiRi+λRjR_i \to R_i + \lambda R_j leaves the determinant unchanged (the key simplification move).

Core row/column properties

RiRjdetdettwo identical/proportional rowsdet=0det(kRi-scaled)=kdetAR_i \leftrightarrow R_j \Rightarrow \det \to -\det \qquad \text{two identical/proportional rows} \Rightarrow \det = 0 \qquad \det(kR_i\text{-scaled}) = k\det A
Sarrus' rule (3×3): copy first two columns, then diagonalsabcabdefdeghigh+ (aei + bfg + cdh)− (ceg + afh + bdi)

Worked example

If Δ=abcdefghi\Delta = \begin{vmatrix}a&b&c\\d&e&f\\g&h&i\end{vmatrix}, what happens to Δ\Delta if you multiply row 1 by 3 and swap rows 2 and 3?
  1. Multiplying one row by 3 multiplies the determinant by 3.
  2. Swapping two rows multiplies by 1-1.
  3. Net effect: 3×(1)=33 \times (-1) = -3, so the new determinant is 3Δ-3\Delta.
Answer:3Δ-3\Delta.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 3Matrices & DeterminantsHARD
If Δ=abcdefghi\Delta=\begin{vmatrix}a&b&c\\d&e&f\\g&h&i\end{vmatrix}, then what is 3d+5g4a+7g6g3e+5h4b+7h6h3f+5i4c+7i6i\begin{vmatrix}3d+5g&4a+7g&6g\\3e+5h&4b+7h&6h\\3f+5i&4c+7i&6i\end{vmatrix} equal to?

[Q9 · Sep · 2021]

Concept 4 of 10

Singular matrices and determinant equations

Intuition

A matrix is singular exactly when its determinant is 0 — that's also when it has no inverse. Many questions set a determinant equal to 0 (or to a value) and ask for the unknown: expand, then solve the resulting polynomial in xx.

Definition

AA is singular     detA=0    A1\iff \det A = 0 \iff A^{-1} does not exist. Determinant equations det()=0\det(\cdot) = 0 become polynomial equations once expanded; simplify first with row operations to lower the degree of work.

Singular matrix

A singular    A=0A=0A1 does not existA \text{ singular} \iff |A| = 0 \qquad |A| = 0 \Rightarrow A^{-1} \text{ does not exist}

Worked example

Find xx if 1232x6001=0\begin{vmatrix}1 & 2 & 3\\2 & x & 6\\0 & 0 & 1\end{vmatrix} = 0.
  1. Expand along row 3 (it has two zeros): only the (3,3)(3,3) entry =1= 1 contributes.
  2. Cofactor of (3,3)(3,3): (+1)122x=x4(+1)\begin{vmatrix}1&2\\2&x\end{vmatrix} = x - 4.
  3. So the determinant =1(x4)=0= 1 \cdot (x - 4) = 0.
  4. x=4x = 4.
Answer:x=4x = 4.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 4Matrices & DeterminantsMODERATE
If the determinant x130011x4=0\begin{vmatrix}x & 1 & 3\\0 & 0 & 1\\1 & x & 4\end{vmatrix} = 0, then what is xx equal to?

[Q18 · Apr · 2021]

Concept 5 of 10

Factor-theorem and Vandermonde determinants

Intuition

When a determinant has symbolic entries, treat it as a polynomial: if setting a=ba = b makes two rows equal (determinant 0), then (ab)(a - b) is a factor. Chaining this gives the famous Vandermonde factorisation (ab)(bc)(ca)(a-b)(b-c)(c-a).

Definition

If substituting x=cx = c makes two rows/columns identical, (xc)(x - c) divides the determinant (factor theorem). The Vandermonde determinant 111abca2b2c2=(ab)(bc)(ca)\begin{vmatrix}1&1&1\\a&b&c\\a^2&b^2&c^2\end{vmatrix} = (a-b)(b-c)(c-a). Use known factors plus a degree/leading-coefficient check to pin the constant.

Vandermonde (3×3)

111abca2b2c2=(ab)(bc)(ca)\begin{vmatrix}1&1&1\\a&b&c\\a^2&b^2&c^2\end{vmatrix} = (a-b)(b-c)(c-a)

Worked example

Show (ab)(a-b) is a factor of D=111abca2b2c2D = \begin{vmatrix}1&1&1\\a&b&c\\a^2&b^2&c^2\end{vmatrix}, and state DD.
  1. Put a=ba = b: columns 1 and 2 become identical D=0\Rightarrow D = 0. So (ab)(a-b) divides DD.
  2. By symmetry (bc)(b-c) and (ca)(c-a) also divide DD; the product has the right degree (3).
  3. A leading-term check fixes the constant as +1+1.
Answer:D=(ab)(bc)(ca)D = (a-b)(b-c)(c-a).
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 5Matrices & DeterminantsHARD
Which one of the following factors does the expansion of the determinant xy3x25y39x310y527\begin{vmatrix} x & y & 3 \\ x^2 & 5y^3 & 9 \\ x^3 & 10y^5 & 27 \end{vmatrix} contain?

[Q13 · Sep · 2018]

Concept 6 of 10

Cyclic determinants

Intuition

The cyclic determinant abcbcacab\begin{vmatrix}a&b&c\\b&c&a\\c&a&b\end{vmatrix} factors as (a3+b3+c33abc)=(a+b+c)(a2+b2+c2abbcca)-(a^3 + b^3 + c^3 - 3abc) = -(a+b+c)(a^2+b^2+c^2-ab-bc-ca). So it vanishes exactly when a+b+c=0a+b+c = 0 or a=b=ca = b = c.

Definition

abcbcacab=(a3+b3+c33abc)=(a+b+c)(a2+b2+c2abbcca)\begin{vmatrix}a&b&c\\b&c&a\\c&a&b\end{vmatrix} = -(a^3+b^3+c^3-3abc) = -(a+b+c)(a^2+b^2+c^2-ab-bc-ca). It equals 0 iff a+b+c=0a+b+c = 0 (real case) or a=b=ca=b=c. Recognising the cyclic pattern saves a full expansion.

Cyclic determinant

abcbcacab=(a3+b3+c33abc)\begin{vmatrix}a&b&c\\b&c&a\\c&a&b\end{vmatrix} = -(a^3+b^3+c^3-3abc)

Worked example

Under what condition does abcbcacab=0\begin{vmatrix}a&b&c\\b&c&a\\c&a&b\end{vmatrix} = 0 (for real a,b,ca,b,c)?
  1. It factors as (a+b+c)(a2+b2+c2abbcca)-(a+b+c)(a^2+b^2+c^2-ab-bc-ca).
  2. The quadratic factor =12[(ab)2+(bc)2+(ca)2]=0= \tfrac12[(a-b)^2+(b-c)^2+(c-a)^2] = 0 only when a=b=ca=b=c.
  3. So the determinant is 0 iff a+b+c=0a+b+c = 0 or a=b=ca = b = c.
Answer:When a+b+c=0a + b + c = 0 or a=b=ca = b = c.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 6Matrices & DeterminantsHARD
Under which of the following conditions does the determinant abcbcacab\begin{vmatrix}a & b & c\\b & c & a\\c & a & b\end{vmatrix} vanish? 1. a+b+c=0a+b+c=0 2. a3+b3+c3=3abca^3+b^3+c^3=3abc 3. a2+b2+c2abbcca=0a^2+b^2+c^2-ab-bc-ca=0 Select the correct answer using the code given below:

[Q3 · Apr · 2022]

Concept 7 of 10

Sums and sequences of determinants

Intuition

When asked for kdet(Ak)\sum_k \det(A_k) with AkA_k depending on kk, first get a clean formula for det(Ak)\det(A_k) (often linear or telescoping in kk), then apply the standard series sum — don't compute 100 determinants.

Definition

Evaluate det(Ak)\det(A_k) symbolically in kk; it is frequently a constant, linear, or telescoping expression. Then sum with k=1nk=n(n+1)2\sum_{k=1}^{n} k = \tfrac{n(n+1)}{2}, k2=n(n+1)(2n+1)6\sum k^2 = \tfrac{n(n+1)(2n+1)}{6}, or telescoping cancellation.

Determinant is not additive

det(A+B)detA+detB (in general)\det(A+B) \neq \det A + \det B \text{ (in general)}

Worked example

If Ak=(k123)A_k = \begin{pmatrix}k & 1\\2 & 3\end{pmatrix}, find k=1100det(Ak)\sum_{k=1}^{100}\det(A_k).
  1. det(Ak)=(k)(3)(1)(2)=3k2\det(A_k) = (k)(3) - (1)(2) = 3k - 2.
  2. k=1100(3k2)=3k2100=31001012200=15150200\sum_{k=1}^{100}(3k - 2) = 3\sum k - 2\cdot100 = 3\cdot\tfrac{100\cdot101}{2} - 200 = 15150 - 200.
  3. =14950= 14950.
Answer:1495014950.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 7Matrices & DeterminantsMODERATE
If Ak=(k1kk2k+1)A_k = \begin{pmatrix}k-1&k\\k-2&k+1\end{pmatrix}, then what is det(A1)+det(A2)++det(A100)\det(A_1)+\det(A_2)+\cdots+\det(A_{100}) equal to?

[Q20 · Sep · 2023]

Concept 8 of 10

Structured and bounded determinants

Intuition

Some determinants are decided by structure, not arithmetic: if every row is a fixed multiple pattern (rank 1) the determinant is 0; if entries are bounded (all ±1\pm 1), the determinant is bounded too. Spot the structure instead of expanding.

Definition

  • Rank-1 patterns: if aija_{ij} factors as f(i)g(j)f(i)g(j) (e.g. aij=2(i+j)a_{ij} = 2(i+j) is a sum of two rank-1 pieces), the 3×33\times3 determinant collapses to 0.
  • Bounded entries: a third-order determinant with entries all ±1\pm1 lies in a small range; the maximum magnitude is 4.
  • Counting determinants from a fixed set of numbers uses permutations of the placements.

Worked example

The element in row ii, column jj of a 3rd-order determinant is 2(i+j)2(i+j). Find its value.
  1. Entries: aij=2i+2ja_{ij} = 2i + 2j — a sum of a row-only term and a column-only term.
  2. Such a determinant is rank ≤ 2, so for a 3×33\times3 it must be 0 (rows are linear combinations).
  3. Concretely R3R2=R2R1R_3 - R_2 = R_2 - R_1 (constant row differences) → rows dependent.
Answer:00.
Practice this concept4 quick reps

From the bank · past-year question

Example 8Matrices & DeterminantsMODERATE
The element in the iith row and the jjth column of a determinant of third order is equal to 2(i+j)2(i+j). What is the value of the determinant?

[Q54 · Apr · 2021]

Concept 9 of 10

Differentiating a Determinant

Intuition

To differentiate a determinant whose entries are functions of xx, do NOT expand it first. Differentiate one row (or column) at a time, leaving the others alone, and add the results. A constant row differentiates to a zero row, so only the rows that actually depend on xx contribute.

Definition

For f(x)=R1R2R3f(x)=\begin{vmatrix}R_1\\R_2\\R_3\end{vmatrix} (rows RiR_i of functions):

  • Row-by-row rule: f(x)=R1R2R3+R1R2R3+R1R2R3f'(x)=\begin{vmatrix}R_1'\\R_2\\R_3\end{vmatrix}+\begin{vmatrix}R_1\\R_2'\\R_3\end{vmatrix}+\begin{vmatrix}R_1\\R_2\\R_3'\end{vmatrix} — differentiate ONE row per term.
  • The same works column-by-column.
  • A constant row differentiates to a zero row → that term's determinant is 0; ignore constant rows.
  • Watch for the shortcut: after differentiating, if two rows become equal or proportional, the determinant is 0.

Derivative of a 3-row determinant

ddxR1R2R3=R1R2R3+R1R2R3+R1R2R3\frac{d}{dx}\begin{vmatrix}R_1\\R_2\\R_3\end{vmatrix} = \begin{vmatrix}R_1'\\R_2\\R_3\end{vmatrix} + \begin{vmatrix}R_1\\R_2'\\R_3\end{vmatrix} + \begin{vmatrix}R_1\\R_2\\R_3'\end{vmatrix}

Worked example

Find f(x)f'(x) for f(x)=xx212xf(x)=\begin{vmatrix}x & x^2\\ 1 & 2x\end{vmatrix}.
  1. Differentiate row 1, then row 2, and add: f(x)=12x12x+xx202f'(x)=\begin{vmatrix}1 & 2x\\ 1 & 2x\end{vmatrix}+\begin{vmatrix}x & x^2\\ 0 & 2\end{vmatrix}.
  2. First determinant has two equal rows → 00; second =2x0=2x=2x-0=2x.
  3. Check by direct expansion: f(x)=2x2x2=x2f(x)=2x^2-x^2=x^2, so f(x)=2xf'(x)=2x — matches.
Answer:f(x)=2xf'(x)=2x.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 9Matrices & DeterminantsHARD
Let f(x)=3x2cosxsinx610qq2q3f(x)=\begin{vmatrix}3x^2 & \cos x & -\sin x\\ 6 & -1 & 0\\ q & q^2 & q^3\end{vmatrix} where qq is any constant, then what is d2dx2(f(x))\dfrac{d^2}{dx^2}(f(x)) at x=0x=0 equal to?

[Q14 · Apr · 2026]

It is a SUM of determinants, not one determinant with every row differentiated

ddxdet\dfrac{d}{dx}\det\neq the determinant of all-rows-differentiated. Differentiate exactly one row per term and add. For higher derivatives, apply the rule again to each surviving term.

Concept 10 of 10

Binomial-Coefficient Determinants (Pascal's Identity)

Intuition

When a determinant's entries are binomial coefficients (nr)\binom{n}{r}, do NOT compute the numbers. Use Pascal's identity as a row/column operation — it usually turns one column into the sum of two others, so a single operation produces a zero column (determinant 0) or pins down an unknown index.

Definition

Pascal's identity: (nr)+(nr+1)=(n+1r+1)\binom{n}{r}+\binom{n}{r+1}=\binom{n+1}{r+1}. So a column of (n+1r+1)\binom{n+1}{r+1} entries equals the sum of the matching (nr)\binom{n}{r} and (nr+1)\binom{n}{r+1} columns. The move: spot the Pascal relation among the columns, apply CiCiCjCkC_i \to C_i - C_j - C_k, and the column collapses to zeros (or to a condition on the unknown).

Pascal's identity (the only tool needed)

(nr)+(nr+1)=(n+1r+1)\binom{n}{r} + \binom{n}{r+1} = \binom{n+1}{r+1}

Worked example

Without computing the entries, evaluate (62)(63)(73)(82)(83)(93)(102)(103)(113)\begin{vmatrix}\binom{6}{2}&\binom{6}{3}&\binom{7}{3}\\ \binom{8}{2}&\binom{8}{3}&\binom{9}{3}\\ \binom{10}{2}&\binom{10}{3}&\binom{11}{3}\end{vmatrix}.
  1. Pascal in each row: (62)+(63)=(73)\binom{6}{2}+\binom{6}{3}=\binom{7}{3}, (82)+(83)=(93)\binom{8}{2}+\binom{8}{3}=\binom{9}{3}, (102)+(103)=(113)\binom{10}{2}+\binom{10}{3}=\binom{11}{3}.
  2. So column 3 == column 1 ++ column 2. Apply C3C3C1C2C_3 \to C_3 - C_1 - C_2: column 3 becomes all zeros.
  3. A zero column makes the determinant 0.
Answer:00 — column 3 is the Pascal sum of columns 1 and 2.
Practice this conceptself-check · 4 quick reps

From the bank · past-year question

Example 10Matrices & DeterminantsHARD
For what value of nn is the determinant (94)(93)(10n2)(116)(115)(12n)(m7)(m6)(m+1n+1)=0\begin{vmatrix}\binom{9}{4}&\binom{9}{3}&\binom{10}{n-2}\\\binom{11}{6}&\binom{11}{5}&\binom{12}{n}\\\binom{m}{7}&\binom{m}{6}&\binom{m+1}{n+1}\end{vmatrix}=0 for every m>nm>n?

[Q19 · Apr · 2024]

Don't evaluate the coefficients — use Pascal to collapse a column

Computing (94)\binom{9}{4}, (116)\binom{11}{6}, … and expanding is slow and error-prone. The whole design is that one column is the Pascal sum of two others; the right move is a single column operation.

Summary — formulas & gotchas at a glance

A revision cheat-sheet for the formulas and gotchas above. Click any concept name to jump back to its full explanation.

Formulas (9)

  • Evaluating 2×2 and 3×3 determinants

    2×2 determinant

    abcd=adbc\begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc
  • Determinant of products, scalars, and powers

    Multiplicativity and scaling

    det(AB)=detAdetB,det(kA)=kndetAdet(AT)=detAdet(Am)=(detA)mdet(A1)=1detAdet(B1AB)=detA\det(AB) = \det A\,\det B, \qquad \det(kA) = k^{\,n}\det A \qquad \det(A^T) = \det A \qquad \det(A^m) = (\det A)^m \qquad \det(A^{-1}) = \frac{1}{\det A} \qquad \det(B^{-1}AB) = \det A
  • Core row and column properties

    Core row/column properties

    RiRjdetdettwo identical/proportional rowsdet=0det(kRi-scaled)=kdetAR_i \leftrightarrow R_j \Rightarrow \det \to -\det \qquad \text{two identical/proportional rows} \Rightarrow \det = 0 \qquad \det(kR_i\text{-scaled}) = k\det A
  • Singular matrices and determinant equations

    Singular matrix

    A singular    A=0A=0A1 does not existA \text{ singular} \iff |A| = 0 \qquad |A| = 0 \Rightarrow A^{-1} \text{ does not exist}
  • Factor-theorem and Vandermonde determinants

    Vandermonde (3×3)

    111abca2b2c2=(ab)(bc)(ca)\begin{vmatrix}1&1&1\\a&b&c\\a^2&b^2&c^2\end{vmatrix} = (a-b)(b-c)(c-a)
  • Cyclic determinants

    Cyclic determinant

    abcbcacab=(a3+b3+c33abc)\begin{vmatrix}a&b&c\\b&c&a\\c&a&b\end{vmatrix} = -(a^3+b^3+c^3-3abc)
  • Sums and sequences of determinants

    Determinant is not additive

    det(A+B)detA+detB (in general)\det(A+B) \neq \det A + \det B \text{ (in general)}
  • Differentiating a Determinant

    Derivative of a 3-row determinant

    ddxR1R2R3=R1R2R3+R1R2R3+R1R2R3\frac{d}{dx}\begin{vmatrix}R_1\\R_2\\R_3\end{vmatrix} = \begin{vmatrix}R_1'\\R_2\\R_3\end{vmatrix} + \begin{vmatrix}R_1\\R_2'\\R_3\end{vmatrix} + \begin{vmatrix}R_1\\R_2\\R_3'\end{vmatrix}
  • Binomial-Coefficient Determinants (Pascal's Identity)

    Pascal's identity (the only tool needed)

    (nr)+(nr+1)=(n+1r+1)\binom{n}{r} + \binom{n}{r+1} = \binom{n+1}{r+1}

Watch out for (5)

Drill every past-year question on this subtopic

59 questions from the bank — paginated, with cart and Word-export support.