0

$$\sum_{k=0}^{n}\binom nk=2^n$$ then how is $2(\binom n0+\binom n2+\binom n4+...)=2^n$ ?? I don't think it could be because half of the members of the sum are chosen, that seems a bit intuitively risky to conclude, what am i missing here ?

2 Answers2

7

We have $$(1+x)^n = \sum_{k=0}^n \dbinom{n}k x^k$$ Plugging in $x=1$, we obtain $$2^n = \sum_{k=0}^n \dbinom{n}k$$ Plugging in $x=-1$, we obtain $$0 = \sum_{k=0}^n \dbinom{n}k (-1)^k$$ Adding both we obtain what you want.

Adhvaitha
  • 20,259
0

$\sum_{k=0}^{n}\binom nk=2^n$ results from substituting $x = 1$ in the binomial expansion $(1+x)^{n}=\sum_{k=0}^{n}\binom nk x^k$. Just put $x = -1$ in the same expansion to get $\sum_{k=0}^{n}(-1)^k\binom nk = 0$. Adding these two relations cancels out the odd terms and you get the desired result.

Seven
  • 1,619