Back

Solution: 2015 Fall Midterm - 6

Author: Michiel Smid

Question

What does $$ \sum_{k=1}^{m} {m \choose k} $$ count?
(a)
The number of bitstrings of length $m$ having exactly $k$ many 1s.
(b)
None of the above.
(c)
The number of non-empty subsets of a set of size $m$.
(d)
The number of subsets of a set of size $m$.

Solution

Let’s just write out the first couple I guess

  • We choose 1 element from m elements = $\binom{m}{1}$
  • We choose 2 elements from m elements = $\binom{m}{2}$
  • ...
  • We choose m elements from m elements = $\binom{m}{m}$

Thus, $\sum_{k=1}^{m} {\binom{m}{k}}$ counts the number of ways to choose k elements from m elements for all k from 1 to m