← back to combinatorics

Bijective Proof

Applied Combinatorics (CC BY-SA) · appliedcombinatorics.org

To prove two counts are equal, build a bijection between the things they count. No algebra, no induction: if every object on the left pairs with exactly one on the right, the totals must match. It is the most honest kind of proof, because it explains why.

subset of {1,2,3} binary string {1,3} 101 {2} 010 2³ subsets ↔ 2³ strings

Counting one set two ways

Subsets of an n-element set correspond exactly to length-n binary strings: bit i says whether element i is in. There are 2n strings, so 2n subsets. Sort those subsets by size and you also get C(n,0)+C(n,1)+…+C(n,n). Two counts of one set, hence the identity.

Scheme
Neighbors