My teacher showed us a proof by induction for this equation for $n\in\mathbb{N}$:
$$\sum\limits_{k=0}^n{{n}\choose{k}} = 2^n$$
In the first step, this sum is rewritten using ${{n+1}\choose{k}}={{n}\choose{k-1}}+{{n}\choose{k}}$.
However, he doesn't explain why this would be - and since he just introduced binomials coefficients, I assume it's something trivial, which I just don't see. I can't figure out why this would hold though.
I tried rewriting the binomial coefficients with ${{n}\choose{k}}=\frac{n!}{k!\cdot(n-k)!}$ when $n,k\in\mathbb{N}$ and $n\geq k$:
$${{n+1}\choose{k}}=\frac{(n+1)!}{k!\cdot(n+1-k)!}$$
$${{n}\choose{k-1}}=\frac{n!}{(k-1)!\cdot(n-k+1)!}$$
$${{n}\choose{k}}=\frac{n!}{k!\cdot(n-k)!}$$
But I can't prove:
$$\frac{(n+1)!}{k!\cdot(n+1-k)!} \stackrel{?}{=} \frac{n!}{(k-1)!\cdot(n-k+1)!} + \frac{n!}{k!\cdot(n-k)!}$$
Am I on the right track? Is there a basic idea behind this equation which makes you see it easily?
I can give you an other way of proving this without any calculus.
What is ${{n}\choose{k}}$? This is the number of ways to choose k elements among n ones, without specifying an order.
So let's have the set: A=$(a_1...a_n)$ n elements ( tennis balls per say). Let's look at one particularly: $a_i$ because it is the only red ball of the set.
The number of ways to choose k elements in A is the number of ways to choose k elements with $a_i$ in it, plus the number of ways to choose k elements without $a_i$.
For the first, since you know that among the k elements $a_i$ has to be present you can choose k-1 elements among n-1 elements ($a_i$ has already been chosen so your set is diminished of one ball, that gives n-1 elements left). This gives ${{n-1}\choose{k-1}}$
Likewise, for the second you know that $a_i$ is not part of your choosing so you have to choose k elements among n-1 elements, that is ${{n-1}\choose{k}}$
So you get the equality : ${{n}\choose{k}} = {{n-1}\choose{k-1}} + {{n-1}\choose{k}}$