A set contains $2n+1$ elements. Find the subsets of the set containing atmost $n$ elements.
Since a subset may be formed by taking $0,1,2,....n$ elements , we may form a subset in the following ways $\binom{2n+1}{0}+\binom{2n+1}{1}+\binom{2n+1}{2}........+\binom{2n+1}{n} = 2^{2n+1}$ ways. But actually in answer is $2^{2n}$. Why do we divide $2^{2n+1}$ by $2$ ?