I recently came across a question while studying for an exam. I haven't been able to solve it. We had to prove: $$\sum_{k=0}^{n}{2n+1\choose k} = 2^{2n}$$
We had to use counting techniques. This was my attempt
Let S be the set of all subsets of [1....2n]. We know that the size of S is $2^{2n}$ Another way of counting the subsets of [1....2n] is ?????
...
Therefore, since we've used two different methods to count the same thing, then $$\sum_{k=0}^{n}{2n+1\choose k} = 2^{2n}$$
My problem is, I can't think of a second way to count the subsets such that it equals the summation. Am I on the right track here, or is there another set of objects I can count to make the proof easier?
Thanks for the help.
We have to consider the set $\{1,2,3,...,2n+1\}$. There are $2^{2n+1}$ subsets here.
However, another way to look at this is that we can choose $k$ numbers from the set of $2n+1$ elements, which is ${2n+1 \choose k}$. We sum this from $k=0$ to $k=2n+1$, giving us: $$\sum_{k=0}^{2n+1} {2n+1 \choose k}=2^{2n+1}$$ Now, remember that: $${2n+1 \choose k}={2n+1 \choose 2n+1-k}$$ This means ${2n+1 \choose 2n+1}$ is a duplicate of ${2n+1 \choose 0}$, ${2n+1 \choose 2n}$ is a duplicate of ${2n+1 \choose 1}$, ${2n+1 \choose 2n-1}$ is a duplicate of ${2n+1 \choose 2}$, ..., and ${2n+1 \choose n+1}$ is a duplicate of ${2n+1 \choose n}$. Therefore, we can sum from $k=0$ to $k=n$ and then multiply that by $2$ to account for the duplicates: $$2\sum_{k=0}^{n} {2n+1 \choose k}=2^{2n+1}$$ Hopefully, you can take it from here. Good luck!