Math Lab
Home/Class XI/Ch 7/Applications: divisibility, estimates, identities

Applications: divisibility, estimates, identities

The binomial theorem is more than a formula for expanding (a+b)n(a + b)^n. It is a tool that produces clean proofs of divisibility statements, quick numerical estimates that would be impossibly tedious by hand, and combinatorial identities that resist direct attack. This subtopic showcases the three most common application patterns.

1. Divisibility proofs

The pattern: to show AnA^n is divisible by some integer dd, write A=dk+rA = d \cdot k + r (or some other splitting), expand using the binomial theorem, and identify the divisibility.

Template. To prove an1a^n - 1 is divisible by a1a - 1: write a=1+(a1)a = 1 + (a - 1) and expand. Or simpler: an1=(a1)(an1+an2++1)a^n - 1 = (a - 1)(a^{n-1} + a^{n-2} + \dots + 1).

To prove anbna^n - b^n divisible by aba - b, expand a=b+(ab)a = b + (a - b): an=(b+(ab))n=bn+nbn1(ab)+(n2)bn2(ab)2+a^n = (b + (a - b))^n = b^n + n b^{n-1}(a - b) + \binom{n}{2} b^{n-2} (a - b)^2 + \dots Subtract bnb^n: every remaining term has (ab)(a - b) as a factor.

Worked Example A. Show 9n8n19^n - 8n - 1 is divisible by 6464 for all nNn \in \mathbb{N}.

Write 9=1+89 = 1 + 8. Then 9n=(1+8)n=r=0n(nr)8r=1+8n+(n2)64+(n3)512+9^n = (1 + 8)^n = \sum_{r=0}^n \binom{n}{r} 8^r = 1 + 8n + \binom{n}{2} 64 + \binom{n}{3} 512 + \dots So 9n8n1=(n2)64+(n3)512+=64[(n2)+8(n3)+]9^n - 8n - 1 = \binom{n}{2} 64 + \binom{n}{3} 512 + \dots = 64 \left[\binom{n}{2} + 8 \binom{n}{3} + \dots\right], divisible by 6464.

Worked Example B. Show 4n+15n14^n + 15n - 1 is divisible by 99.

4=1+34 = 1 + 3. 4n=(1+3)n=1+3n+(n2)9+(n3)27+4^n = (1 + 3)^n = 1 + 3n + \binom{n}{2} 9 + \binom{n}{3} 27 + \dots So 4n+15n1=18n+(n2)9+=9(2n+(n2)+)4^n + 15n - 1 = 18n + \binom{n}{2} 9 + \dots = 9(2n + \binom{n}{2} + \dots), divisible by 99.

2. Numerical estimates

When nn is moderate and the binomial (a+b)n(a + b)^n has bb small compared to aa, the early terms of the expansion dominate. We can compute approximations to high accuracy.

Worked Example C. Compute (1.01)10(1.01)^{10} to four decimals.

(1.01)10=(1+0.01)10=r=010(10r)(0.01)r(1.01)^{10} = (1 + 0.01)^{10} = \sum_{r=0}^{10} \binom{10}{r}(0.01)^r.

  • r=0r = 0: 11.
  • r=1r = 1: 100.01=0.110 \cdot 0.01 = 0.1.
  • r=2r = 2: 450.0001=0.004545 \cdot 0.0001 = 0.0045.
  • r=3r = 3: 1200.000001=0.00012120 \cdot 0.000001 = 0.00012.
  • r=4r = 4: 2101080.0000021210 \cdot 10^{-8} \approx 0.0000021.

Sum: 1.10462211.10461.1046221 \approx 1.1046. (Exact value 1.10462...1.10462...)

Worked Example D. Find (99)4(99)^4 using 99=100199 = 100 - 1.

(1001)4=100441003+610024100+1=1000000004000000+60000400+1=96059601(100 - 1)^4 = 100^4 - 4 \cdot 100^3 + 6 \cdot 100^2 - 4 \cdot 100 + 1 = 100\,000\,000 - 4\,000\,000 + 60\,000 - 400 + 1 = 96\,059\,601.

3. Identity proofs

Many identities involving binomial coefficients fall out of expanding (1+x)n(1 + x)^n and either substituting a clever value of xx, or comparing coefficients.

Worked Example E. Prove r=0nr(r1)(nr)=n(n1)2n2\sum_{r=0}^n r(r-1)\binom{n}{r} = n(n-1) 2^{n-2} for n2n \ge 2.

Differentiate (1+x)n=(nr)xr(1 + x)^n = \sum \binom{n}{r} x^r twice with respect to xx: n(n1)(1+x)n2=r=0nr(r1)(nr)xr2.n(n-1)(1 + x)^{n-2} = \sum_{r=0}^n r(r - 1)\binom{n}{r} x^{r-2}. Set x=1x = 1: n(n1)2n2=r=0nr(r1)(nr).\qedn(n - 1) 2^{n-2} = \sum_{r=0}^n r(r - 1)\binom{n}{r}. \qed

This differentiation trick is enormously powerful , it converts a sum involving rr, r2r^2, etc. into a sum we already know.

Worked examples (mixed)

Example 1. Show 5n15^n - 1 is divisible by 44 for all nNn \in \mathbb{N}.

5=1+45 = 1 + 4. 5n=1+4n+(n2)16+5^n = 1 + 4n + \binom{n}{2} 16 + \dots So 5n1=4n+(n2)16+=4(n+4(n2)+)5^n - 1 = 4n + \binom{n}{2} 16 + \dots = 4(n + 4\binom{n}{2} + \dots), divisible by 44.

Example 2. Find the last two digits of 710007^{1000}. (Hint: work mod 100100.)

74=24011(mod100)7^4 = 2401 \equiv 1 \pmod{100}. So 71000=(74)2501(mod100)7^{1000} = (7^4)^{250} \equiv 1 \pmod{100}. Last two digits: 0101.

Example 3. Compute r=010(10r)2r\sum_{r=0}^{10} \binom{10}{r} 2^r.

This is (1+2)10=310=59049(1 + 2)^{10} = 3^{10} = 59049.

Example 4. Show (1.001)1000>2(1.001)^{1000} > 2.

By the binomial theorem, (1+0.001)1000=1+10000.001+(10002)(0.001)2+>1+1=2(1 + 0.001)^{1000} = 1 + 1000 \cdot 0.001 + \binom{1000}{2} (0.001)^2 + \dots > 1 + 1 = 2.

Example 5. Find the integral part of (3+1)6(\sqrt{3} + 1)^6.

(3+1)6+(31)6=2[(60)33+(62)32+(64)3+(66)]=2[27+135+45+1]=416(\sqrt{3} + 1)^6 + (\sqrt{3} - 1)^6 = 2[\binom{6}{0} 3^3 + \binom{6}{2} 3^2 + \binom{6}{4} 3 + \binom{6}{6}] = 2[27 + 135 + 45 + 1] = 416. Since 0<(31)6<10 < (\sqrt{3} - 1)^6 < 1, we get (3+1)6=416(31)6(\sqrt{3} + 1)^6 = 416 - (\sqrt{3} - 1)^6, so the integral part is 415415.

Try it yourself

  1. Show 32n13^{2n} - 1 is divisible by 88 for all nNn \in \mathbb{N}.
  2. Show 6n5n+46^n - 5n + 4 is divisible by 2525 for all n2n \ge 2. (Adjust as needed.)
  3. Compute (1.02)7(1.02)^7 to four decimals.
  4. Find (101)5(101)^5 exactly using 101=100+1101 = 100 + 1.
  5. Show 72n17^{2n} - 1 is divisible by 4848.
  6. Find the last digit of 720267^{2026}.
  7. Compute r=0n2r(nr)\sum_{r=0}^{n} 2^r \binom{n}{r}.
  8. Show (2+1)10+(21)10(\sqrt{2} + 1)^{10} + (\sqrt{2} - 1)^{10} is rational.
  9. Prove (2)n+1>2n+1(2)^{n+1} > 2n + 1 for n2n \ge 2. (Hint: binomial expansion of 2n+1=(1+1)n+12^{n+1} = (1+1)^{n+1}.)
  10. Show 10n110^n - 1 is divisible by 99.
  11. Estimate (0.99)100(0.99)^{100} correct to three decimals.
  12. Prove r=0n(nr)3r=4n\sum_{r=0}^{n} \binom{n}{r} 3^r = 4^n.

Pitfalls / Tricks

  • When proving divisibility, expand using the form a=(multiple of d)+1a = (\text{multiple of } d) + 1 so that early terms give the part you want to subtract.
  • For numerical estimates with (1+h)n(1 + h)^n where hh is small, the first three or four terms are usually sufficient.
  • For irrational expressions like (a+b)n(\sqrt{a} + b)^n, pair with (ab)n(\sqrt{a} - b)^n to extract the integer part.
  • Insight. A modest binomial expansion replaces a tedious calculation. Always try the binomial theorem first when you see ana^n with aa slightly off from a round number.

Practice quiz

Quick check on this topic.

Quiz
Quick check : Applications
6 questions · pick the best answer
Q1

Q2

Q3

Q4

Q5

Q6