2

$\sum_{k\leq n}^{n} \binom{n}{k}= 2^n , n, k \in \mathbb{N}$

Im trying with mathematical induction but im stuck.

My inductive step:

$H) \sum_{k=0}^{h} \binom{h}{k}= 2^h$

$T) \sum_{k=0}^{h+1} \binom{h+1}{k}= 2^{h+1}$

For the demo:

$\sum_{k=0}^{h+1} \binom{h+1}{k} \Rightarrow \sum_{k=0}^{h} \binom{h}{k} + \sum_{k=0}^{h} \binom{h}{k-1}$

Where i can use the hypothesis in the first term, but dont know how to continue.

Wyvern666
  • 911

2 Answers2

4

$$\binom{n}{k}=\binom{n-1}{k-1}+\binom{n-1}{k}$$ is true for $n\in\mathbb{Z}_{>0}$ and $k\in\mathbb{Z}$.

Here: $$\binom{n}{k}:=0$$ if $k\notin\left\{ 0,\ldots,n\right\} $.

So: $$\sum_{k\in\mathbb{Z}}\binom{n}{k}=\sum_{k\in\mathbb{Z}}\binom{n-1}{k-1}+\sum_{k\in\mathbb{Z}}\binom{n-1}{k}=2^{n-1}+2^{n-1}=2^{n}$$

user84413
  • 27,211
drhab
  • 151,093
0

Try using this formula:

$$ \dbinom{n}{k} = \dbinom{n-1}{k-1} + \dbinom{n-1}{k} $$

Note this is the reason Pascal's triangle exists.

Addison
  • 159