Compute the Sum

69 Views Asked by At

In general I want to know how to solve these types of questions. I know that you have to use the binomial theorem.

Exmple

or $\binom{99}{1}-\binom{99}{2}+\binom{99}{3}-\binom{99}{4}+...+-\binom{99}{96}+\binom{99}{97}-\binom{99}{98}$

Please don't just give me the answers I want to understand what you are doing.

3

There are 3 best solutions below

0
On

Notice that from a class of $n$ people, the number of ways to choose $i$ people to be in a team is equal to the number of ways to choose $n-i$ people to be not in the team. That is, we have:

$$\binom{n}{i} = \binom{n}{n-i}$$

Hence by pairing the $i$-th and $(n-i)$-th term, they get cancelled out.

$$\sum_{i=0}^{11} \binom{13}{i}=\binom{13}{0}-\binom{13}{1}$$

Similarly for the second question.

Pair $\binom{99}{1}$ with $\binom{99}{98}$. Pair $\binom{99}{2}$ with $\binom{99}{97}$ and etc.

4
On

Hint: $${{n} \choose {k} }={{n} \choose {n-k} }$$

For instance ${{13}\choose {2} }-{{13} \choose {11} }=0$

The most of the sum is $0$.

0
On

Expand binomial theorem for $(1+x)^{13}$:

$$(1+x)^{13}=\binom{13}{0}x^{0}+\binom{13}{1}x^{1}+ \ldots +\binom{13}{12}x^{12}+\binom{13}{13}x^{13}$$

Now put $x=-1$ to get :

$$\binom{13}{0}-\binom{13}{1}+\binom{13}{2} \ldots +\binom{13}{12}-\binom{13}{13}=(1-1)^{13}=0$$

Hence required sum :

$$\binom{13}{0}-\binom{13}{1}+\binom{13}{2} \ldots -\binom{13}{11} =\binom{13}{13}-\binom{13}{12}$$