What is a Power Set?
You have a set. What are all the possible subsets you could make from it?
Collect them all into one set — that’s the power set.
Symbol: or
Example
List all subsets of A:
- (empty set — always a subset)
- (the set itself — always a subset)
The power set collects them all:
The power set is a set of sets.
How Many Subsets?
For a set with elements:
Why? For each element, you have 2 choices: include it or don’t.
| Set | Elements | Subsets |
|---|---|---|
| 1 | ||
| 2 | ||
| 3 | ||
| 4 |
This is why the notation makes sense — the size is .
Larger Example
All 8 subsets:
| Size 0 | Size 1 | Size 2 | Size 3 |
|---|---|---|---|
Special Cases
Power set of empty set:
The empty set has one subset: itself. That’s .
Power set of a singleton:
Two subsets: empty set and the set itself.
Key Facts
Every power set contains:
- (the empty set is a subset of everything)
- itself (every set is a subset of itself)
So for any non-empty set A:
The empty set is a subset of A, so it’s in the power set.
A is a subset of itself, so it’s in the power set.
The Formal Definition
This reads: “The set of all S such that S is a subset of A.”
Power set = all possible subsets collected into one set.