I saw this question: The number of odd size subsets is equal to the number of even size subsets but I'm trying to prove it at a different way:
I'm trying to prove that:
$$\sum_{i=0}^{\left\lceil \frac{n}{2}\right\rceil }{n \choose 2i}=\sum_{i=0}^{\left\lceil \frac{n}{2}\right\rceil }{n \choose 2i+1}$$
if $n$ is odd, I can do it with the identity: ${n \choose k}={n \choose n-k}$, because if we have odd number like $7$ we have $4$ ($=\left\lceil \frac{n}{2}\right\rceil$) pairs: $(7,0),(6,1),(5,2),(4,3)$. The left element is odd and the right one is even. So:
$${7 \choose 0}={7 \choose 7},\,{7 \choose 6}={7 \choose 1},...$$
But when I'm trying to do this about even numbers (like $8$), I can't use this method.
So my question is: What can I do at cases of even numbers?
Thank you!