Determinants: Common Mistakes and Fixes (5)

medium 3 min read

Question

Evaluate 1aa21bb21cc2\begin{vmatrix} 1 & a & a^2 \\ 1 & b & b^2 \\ 1 & c & c^2 \end{vmatrix} (the Vandermonde determinant).

Solution — Step by Step

R2R2R1R_2 \to R_2 - R_1 and R3R3R1R_3 \to R_3 - R_1:

1aa20bab2a20cac2a2\begin{vmatrix} 1 & a & a^2 \\ 0 & b - a & b^2 - a^2 \\ 0 & c - a & c^2 - a^2 \end{vmatrix}

b2a2=(ba)(b+a)b^2 - a^2 = (b-a)(b+a) and c2a2=(ca)(c+a)c^2 - a^2 = (c-a)(c+a).

Factor (ba)(b-a) from R2R_2 and (ca)(c-a) from R3R_3:

(ba)(ca)1aa201b+a01c+a(b-a)(c-a) \begin{vmatrix} 1 & a & a^2 \\ 0 & 1 & b + a \\ 0 & 1 & c + a \end{vmatrix}

Only the (1,1)(1,1) entry contributes:

(ba)(ca)11b+a1c+a(b-a)(c-a) \cdot 1 \cdot \begin{vmatrix} 1 & b+a \\ 1 & c+a \end{vmatrix}

=(ba)(ca)(c+aba)= (b-a)(c-a) \cdot (c + a - b - a)

=(ba)(ca)(cb)= (b-a)(c-a)(c-b).

(ba)(ca)(cb)=(ab)(bc)(ca)(1)?(b-a)(c-a)(c-b) = (a-b)(b-c)(c-a) \cdot (-1)^? .

Working out the signs: (ba)=(ab)(b-a) = -(a-b), (ca)=(ac)(c-a) = -(a-c), (cb)=(bc)(c-b) = -(b-c). Three negatives → overall sign (1)3=1(-1)^3 = -1.

Wait — let me recheck. (ba)(ca)(cb)(b-a)(c-a)(c-b): factor (ba)=(ab)(b-a) = -(a-b), (cb)=(bc)(c-b) = -(b-c). Two negatives so (ba)(cb)=(ab)(bc)(b-a)(c-b) = (a-b)(b-c). Combined with (ca)(c-a): (ab)(bc)(ca)(a-b)(b-c)(c-a). No extra sign.

Final answer: (ab)(bc)(ca)\boxed{\mathbf{(a-b)(b-c)(c-a)}}.

Why This Works

The Vandermonde structure is everywhere — interpolation, polynomial roots, signal processing. The determinant vanishes whenever two of a,b,ca, b, c are equal, because that forces two rows to be identical. So the determinant must be divisible by (ab)(a-b), (bc)(b-c), and (ca)(c-a).

The result is a polynomial in a,b,ca, b, c of degree 0+1+2=30 + 1 + 2 = 3 (one entry from each row), and (ab)(bc)(ca)(a-b)(b-c)(c-a) is exactly degree 3. Identical degrees + same vanishing → equal up to a sign, which we fix by checking one specific case.

Alternative Method

Direct cofactor expansion along the first row gives 1(bc2cb2)a(c2b2)+a2(cb)1 \cdot (bc^2 - cb^2) - a(c^2 - b^2) + a^2(c - b).

Factor (cb)(c - b): bc(cb)a(cb)(c+b)+a2(cb)=(cb)[bca(b+c)+a2]bc(c - b) - a(c-b)(c+b) + a^2(c-b) = (c-b)[bc - a(b+c) + a^2].

Factor the bracket: bcabac+a2=a(ab)c(ab)=(ab)(ac)bc - ab - ac + a^2 = a(a - b) - c(a - b) = (a - b)(a - c).

So determinant =(cb)(ab)(ac)=(ab)(bc)(ca)= (c-b)(a-b)(a-c) = (a-b)(b-c)(c-a). Same result.

Common Mistake

Sign errors in tracking (ab)(a-b) vs (ba)(b-a) are the main trap. The “standard” form (ab)(bc)(ca)(a-b)(b-c)(c-a) is cyclic — many textbooks use this to avoid sign confusion. Always verify with a specific test: try a=1,b=2,c=3a = 1, b = 2, c = 3 → determinant =(1)(1)(2)1=2= (1)(1)(-2) \cdot 1 = -2 (computed directly), and (ab)(bc)(ca)=(1)(1)(2)=2(a-b)(b-c)(c-a) = (-1)(-1)(2) = 2. Hmm, sign mismatch — let me redo: original det with a=1,b=2,c=3a=1, b=2, c=3: 111124139=1(1812)1(94)+1(32)=65+1=2\begin{vmatrix} 1 & 1 & 1 \\ 1 & 2 & 4 \\ 1 & 3 & 9 \end{vmatrix} = 1(18-12) - 1(9-4) + 1(3-2) = 6 - 5 + 1 = 2. And (ab)(bc)(ca)=(1)(1)(2)=2(a-b)(b-c)(c-a) = (-1)(-1)(2) = 2. Match! Always sanity-check with numbers.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next