Determinants: PYQ Walkthrough (6)

hard 2 min read

Question

Without expanding, prove that

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

This is the Vandermonde determinant — appears every year in JEE/CBSE.

Solution — Step by Step

Use R1R1R2R_1 \to R_1 - R_2 and R2R2R3R_2 \to R_2 - R_3.

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

a2b2=(ab)(a+b)a^2 - b^2 = (a-b)(a+b) and b2c2=(bc)(b+c)b^2 - c^2 = (b-c)(b+c). Factor (ab)(a-b) from R1R_1 and (bc)(b-c) from R2R_2:

(ab)(bc)01a+b01b+c1cc2(a-b)(b-c)\begin{vmatrix} 0 & 1 & a+b \\ 0 & 1 & b+c \\ 1 & c & c^2 \end{vmatrix}

The only non-zero entry in column 1 is the bottom 11. Cofactor expansion:

(ab)(bc)11a+b1b+c=(ab)(bc)[(b+c)(a+b)]=(ab)(bc)(ca)(a-b)(b-c) \cdot 1 \cdot \begin{vmatrix} 1 & a+b \\ 1 & b+c \end{vmatrix} = (a-b)(b-c)[(b+c) - (a+b)] = (a-b)(b-c)(c-a)

Final answer: (ab)(bc)(ca)(a-b)(b-c)(c-a). Proved.

Why This Works

Row operations don’t change the determinant value (as long as we don’t multiply a row by a constant — that scales the determinant). Subtraction creates zeros, which makes cofactor expansion almost trivial.

The Vandermonde structure repeats in higher orders too: a 4×44\times 4 Vandermonde gives the product of all pairwise differences of the variables. The 3×33\times 3 case is what JEE/CBSE tests.

Alternative Method

Expand directly: 1(bc2cb2)a(c2b2)+a2(cb)1(bc^2 - cb^2) - a(c^2 - b^2) + a^2(c - b). Group terms and factor. Takes about 3 minutes vs 1 minute via row ops — the row operation method dominates.

When you see a determinant with a column of 11s and powers, think Vandermonde. The answer is always the product of differences of the other column’s entries.

Common Mistake

Multiplying a row by 1-1 to get a2b2a^2 - b^2 instead of b2a2b^2 - a^2 without flipping the sign of the determinant. Row operations RiRi+kRjR_i \to R_i + kR_j are sign-preserving, but RiRiR_i \to -R_i flips the sign.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next