Binomial Theorem for NDA — Expansion, General Term, and Integer-Part Problems

intermediate 22 min read

Concept

The Binomial Theorem gives you a formula to expand (a + b)ⁿ without multiplying out every bracket by hand. For any positive integer n:

(a+b)n=r=0n(nr)anrbr (a + b)^n = \sum_{r=0}^{n} \binom{n}{r} a^{n-r} b^r

where \binom{n}{r} = \frac{n!}{r!(n-r)!} is the binomial coefficient — also called C(n, r) or ⁿCᵣ in Indian textbooks.

Think of it this way: you are choosing which of the n brackets contribute a b (and the rest contribute a). When r brackets give a b, you get aⁿ⁻ʳ bʳ. The number of ways to choose those r brackets from n is C(n, r). Add up all values of r from 0 to n and you have the full expansion.

Analogy. Imagine you have 10 identical coins. Each coin shows either Heads (contributes a) or Tails (contributes b). The term with exactly r tails is C(10, r) · a^{10-r} · b^r. The total expansion (a + b)^{10} just sums all possibilities from zero tails to ten tails. Pascal's triangle is then just a visual bookkeeping device — each entry is the sum of the two entries above it, matching the identity C(n, r) = C(n-1, r-1) + C(n-1, r).

Why NDA tests this. The NDA paper has a pattern of bundling 3–4 questions around a single setup — typically (√2 + 1)^n and its conjugate (√2 - 1)^n. You need to recognise the conjugate-pair trick, extract the integer part, and apply the multiplicative inverse idea. These are mechanical once you see the structure, and you will see this exact structure in recent PYQs below.


Deep Dive

The Standard Expansion

For a positive integer n, the expansion of (a + b)^n has n + 1 terms:

(a+b)n=C(n,0)an+C(n,1)an1b+C(n,2)an2b2++C(n,n)bn (a + b)^n = C(n,0)\,a^n + C(n,1)\,a^{n-1}b + C(n,2)\,a^{n-2}b^2 + \cdots + C(n,n)\,b^n

Key properties worth committing to memory:

General Term

The (r+1)-th term of (a + b)^n is:

Tr+1=(nr)anrbr T_{r+1} = \binom{n}{r} a^{n-r} b^r

This is the workhorse formula. For "find the term containing x^k" questions, write T_{r+1}, expand the powers, collect the exponent of x, set it equal to k, solve for r. If r is not a non-negative integer, that term doesn't exist.

Middle term. When n is even, the middle term is T_{n/2 + 1}. When n is odd, there are two middle terms: T_{(n+1)/2} and T_{(n+3)/2}.

The Conjugate-Pair Technique

This is the technique NDA tested directly. Look at (\sqrt{2} + 1)^{10} and its conjugate (\sqrt{2} - 1)^{10}.

When you expand both using the binomial theorem:

(2+1)10=r=010C(10,r)(2)10r(1)r (\sqrt{2} + 1)^{10} = \sum_{r=0}^{10} C(10,r)\,(\sqrt{2})^{10-r}\,(1)^r (21)10=r=010C(10,r)(2)10r(1)r (\sqrt{2} - 1)^{10} = \sum_{r=0}^{10} C(10,r)\,(\sqrt{2})^{10-r}\,(-1)^r

Now add them. For odd values of r, the (-1)^r = -1 cancels the corresponding term from the first expansion. For even values of r, the terms double:

(2+1)10+(21)10=2r=0r even10C(10,r)(2)10r (\sqrt{2}+1)^{10} + (\sqrt{2}-1)^{10} = 2\sum_{\substack{r=0 \\ r \text{ even}}}^{10} C(10,r)\,(\sqrt{2})^{10-r}

Since r is even, 10 - r is also even, so (\sqrt{2})^{10-r} = 2^{(10-r)/2} — a rational number. Every term in this sum is a rational (in fact, integer) number. The full sum is therefore an integer.

Extracting the integer part. Define u + f = (\sqrt{2}+1)^{10} where u is the integer part and 0 < f < 1. Define v = (\sqrt{2}-1)^{10}.

Since \sqrt{2} - 1 \approx 0.414, we have 0 < \sqrt{2}-1 < 1, so 0 < (\sqrt{2}-1)^{10} < 1, meaning 0 < v < 1.

We showed u + f + v = N (an integer). Since u is already an integer, f + v must be an integer. Since 0 < f < 1 and 0 < v < 1, we have 0 < f + v < 2. The only integer in this open interval is 1. Therefore f + v = 1.

Multiplicative Inverse via Conjugate

Here is a neat identity: (\sqrt{2}+1)(\sqrt{2}-1) = 2 - 1 = 1. These two numbers are multiplicative inverses of each other.

Therefore:

(21)20=1(2+1)20 (\sqrt{2}-1)^{20} = \frac{1}{(\sqrt{2}+1)^{20}}

Since v = (\sqrt{2}-1)^{10}, we get (\sqrt{2}-1)^{20} = v^2. So the multiplicative inverse of (\sqrt{2}+1)^{20} is v^2.

Computing the Exact Value

To find u, compute (\sqrt{2}+1)^{10} + (\sqrt{2}-1)^{10}:

Using even-r terms (r = 0, 2, 4, 6, 8, 10):

| r | C(10,r) | (√2)^{10-r} | Term (×2 from addition) | |---|---------|-------------|--------------------------| | 0 | 1 | 2^5 = 32 | 2 × 1 × 32 = 64 | | 2 | 45 | 2^4 = 16 | 2 × 45 × 16 = 1440 | | 4 | 210 | 2^3 = 8 | 2 × 210 × 8 = 3360 | | 6 | 210 | 2^2 = 4 | 2 × 210 × 4 = 1680 | | 8 | 45 | 2^1 = 2 | 2 × 45 × 2 = 180 | | 10| 1 | 2^0 = 1 | 2 × 1 × 1 = 2 |

Sum: 64 + 1440 + 3360 + 1680 + 180 + 2 = 6726.

So u + f + v = 6726. Since f + v = 1, we get u = 6725.


Memory Tricks & Shortcuts

patternEven-Power Conjugate = Rational

When you add (A + B)^n + (A - B)^n and n is even, all irrational terms cancel because they pair up with opposite signs. The result is always rational (and often an integer when A and B are surd-integer combinations). Recognition test: if you see (√k ± 1)^n or (√k ± m)^n in a problem, immediately write the conjugate sum. Standard approach: manually verify irrationality term by term (~90 seconds). Pattern recognition: write conjugate sum directly and classify (~15 seconds).

patternConjugate Product = 1 Shortcut

For (√2 + 1) and (√2 - 1): their product is 1, so they are reciprocals. For any power n: (√2 - 1)^n = 1/(√2 + 1)^n. Whenever a question asks "multiplicative inverse of (√2 + 1)^k", write (√2 - 1)^k directly. Then rewrite in terms of v if v = (√2 - 1)^{10}: (√2 - 1)^{20} = v^2. This takes 8 seconds. Computing via rationalisation: ~40 seconds.

estimationf + v = 1 from Fractional-Part Squeeze

When 0 < conjugate base < 1, its power also lies in (0, 1). So both f (fractional part of the big expression) and v (the small conjugate power) lie in (0, 1). Their sum lies in (0, 2). If their sum must also be an integer, it can only be 1. Commit this squeeze: "two fractional parts that sum to an integer must sum to 1." Saves you from computing f and v separately. Step count: 3 steps vs 7+ steps by direct expansion.

substitutionGeneral Term Power Matching

For "find the term independent of x" in (x^a + x^{-b})^n: write T_{r+1} = C(n,r) · x^{a(n-r)} · x^{-br}. Set the exponent a(n-r) - br = 0, solve for r. Check r is a non-negative integer. If it is, compute C(n,r). Standard approach (expand partially to find the term): ~60 seconds. Substitution into general term and solving: ~20 seconds.

patternPascal Row Sums for Quick Coefficient Checks

The sum of all coefficients in (1 + x)^n is 2^n. To verify your expansion is correct during a solve, sum the computed coefficients — if they add to 2^n, the expansion is consistent. For the term-count sanity check: number of terms = n + 1. For n = 10, expect 11 terms. This catches errors in under 5 seconds, where re-expanding from scratch takes 3+ minutes.


Fast-Solving Framework

When you see a binomial theorem question in the exam hall, run this decision tree:

Step 1 — Identify the structure. Is the base a conjugate pair like (√k ± m)? If yes, go to Step 2. If it is a straightforward (a + b)^n, go to Step 3.

Step 2 — Conjugate pair protocol.

Step 3 — General term protocol.

Step 4 — Sanity check. For coefficient questions, verify r is a non-negative integer not exceeding n. For integer-part questions, verify your conjugate sum is indeed an integer by checking that all irrational pieces cancel.


Solved PYQs

Why this question: This is the anchor question of a 4-part linked set. Understanding whether u + v + f and f + v are integers tests whether you know the conjugate cancellation technique.

Previous Year Questionपिछले वर्ष का प्रश्न2026
Let u be a positive integer and f be a real number lying between 0 and 1. Further, (√2 + 1)^10 = u + f and (√2 − 1)^10 = v. Consider the following statements: I. (u + v + f) is an integer. II. (f + v) is an integer. Which of the statements given above is/are correct?
  1. I only
  2. II only
  3. Both I and II
  4. Neither I nor II
Solutionसमाधान
When we expand (√2 + 1)^10 + (√2 − 1)^10 using binomial theorem, the irrational terms cancel and we get an integer (since the exponent 10 is even, the result is 2 times the sum of even-indexed terms). So u + f + v = integer, making statement I correct. Since u is an integer, this means f + v is also an integer. Both statements I and II are correct.

Solving path: Expand (\sqrt{2}+1)^{10} + (\sqrt{2}-1)^{10}. All odd-r terms cancel (irrational parts). Even-r terms all give integer contributions (since (\sqrt{2})^{even} = 2^{integer}). The full sum is an integer N, so u + f + v = N — Statement I is correct. Since u is an integer, f + v = N - u is also an integer — Statement II is correct. Answer: Both I and II.


Why this question: Tests whether you can connect the conjugate product identity (\sqrt{2}+1)(\sqrt{2}-1) = 1 to a question phrased as "multiplicative inverse."

Previous Year Questionपिछले वर्ष का प्रश्न2026
What is the multiplicative inverse of (√2 + 1)^20?
  1. v
  2. v² − 1
  3. v² + 1
Solutionसमाधान
Since (√2 + 1)(√2 − 1) = 2 − 1 = 1, we have (√2 − 1) = 1/(√2 + 1). Therefore (√2 − 1)^20 = 1/(√2 + 1)^20, which is the multiplicative inverse of (√2 + 1)^20. Given v = (√2 − 1)^10, so (√2 − 1)^20 = v². Hence the multiplicative inverse is v².

Solving path: Since (\sqrt{2}+1)(\sqrt{2}-1) = 1, raising both sides to the power 20 gives (\sqrt{2}+1)^{20} \cdot (\sqrt{2}-1)^{20} = 1. So the multiplicative inverse of (\sqrt{2}+1)^{20} is (\sqrt{2}-1)^{20}. Now v = (\sqrt{2}-1)^{10}, so (\sqrt{2}-1)^{20} = v^2. Answer: v^2.


Why this question: Tests the fractional-part squeeze. Many students try to compute f and v separately, which is slow and error-prone.

Previous Year Questionपिछले वर्ष का प्रश्न2026
What is the value of (v + f)?
  1. 2
  2. 1
  3. 0.5
  4. 0.25
Solutionसमाधान
Since (√2 + 1)^10 + (√2 − 1)^10 = u + f + v is an integer, and u is an integer, f + v must be an integer. Since 0 < f < 1 and 0 < (√2 − 1)^10 < 1 (as √2 − 1 ≈ 0.414 < 1), both f and v are between 0 and 1, so 0 < f + v < 2. The only integer in this range is 1. Therefore f + v = 1.

Solving path: We know f + v is an integer (from the previous part). Also \sqrt{2} - 1 \approx 0.414, so 0 < (\sqrt{2}-1)^{10} < 1, meaning 0 < v < 1. Combined with 0 < f < 1, we get 0 < f + v < 2. The only integer in (0, 2) is 1. Therefore f + v = 1. Answer: 1.


Why this question: This is the payoff question. It requires computing the conjugate sum explicitly and then using f + v = 1 to extract u. The computation is the most involved step in the set.

Previous Year Questionपिछले वर्ष का प्रश्न2026
What is the value of u?
  1. 9725
  2. 6971
  3. 6726
  4. 6725
Solutionसमाधान
Using binomial expansion: (√2 + 1)^10 + (√2 − 1)^10 = 2[C(10,0)(√2)^10 + C(10,2)(√2)^8 + C(10,4)(√2)^6 + C(10,6)(√2)^4 + C(10,8)(√2)^2 + C(10,10)] = 2[32 + 45·16 + 210·8 + 210·4 + 45·2 + 1] = 2[32 + 720 + 1680 + 840 + 90 + 1] = 2 × 3363 = 6726. Since u + f + v = 6726 and f + v = 1, we get u = 6725.

Solving path: Compute (\sqrt{2}+1)^{10} + (\sqrt{2}-1)^{10} by summing only the even-r terms (since odd terms cancel):

Total: 64 + 1440 + 3360 + 1680 + 180 + 2 = 6726.

So u + f + v = 6726. Since f + v = 1, we get u = 6725. Answer: 6725.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →