Key Concept: Sum of Binomial Coefficients
The Binomial Theorem states that for any non-negative integer n, the expansion of (x+y)n is given by:
(x+y)n=∑r=0nnCrxn−ryr
A fundamental result derived from this theorem, and crucial for solving this problem, is the sum of all binomial coefficients for a given n. By setting x=1 and y=1, we get:
∑r=0nnCr=nC0+nC1+nC2+⋯+nCn=(1+1)n=2n
Additionally, we use the symmetry property of binomial coefficients:
nCr=nCn−r
This property implies that the coefficients are symmetric around the middle term(s) of the expansion.
Problem Statement
We are asked to evaluate the following expression:
(21C1−10C1)+(21C2−10C2)+(21C3−10C3)+(21C4−10C4)+⋯+(21C10−10C10)
Step-by-step Working
1. Re-arranging the Summation
The given expression is a sum of differences. We can rewrite this as the difference of two separate summations. This simplification is based on the linearity of summation: ∑(ar−br)=∑ar−∑br.
Let the given expression be S.
S=∑r=110(21Cr−10Cr)
S=(∑r=11021Cr)−(∑r=11010Cr)
Let's evaluate each sum independently.
2. Evaluating the Second Sum: ∑r=11010Cr
This sum involves binomial coefficients for n=10. We know the complete sum for n=10 is 210.
∑r=01010Cr=10C0+10C1+10C2+⋯+10C10=210
The sum we need is S2=10C1+10C2+⋯+10C10. This sum includes all terms from r=1 up to r=10.
We can express S2 by subtracting the missing 10C0 term from the complete sum:
S2=(∑r=01010Cr)−10C0
Since 10C0=1:
S2=210−1
3. Evaluating the First Sum: ∑r=11021Cr
This sum involves binomial coefficients for n=21. The complete sum for n=21 is 221:
∑r=02121Cr=21C0+21C1+⋯+21C10+21C11+⋯+21C21=221
We need to find S1=21C1+21C2+⋯+21C10.
We use the symmetry property nCr=nCn−r. For n=21, this means 21Cr=21C21−r.
Specifically:
21C1=21C20
21C2=21C19
...
21C10=21C11
So, the terms from 21C1 to 21C10 are identical to the terms from 21C11 to 21C20 in reverse order.
Let S1=21C1+⋯+21C10.
Then, the sum of the terms from r=11 to r=20 is also S1:
∑r=112021Cr=21C11+⋯+21C20=S1
Now, substitute these back into the full sum identity:
∑r=02121Cr=21C0+(∑r=11021Cr)+(∑r=112021Cr)+21C21
221=21C0+S1+S1+21C21
Since 21C0=1 and 21C21=1:
221=1+2S1+1
221=2+2S1
Subtract 2 from both sides:
2S1=221−2
Divide by 2:
S1=2221−2=220−1
4. Combining the Results
Now, substitute the values of S1 and S2 back into the rearranged expression for S:
S=S1−S2
S=(220−1)−(210−1)
S=220−1−210+1
S=220−210
Tips and Common Mistakes
- Starting Index: Always pay close attention to the starting index of the summation. The identity ∑r=0nnCr=2n starts from r=0. If the sum starts from r=1, you must subtract nC0 (which is always 1) from the total sum 2n.
- Symmetry for Odd n: For an odd n (like n=21), the middle term is not a single coefficient but rather the split between two equal halves. The sum of coefficients from r=0 to (n−1)/2 is equal to 2n−1. For example, ∑r=01021Cr=221−1=220. Therefore, ∑r=11021Cr=(∑r=01021Cr)−21C0=220−1. This provides an alternative, quicker way to calculate S1.
Summary
By breaking down the complex expression into two simpler sums and applying the fundamental properties of binomial coefficients, specifically the sum of all coefficients (2n) and the symmetry property (nCr=nCn−r), we systematically evaluated each part. The first sum, ∑r=11021Cr, evaluates to 220−1, and the second sum, ∑r=11010Cr, evaluates to 210−1. Their difference yields the final result.
The value of the expression is 220−210.