Power Set
BasisPrerequisites
Every set carries a hidden companion: the set of all its subsets. This companion is called the power set, and it is always strictly larger than the original set — even for infinite ones. Power sets appear in combinatorics, logic, topology, and computer science, so understanding them early pays dividends across many subjects.
Definition
Let be a set. The power set of , written , is the set whose elements are exactly the subsets of :
The elements of are themselves sets — this is what makes the power set feel unusual at first. Two subsets are always guaranteed to be in for any :
- , because the empty set is a subset of every set.
- , because is always a subset of itself.
Building the power set step by step
Let . You can enumerate all subsets by grouping them by size:
| Size | Subsets |
|---|---|
| 0 | |
| 1 | , , |
| 2 | , , |
| 3 |
Therefore:
Count the elements: there are of them.
Cardinality of the power set
For a finite set with elements,
Why ? For each of the elements in , you face a binary choice: include it in the subset or leave it out. The total number of distinct ways to make all choices is
This is why is also written .
Checking the example. , so . That matches the eight subsets listed above.
A few small cases worth knowing:
| | | Example | |-------|--------------------|---------| | | | | | | | | | | | | | | | (as above) | | | | — |
Notice that has exactly one element (the empty set itself), not zero.
The binary string viewpoint
Each subset corresponds to a characteristic function that marks which elements of are in :
For , ordering the elements as gives a bijection between and binary strings of length 3:
| Subset | Binary string |
|---|---|
There are exactly binary strings of length 3, which independently confirms equation .
This bijection is the deeper reason for the notation : is the set , and is the set of all maps from to .
Power sets of infinite sets
For infinite sets, equation no longer applies directly — but the spirit survives. Cantor’s theorem states that for any set , there is no surjection from onto . In particular:
in the sense that there is an injection (send each to ) but no bijection. The power set is always strictly larger than the original set, even when both are infinite.
Summary
- The power set is the set of all subsets of ; its elements are sets.
- It always contains and itself.
- For a finite set, — one subset per binary choice of inclusion.
- Each subset corresponds to a binary string of length , giving a bijection ; hence the alternative notation .
- Cantor’s theorem: for any set , is strictly larger than — there is no surjection .