JEE MathsBinomial TheoremCommon Mistakes
Common Mistakes

Traps in Binomial Theorem

5 mistake patterns students fall for. 2 high-frequency traps appear in almost every exam.

Off-by-one in general term

Very CommonFORMULA

The general term formula gives Tr+1T_{r+1}, not TrT_r. The 5th term uses r=4r = 4.

Why: The binomial expansion is indexed from r=0r = 0, so Tr+1=nCranrbrT_{r+1} = {}^nC_r \cdot a^{n-r} \cdot b^r.

WRONG: 5th term of (a+b)n(a+b)^n: T5=nC5an5b5T_5 = {}^nC_5 \cdot a^{n-5} \cdot b^5
RIGHT: 5th term: T5=T4+1=nC4an4b4T_5 = T_{4+1} = {}^nC_4 \cdot a^{n-4} \cdot b^4. Always use r=term number1r = \text{term number} - 1.
See pattern: Coefficient / Term Finding

Missing negative signs in expansion

Very CommonSIGN ERROR

When expanding (ab)n(a - b)^n, the sign alternates. Tr+1T_{r+1} has factor (1)r(-1)^r.

Why: The negative sign on bb gets raised to the power rr, creating alternating signs.

WRONG: T3T_3 of (x2)5=5C2x34=40x3(x-2)^5 = {}^5C_2 \cdot x^3 \cdot 4 = 40x^3
RIGHT: T3=5C2x3(2)2=40x3T_3 = {}^5C_2 \cdot x^3 \cdot (-2)^2 = 40x^3. Here it is positive, but for odd rr it is negative. Track (1)r(-1)^r carefully.

Integral terms: both exponents must be integers

CommonCASE MISS

For a term to be rational, BOTH exponents in the general term must be non-negative integers.

Why: Students check only one exponent and miss the constraint on the other.

WRONG: In (21/3+31/4)12(2^{1/3} + 3^{1/4})^{12}, checking only that rr is a multiple of 4
RIGHT: Need rr to be a multiple of 4 AND (12r)(12-r) to be a multiple of 3. Check both conditions simultaneously.
See pattern: Sum of Coefficients

Sum of coefficients vs binomial coefficients

CommonFORMULA

Sum of binomial coefficients of (1+x)n(1+x)^n is 2n2^n. Sum of coefficients of f(x)f(x) is f(1)f(1).

Why: Students apply the 2n2^n shortcut to all expansions, not just (1+x)n(1+x)^n.

WRONG: Sum of coefficients of (13x+10x2)n=2n(1-3x+10x^2)^n = 2^n
RIGHT: Put x=1x = 1: (13+10)n=8n(1-3+10)^n = 8^n. The sum of coefficients equals f(1)f(1), not always 2n2^n.
See pattern: Properties of Binomial Coefficients

Remainder: wrong base decomposition

CommonSIGN ERROR

When finding remainder of anmodma^n \mod m, the decomposition must use the correct sign.

Why: Incorrect splitting of the base leads to wrong binomial expansion and wrong remainder.

WRONG: 64kmod964^k \mod 9: writing 64=9×7+164 = 9 \times 7 + 1, then remainder =1k= 1^k (correct here, but sign errors are common)
RIGHT: Always verify: base == divisor ×\times quotient ++ remainder. 64=9×7+164 = 9 \times 7 + 1 \checkmark. Then expand (9×7+1)k(9 \times 7 + 1)^k.
See pattern: Remainder & Divisibility
Test yourself

Can you spot these traps under time pressure?

Take a timed quiz on Binomial Theorem and see if you avoid the mistakes above.