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∣. Whatever is true for rows is true for columns.
P2 — Swap rule. Interchanging any two rows (or columns) multiplies the determinant by −1.
P3 — Repetition collapse. If two rows are identical or proportional, the determinant is 0. (Swap the two identical rows: the value must both stay the same and change sign — so it is 0.)
P4 — Single-row scaling. Multiplying one row by k multiplies the determinant by k. Applied to all n rows, this recovers ∣kA∣=kn∣A∣.
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+kRj (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:
Look for a constant sum — if every row (or column) sums to the same expression, do C1→C1+C2+C3 and pull the common factor out (P4).
Create zeros with Ri→Ri−Rj (P6).
Watch for proportional rows at every stage — the moment two appear, the answer is 0 (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 A, B square of order n, with A nonsingular where inverses appear:
Formula
Where it comes from
∣AB∣=∣A∣∣B∣
product rule
∣Am∣=∣A∣m
product rule, repeated
det(A−1)=detA1
determinants of AA−1=I
∣kA∣=kn∣A∣
P4 on each of n rows
∣adjA∣=∣A∣n−1
determinants of A(adjA)=∣A∣I
adj(adjA)=∣A∣n−2A
apply the master identity twice
∣adj(adjA)∣=∣A∣(n−1)2
previous two combined
For n=3 the last three read: ∣adjA∣=∣A∣2, adj(adjA)=∣A∣A, ∣adj(adjA)∣=∣A∣4.
Two structural zero/one facts
Skew-symmetric, odd order. If A′=−A and n is odd, then
∣A∣=∣A′∣=∣−A∣=(−1)n∣A∣=−∣A∣⇒∣A∣=0
Every 3×3 skew-symmetric determinant is 0 — no expansion needed. (Even order escapes: 0−110=1.)
Orthogonal matrices. If AA′=I, taking determinants gives ∣A∣2=1, so
∣A∣=±1
Rotation matrices have ∣A∣=1; reflections have ∣A∣=−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 111abcb+cc+aa+b.
Step 1 — spot the constant sum: in every row, the last two entries add to a+b+c. Do C3→C3+C2:
111abca+b+ca+b+ca+b+c
Step 2 — extract and collapse: pull out (a+b+c) from C3 (P4); columns C1 and C3 are now identical, so the determinant is 0 (P3).
Answer:0 — this is also why the points (a,b+c), (b,c+a), (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.
Step 1 — add all columns: each row's three entries sum to (a−b)+(b−c)+(c−a)=0, so C1→C1+C2+C3 creates a column of zeros.
Step 2 — expand along the zero column: every term carries a factor 0.
Answer:0 — 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.
Step 1 — subtract the first row (P6):R2→R2−R1 and R3→R3−R1:
1001x010y
Step 2 — triangular: the determinant is the diagonal product.
Answer:xy.
Example 4 — The Vandermonde pattern
Prove that 1aa21bb21cc2=(a−b)(b−c)(c−a).
Step 1 — create differences:C1→C1−C2 and C2→C2−C3:
0a−ba2−b20b−cb2−c21cc2
Step 2 — extract factors (P4): pull (a−b) from C1 and (b−c) from C2:
(a−b)(b−c)01a+b01b+c1cc2
Step 3 — expand along R1: the single term is 1⋅[(b+c)−(a+b)]=c−a.
Answer:(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+cbcac+acaba+b=4abc.
Step 1 — one subtraction up front (P6):R1→R1−R2−R3:
0bc−2cc+ac−2bba+b
Step 2 — expand along R1:2cbcba+b−2bbcc+ac=2c[ab+b2−bc]−2b[bc−c2−ac]