Power Set
Context: FIT1058_MOC Β· the set of all subsets of a set Β· size Β· refined by size via the Binomial Coefficient
Quick Revision
- π― Objective: = all subsets of β including and .
- π¦ Core Components: β binary-choice argument β .
- β‘ Key Constraint: exponential blow-up β gives over a million subsets.
π Core
1. The Power Set (All Subsets)
- Definition β β its elements are themselves sets.
- Cardinality β (exponential).
- Edge case β , size .
2. Why (Binary Choice)
- Per element β include or exclude, independent options.
- Product rule β subsets.
3. Maximum vs Maximal
- Maximum β largest size of any qualifying subset (global).
- Maximal β cannot be enlarged while keeping the property (local).
- Relation β maximum βΉ maximal, not conversely (dually minimum/minimal).
Key identities:
βοΈ Core Decision Matrix
| Notion | Meaning | Example |
|---|---|---|
| maximum | largest size anywhere | maximum clique |
| maximal | canβt be extended | maximal clique |
| minimum | smallest size | β |
| minimal | canβt be shrunk | β |
When It Flips: subsets split by size β per layer, summing to (Binomial Coefficient). Contrast the Cartesian Product: its size multiplies, whereas the power set's is exponential.
π Exam Execution Trace
Manual Execution Trace
by size:
| Step / State | Size | Subsets | |
|---|---|---|---|
| 0 (Init) | β | β | β |
| 1 | 0 | 1 | |
| 2 | 1 | 3 | |
| 3 | 2 | 3 | |
| 4 | 3 | 1 |
β οΈ Common Mistakes
- π‘ Elements of are sets β and are members; and enumerating is infeasible for large (over subsets at ).
π§ Active Recall
Prove that a set with elements has exactly subsets.
- Hint: Independent binary choice.
Answer
- Short answer: Each element is independently βinβ or βoutβ βΉ subsets by the product rule.
- Why: Edge check β gives , .
Distinguish a maximal subset from a maximum subset (clique example).
- Hint: Local vs global.
Answer
- Short answer: Maximal = canβt be enlarged; maximum = largest anywhere.
- Why: Maximum βΉ maximal β a maximal clique may be far smaller than the maximum clique.
How do the binomial coefficients relate to the power-set size?
- Hint: Layer by size.
Answer
- Short answer: subsets of each size ; disjoint layers cover .
- Why: Sum β .