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.
-
1$$(1-1)^n+(1+1)^n=?$$ – lab bhattacharjee Nov 23 '18 at 19:27
-
1Is $n{{}}$ even? – Angina Seng Nov 23 '18 at 19:27
3 Answers
This is the number of subsets of $\{1, \ldots, n\}$ that have even size. If you need a further hint, this question may help.

- 89,882
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]$.

- 41,067
-
Note that small $n$ needs special treatment (hence the smiley) – Hagen von Eitzen Nov 23 '18 at 20:07
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.

- 2,734