BINOMIAL THEOREM — NDA LEVEL
---
CORE CONCEPT
The Binomial Theorem gives us a formula to expand expressions like (a + b)^n without multiplying them out step by step. Instead of doing (a + b)^10 by hand, we use a ready-made formula. This saves massive time in exams.
---
KEY RULES AND PROPERTIES
1.
The expansion of (a + b)^n has exactly (n + 1) terms.
2. The powers of 'a' decrease from n to 0. Powers of 'b' increase from 0 to n.
3.
The sum of powers in every single term is always equal to n.
4. Coefficients follow Pascal's Triangle pattern.
5. All coefficients add up to 2^n (put a = 1, b = 1).
6.
The expansion is valid for any positive integer n.
---
FORMULA BLOCK
General Formula:
(a + b)^n = C(n,0) * a^n * b^0 + C(n,1) * a^(n-1) * b^1 + ... + C(n,r) * a^(n-r) * b^r + ... + C(n,n) * b^n
General Term (this is the most tested formula):
T(r+1) = C(n, r) * a^(n-r) * b^r
Where C(n, r) = n! / (r! * (n-r)!)
Middle Term:
- If n is EVEN: only one middle term = T(n/2 + 1)
- If n is ODD: two middle terms = T((n+1)/2) and T((n+3)/2)
---
EXAM PATTERNS
NDA regularly asks:
- Find the general term T(r+1)
- Find the middle term of an expansion
- Find the coefficient of x^k in an expansion
- Find which term is independent of x (no x in that term)
- Find the sum of coefficients
---
SHORTCUT / TRICK
Trick 1 — SUM OF COEFFICIENTS: Put a = 1, b = 1 in the expansion. So sum of coefficients of (x + 1)^n = 2^n. Put x = 1.
Trick 2 — TERM INDEPENDENT OF x: Set the power of x in the general term equal to zero and solve for r.
That gives you the exact term number. No guessing needed.
---
WORKED EXAMPLE
Question: Find the term independent of x in the expansion of (x + 1/x)^6.
Step 1: Write the general term.
T(r+1) = C(6, r) * x^(6-r) * (1/x)^r
Step 2: Simplify the power of x.
(1/x)^r = x^(-r)
So power of x = (6 - r) + (-r) = 6 - 2r
Step 3: For the term independent of x, power of x = 0.
6 - 2r = 0
2r = 6
r = 3
Step 4: Find the term.
T(3+1) = T(4) = C(6, 3) * x^0 = 20
Answer: The term independent of x is 20 (the 4th term).
---
COMMON MISTAKE
Students forget that r starts from 0, not 1. So T(r+1) is the term formula.
If r = 3, the term is T(4), the 4th term — not the 3rd. This error costs easy marks.