5
$\begingroup$

I want to know if I can get some help with this proof. I tried, but I just cannot seem to get $2^{k}$. It states that,

For $k \in \mathbb{Z}_{\ge 0}$, $$\sum^{k}_{m=0}\binom{k}{m} = 2^k$$

Thank You.

  • 1
    Are you familiar with the binomial formula? Because once you know (or have proven) the binomial formula, what you want to prove should follow pretty quickly.2011-03-17
  • 2
    How do you **define** the binomial coefficients? There are many (equivalent) ways and, depending on the way you choose, the proof you want is not the same.2011-03-17
  • 0
    @MarcvanLeeuwen Based on [this meta discussion](http://meta.math.stackexchange.com/questions/10615/when-using-summation-tag-should-we-remove-sequences-and-series) I think that this should be tagged ([tag:summation]) and the tag ([tag:sequences-and-series]) should not be used. (As far as I know, the later is intended for infinite sums. Although many questions about finite sums are tagged with this tag, since they were asked before ([tag:summation]) tag was created.)2014-01-09
  • 0
    About closing as a duplicate: One of the questions specifically asks for a proof about induction, the other does not have this restriction.2014-01-09

4 Answers 4

5

The right-hand side is the number of subsets of a set with $k$ elements. The left hand side gives a sum of the number of subsets of a set with $k$ elements having $0$ elements, then $1$ element, then $2$ elements, etc., up to the subsets with $k$ elements.

Leaving that aside, this follows from applying the binomial theorem in a way that might seem like a trick. Here's another example to motivate this. If $k\geq 1$, then $${k \choose 0}-{k \choose 1}+{k \choose 2}\mp\cdots +(-1)^k{k \choose k}=0.$$ Proof Sketch: Expand $(1-1)^k$ using the binomial theorem.

You could use induction and the factorial formula for the binomial coefficients, but I do not recommend doing so. However, using induction and Pascal's identity ${k\choose {m-1}}+{k\choose m}={{k+1}\choose m}$ would work well. Consider moving down a row in Pascal's triangle to motivate the proof. Each entry from row $k$ is added twice to obtain the entries in row $k+1$, so the sum of the entries doubles.

1

Take the binomial expansion of $(1+x)^k$.

\begin{equation} (1+x)^k = \sum_{m=0}^k \binom{k}{m} x^{k-m} \end{equation}

The above expansion holds for all values of $x$ and for all $k \geq 0$. Substitute $x=1$ and you have the result.

1

You can use induction.

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

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

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

0

The LHS of the equation is counting the number of subsets of a set of $k$ elements. The RHS of the equation is a well-known formula for that.