I've been trying to find combinatorial proofs of the following two identities:
1: $\displaystyle\sum_{i=0}^{k} \binom{n}{i} = \sum_{i=0}^{k} \binom{n-1-i}{k-i} 2^i$ with $0 \le k \le n-1$
2: $\displaystyle\binom{2m}{2n} = \sum_{k=0}^{n} \binom{2n+1}{2k+1} \binom{m+k}{2n}$
For 1: The LHS is counting the number of subsets of size at most k from a set of size n. The $2^i$ in the RHS makes me think of partitioning based on what elements can be considered from the full set then either including them or not, but I can't think of a way of doing this partition without overcounting and trying to interpret the binomial term hasn't helped.
For 2: Again, the LHS is simple enough but I'm lost on how to interpret the RHS. Just from looking at it I feel like I should be considering some parity argument but haven't come up with anything else.
Any suggestions on how to proceed? Should I be looking for a more formal bijection?
To get you started, here’s a HINT for the first identity:
Show that $\binom{n-1-i}{k-i}2^i$ is the number of subsets $A$ of $[n]=\{1,\ldots,n\}$ of cardinality at most $k$ such that $i+1\notin A$, and $|A\setminus[i]|=k-i$. That is $i+1$ is not in $A$, and $A$ has $k-i$ elements bigger than $i$.
Suppose that $A\subseteq[n]$ has at most $k$ elements, and let $d=k-|A|$. Let $i$ be the largest integer such that $|[i]\setminus A|=d$. If $d=0$, for example, this means that $i+1$ is the smallest member of $[n]$ not in $A$. If $d=1$, $i+1$ is the second-smallest member of $[n]$ not in $A$. Show that such $i$ always exists. (Clearly it’s uniquely determined by $A$ if it does exist.)
I’ll have to think further about the second one.