Consider the following set of identities: ${m+1\choose 1}={m\choose 1}+1$, ${m+1\choose 2}=2\binom m 2 - {m-1\choose 2}+1$, ${m+1\choose 3}=3\binom m3-3{m-1\choose 3}+{m-2\choose 3}+1$, ...
This set of identities can be written as
$${m+1\choose k}=1+\sum_{i=0}^{k-1}(-1)^i{k\choose i+1}{m-i\choose k}\tag 1$$
or alternatively as
$$\sum_{i=0}^k(-1)^i{k\choose i}{m-i\choose k}=1$$
Interestingly, the form in $(1)$ suggests that every binomial coefficient can be written as a recurrence in only terms from its own line (ignoring the $k\choose i+1$ terms as "predetermined constants"):
$$a_{n+1}=1+\sum_{i=0}^{k-1}(-1)^i{k\choose i+1}a_{n-i}$$
What is the best way to prove these identities hold in general? The proofs for $k=1,2,3$ were very straightforward with simple factorial expansion, but even induction doesn't seem to be working in the general case.
Also, do these identities have a name?
These identities appeared as I was considering the quantity
$$\frac{x^n+y^n}{x+y}\pmod{(x+y)^k}$$
Here's an approach via generating functions (it is possible to make the proof shorter by avoiding them, but this was the straightforward approach without much cleverness).
If you have $$A(x) = a_0 + a_1x + a_2x^2 + a_3x^3 + \dots$$ and $$B(x) = b_0 + b_1x + b_2 x^2 + b_3x^3 + \dots$$ (the objects $A(x)$ and $B(x)$ are called generating functions of the two sequences) then their product $$A(x)B(x) = C(x) = c_0 + c_1x + c_2x^2 + c_3x^3+\dots$$ satisfies $$c_n = \sum_{r = 0}^{n} a_r b_{n-r}.$$
When, for some fixed $k$, the sequences are $a_n = (-1)^n\binom{k}{n}$ and $b_n = \binom{n}{k}$, we have $$A(x) = \sum_{n=0}^{\infty}(-1)^n\binom{k}{n}x^n = (1 - x)^k $$
and $$B(x) = \sum_{n=0}^{\infty}\binom{n}{k}x^n = \frac{x^k}{(1-x)^{k+1}} $$ (see here; this is a good exercise) so that their product is $$C(x) = A(x)B(x) = (1-x)^k \frac{x^k}{(1-x)^{k+1}} = \frac{x^k}{1-x} = x^k(1 + x + x^2 + \dots)$$
for which we have, for $n \ge k$, $$1 = c_n = \sum_{r=0}^{n}a_{r} b_{n-r} = \sum_{r=0}^n (-1)^r \binom{k}{r}\binom{n-r}{k} = \sum_{i=0}^k (-1)^i \binom{k}{i}\binom{n-i}{k} $$ (as $\binom{k}{r} = 0$ for $r > k$) which is what you wanted to prove.