The Properties NCERT Dropped — and JEE Kept

Older editions of the textbook carried a full section on determinant properties. The current edition dropped it, but JEE Main did not — property-based questions appear nearly every session, and the properties also make many evaluations near-instant. This corner restores the toolkit.

Throughout, "row" statements hold equally for columns, because of the first property.

P1 — Transpose invariance. ∣A′∣=∣A∣\vert A' \vert = \vert A \vert. Whatever is true for rows is true for columns.

P2 — Swap rule. Interchanging any two rows (or columns) multiplies the determinant by −1-1.

P3 — Repetition collapse. If two rows are identical or proportional, the determinant is 00. (Swap the two identical rows: the value must both stay the same and change sign — so it is 00.)

P4 — Single-row scaling. Multiplying one row by kk multiplies the determinant by kk. Applied to all nn rows, this recovers ∣kA∣=kn∣A∣\vert kA \vert = k^n\vert A \vert.

P5 — Split rule. If each entry of one row is a sum of two terms, the determinant splits into a sum of two determinants (that row separated, all other rows repeated).

P6 — The workhorse. The operation Ri→Ri+kRjR_i \to R_i + kR_j (add a multiple of another row) does not change the determinant. This is the property behind almost every elegant evaluation: create zeros, extract common factors, collapse to triangular form.

The strategy

A property-based evaluation almost always follows the same script:

  1. Look for a constant sum — if every row (or column) sums to the same expression, do C1→C1+C2+C3C_1 \to C_1 + C_2 + C_3 and pull the common factor out (P4).
  2. Create zeros with Ri→Ri−RjR_i \to R_i - R_j (P6).
  3. Watch for proportional rows at every stage — the moment two appear, the answer is 00 (P3).

A determinant that looks like a ten-minute expansion usually collapses in three lines under this script.

The Product and Adjoint Family

The second half of the toolkit is a cluster of one-line formulas that JEE Main tests directly. For AA, BB square of order nn, with AA nonsingular where inverses appear:

Formula Where it comes from
∣AB∣=∣A∣∣B∣\vert AB \vert = \vert A \vert \vert B \vert product rule
∣Am∣=∣A∣m\vert A^m \vert = \vert A \vert^m product rule, repeated
det⁡(A−1)=1det⁡A\det(A^{-1}) = \dfrac{1}{\det A} determinants of AA−1=IAA^{-1} = I
∣kA∣=kn∣A∣\vert kA \vert = k^n \vert A \vert P4 on each of nn rows
∣adj⁡A∣=∣A∣ n−1\vert \operatorname{adj} A \vert = \vert A \vert^{\,n-1} determinants of A(adj⁡A)=∣A∣IA(\operatorname{adj} A) = \vert A \vert I
adj⁡(adj⁡A)=∣A∣ n−2A\operatorname{adj}(\operatorname{adj} A) = \vert A \vert^{\,n-2} A apply the master identity twice
∣adj⁡(adj⁡A)∣=∣A∣(n−1)2\vert \operatorname{adj}(\operatorname{adj} A) \vert = \vert A \vert^{(n-1)^2} previous two combined

For n=3n = 3 the last three read: ∣adj⁡A∣=∣A∣2\vert \operatorname{adj} A \vert = \vert A \vert^2,   adj⁡(adj⁡A)=∣A∣A\;\operatorname{adj}(\operatorname{adj} A) = \vert A \vert A,   ∣adj⁡(adj⁡A)∣=∣A∣4\;\vert \operatorname{adj}(\operatorname{adj} A) \vert = \vert A \vert^4.

Two structural zero/one facts

Skew-symmetric, odd order. If A′=−AA' = -A and nn is odd, then ∣A∣=∣A′∣=∣−A∣=(−1)n∣A∣=−∣A∣  ⇒  ∣A∣=0\vert A \vert = \vert A' \vert = \vert -A \vert = (-1)^n \vert A \vert = -\vert A \vert \;\Rightarrow\; \boxed{\vert A \vert = 0} Every 3×33 \times 3 skew-symmetric determinant is 00 — no expansion needed. (Even order escapes: ∣01−10∣=1\begin{vmatrix} 0 & 1 \\ -1 & 0 \end{vmatrix} = 1.)

Orthogonal matrices. If AA′=IAA' = I, taking determinants gives ∣A∣2=1\vert A \vert^2 = 1, so ∣A∣=±1\boxed{\vert A \vert = \pm 1} Rotation matrices have ∣A∣=1\vert A \vert = 1; reflections have ∣A∣=−1\vert A \vert = -1.

These two facts, plus the table above, settle a large share of JEE determinant one-liners before any arithmetic begins.

Worked Examples

Example 1 — Constant-sum collapse

Evaluate ∣1ab+c1bc+a1ca+b∣\begin{vmatrix} 1 & a & b+c \\ 1 & b & c+a \\ 1 & c & a+b \end{vmatrix}.

Step 1 — spot the constant sum: in every row, the last two entries add to a+b+ca + b + c. Do C3→C3+C2C_3 \to C_3 + C_2: ∣1aa+b+c1ba+b+c1ca+b+c∣\begin{vmatrix} 1 & a & a+b+c \\ 1 & b & a+b+c \\ 1 & c & a+b+c \end{vmatrix}

Step 2 — extract and collapse: pull out (a+b+c)(a+b+c) from C3C_3 (P4); columns C1C_1 and C3C_3 are now identical, so the determinant is 00 (P3).

Answer: 00 — this is also why the points (a,b+c)(a, b+c), (b,c+a)(b, c+a), (c,a+b)(c, a+b) from Section 2 are collinear.

Example 2 — Rows that sum to zero

Evaluate ∣a−bb−cc−ab−cc−aa−bc−aa−bb−c∣\begin{vmatrix} a-b & b-c & c-a \\ b-c & c-a & a-b \\ c-a & a-b & b-c \end{vmatrix}.

Step 1 — add all columns: each row's three entries sum to (a−b)+(b−c)+(c−a)=0(a-b) + (b-c) + (c-a) = 0, so C1→C1+C2+C3C_1 \to C_1 + C_2 + C_3 creates a column of zeros.

Step 2 — expand along the zero column: every term carries a factor 00.

Answer: 00 — one glance at the telescoping sum finishes a determinant that brute expansion would take half a page over.

Example 3 — Difference rows create zeros

Evaluate ∣11111+x1111+y∣\begin{vmatrix} 1 & 1 & 1 \\ 1 & 1+x & 1 \\ 1 & 1 & 1+y \end{vmatrix}.

Step 1 — subtract the first row (P6): R2→R2−R1R_2 \to R_2 - R_1 and R3→R3−R1R_3 \to R_3 - R_1: ∣1110x000y∣\begin{vmatrix} 1 & 1 & 1 \\ 0 & x & 0 \\ 0 & 0 & y \end{vmatrix}

Step 2 — triangular: the determinant is the diagonal product.

Answer: xyxy.

Example 4 — The Vandermonde pattern

Prove that ∣111abca2b2c2∣=(a−b)(b−c)(c−a)\begin{vmatrix} 1 & 1 & 1 \\ a & b & c \\ a^2 & b^2 & c^2 \end{vmatrix} = (a-b)(b-c)(c-a).

Step 1 — create differences: C1→C1−C2C_1 \to C_1 - C_2 and C2→C2−C3C_2 \to C_2 - C_3: ∣001a−bb−cca2−b2b2−c2c2∣\begin{vmatrix} 0 & 0 & 1 \\ a-b & b-c & c \\ a^2-b^2 & b^2-c^2 & c^2 \end{vmatrix}

Step 2 — extract factors (P4): pull (a−b)(a-b) from C1C_1 and (b−c)(b-c) from C2C_2: (a−b)(b−c)∣00111ca+bb+cc2∣(a-b)(b-c)\begin{vmatrix} 0 & 0 & 1 \\ 1 & 1 & c \\ a+b & b+c & c^2 \end{vmatrix}

Step 3 — expand along R1R_1: the single term is 1⋅[(b+c)−(a+b)]=c−a1 \cdot \left[(b+c) - (a+b)\right] = c - a.

Answer: (a−b)(b−c)(c−a)(a-b)(b-c)(c-a) — the memorable "product of differences", and the parent of a whole family of JEE items.

Example 5 — A symmetric classic

Prove that ∣b+caabc+abcca+b∣=4abc\begin{vmatrix} b+c & a & a \\ b & c+a & b \\ c & c & a+b \end{vmatrix} = 4abc.

Step 1 — one subtraction up front (P6): R1→R1−R2−R3R_1 \to R_1 - R_2 - R_3: ∣0−2c−2bbc+abcca+b∣\begin{vmatrix} 0 & -2c & -2b \\ b & c+a & b \\ c & c & a+b \end{vmatrix}

Step 2 — expand along R1R_1: 2c∣bbca+b∣−2b∣bc+acc∣=2c[ab+b2−bc]−2b[bc−c2−ac]2c\begin{vmatrix} b & b \\ c & a+b \end{vmatrix} - 2b\begin{vmatrix} b & c+a \\ c & c \end{vmatrix} = 2c\left[ab + b^2 - bc\right] - 2b\left[bc - c^2 - ac\right]

Step 3 — simplify: 2abc+2b2c−2bc2−2b2c+2bc2+2abc=4abc2abc + 2b^2c - 2bc^2 - 2b^2c + 2bc^2 + 2abc = 4abc. ∎

Answer: 4abc4abc.

Example 6 — Quick-fire with the formula table

AA is a nonsingular matrix of order 33 with ∣A∣=−2\vert A \vert = -2. Find ∣2A∣\vert 2A \vert, ∣A2∣\vert A^2 \vert, ∣adj⁡A∣\vert \operatorname{adj} A \vert, det⁡(A−1)\det(A^{-1}) and ∣adj⁡(adj⁡A)∣\vert \operatorname{adj}(\operatorname{adj} A) \vert.

Step 1 — apply each formula: ∣2A∣=23(−2)=−16,∣A2∣=(−2)2=4,∣adj⁡A∣=(−2)2=4\vert 2A \vert = 2^3(-2) = -16, \qquad \vert A^2 \vert = (-2)^2 = 4, \qquad \vert \operatorname{adj} A \vert = (-2)^2 = 4 det⁡(A−1)=−12,∣adj⁡(adj⁡A)∣=(−2)(3−1)2=(−2)4=16\det(A^{-1}) = -\tfrac{1}{2}, \qquad \vert \operatorname{adj}(\operatorname{adj} A) \vert = (-2)^{(3-1)^2} = (-2)^4 = 16

Answer: −16-16, 44, 44, −12-\frac{1}{2}, 1616 — five JEE one-liners from one number.

Example 7 — Skew-symmetric of odd order

Show without expanding that ∣0a−b−a0cb−c0∣=0\begin{vmatrix} 0 & a & -b \\ -a & 0 & c \\ b & -c & 0 \end{vmatrix} = 0.

Step 1 — identify the structure: the matrix satisfies A′=−AA' = -A — skew-symmetric — and its order 33 is odd.

Step 2 — the parity argument: ∣A∣=∣A′∣=∣−A∣=(−1)3∣A∣=−∣A∣\vert A \vert = \vert A' \vert = \vert -A \vert = (-1)^3\vert A \vert = -\vert A \vert, forcing ∣A∣=0\vert A \vert = 0.

Answer: 00, with no expansion — the argument works for every odd order.

Example 8 — Orthogonal determinants

If AA is a square matrix with AA′=IAA' = I, prove that det⁡A=±1\det A = \pm 1.

Step 1 — take determinants of both sides: ∣AA′∣=∣I∣=1\vert AA' \vert = \vert I \vert = 1.

Step 2 — apply the product rule and P1: ∣A∣∣A′∣=∣A∣2=1\vert A \vert \vert A' \vert = \vert A \vert^2 = 1.

Answer: det⁡A=±1\det A = \pm 1. ∎ (The orthogonal specimen 13(12221−22−21)\frac{1}{3}\begin{pmatrix} 1 & 2 & 2 \\ 2 & 1 & -2 \\ 2 & -2 & 1 \end{pmatrix} from the Matrices JEE Corner has determinant exactly 11 — worth checking once by hand.)