ABSTRACT
The Sum Identity, also known as the Sum of Binomial Coefficients, states that the sum of all entries in the -th row of Pascal’s Triangle is exactly . This identity provides the fundamental link between binomial expansion and the total number of subsets in a power set.
The Identity
1. Algebraic Proof
Using the Binomial Theorem, we can expand :
By substituting and :
\begin{align*} (1+1)^n &= \sum_{k = 0}^{n} \binom{n}{k}(1)^{n-k}(1)^k \\ 2^n &= \sum_{k = 0}^n \binom{n}{k} \cdot 1 \cdot 1 \\ 2^n &= \binom{n}{0} + \binom{n}{1} + \dots + \binom{n}{n} \end{align*}
2. Combinatorial Proof
We can prove this by showing that both sides of the equation count the same set of objects: the total number of binary strings of length .
- RHS (): For a binary string of length , each of the positions has 2 choices (
0or1). By the Product Rule, there are total strings. - LHS (): We can partition the set of all binary strings by their weight (the number of
1s they contain).- Strings with zero
1s: - Strings with one
1: - Strings with 1s:
- Strings with zero
INFO
By the Sum Rule, the total number of strings is the sum of these disjoint cases from to .
3. Connection to Power Sets
This identity also counts the total number of subsets of a set where :
- represents the number of ways to choose a subset of size .
- Summing from (the empty set) to (the set itself) gives every possible subset.
- Therefore, the size of the Power Set is always .
Example ()
\begin{align*} 2^4 &= \binom{4}{0} + \binom{4}{1} + \binom{4}{2} + \binom{4}{3} + \binom{4}{4}\\ 16 &= 1 + 4 + 6 + 4 + 1\\ 16 &= 16 \end{align*}
- 1 empty set
- 4 subsets of size 1
- 6 subsets of size 2
- 4 subsets of size 3
- 1 subset of size 4 (the set itself)