0

I would like to evaluate $ \sum_{k=0}^{\frac{n}{2}} {n\choose2k}$ - but I can't seem to find a simple expression for this sum. Would appreciate any help.

Alex
  • 1,550
  • 9
  • 14

3 Answers3

2

This is the number of subsets of $\{1, \ldots, n\}$ that have even size. If you need a further hint, this question may help.

angryavian
  • 89,882
1

Hint

$\binom{n}{r}$ is the number of subsets of $[n]=\{1,2,3, \ldots n\}$ of size $r$. So $\sum_{k=0}^{\lfloor \frac{n}{2} \rfloor}\binom{n}{2k}$ is the total number of subsets of $[n]$ with even cardinalities and that would be (about :-)) half the total number of subsets of $[n]$.

Anurag A
  • 41,067
0

You should probably write that as $$ \sum_{k=0}^{[n/2]} \binom{n}{2k}$$ otherwise the answer will depend on whether $n$ even of odd. You can equivalently write this as $\sum_{k \text{ even}, n \geq k \geq 0 } \binom{n}{k}$.

The right way to approach this is to consider $(1-1)^n + (1+1)^n$ as suggested in the comment. Expand this using the binomial theorem.

msm
  • 2,734