Power Sets of and
A power set of a set (written ) is the collection of every subset of , including the empty set and the set itself. For a finite set with elements, the number of subsets—and hence the size of the power set—is .2
For computational thinking, you can view “finding the power set” as choosing, for each element of , whether it is included in a subset. That yields distinct subsets.
Footnotes
-
(Power set definition) https://en.wikipedia.org/wiki/Power_set - Defines power set as the set of all subsets of a given set. ↩
-
(Number of elements in a power set) https://en.wikipedia.org/wiki/Power_set - States that if has elements, then has elements. ↩ ↩2
Power Set (Subsets) Tutorial
Let’s apply the definition carefully to two specific sets, emphasizing what counts as an element.
(i)
Here has elements, so . The subsets are obtained by including/excluding each of and .
(ii)
This set has elements as well, but note the elements are:
- one element is ,
- the other element is (a set whose only element is ).
So . The subsets of are formed by choosing whether to include the element , whether to include the element , etc.—always treating them as atomic elements when forming subsets.
Footnotes
-
(Number of elements in a power set) https://en.wikipedia.org/wiki/Power_set - States that if has elements, then has elements. ↩ ↩2
-
(Power set definition) https://en.wikipedia.org/wiki/Power_set - Defines power set as the set of all subsets of a given set. ↩ ↩2
Step-by-Step Method to Form a Power Set
- 1Step 1
List all elements of (as they appear, including any nested sets).
- 2Step 2
Compute .
- 3Step 3
For each element, decide whether it is included in the subset; this generates subsets.
Footnotes
-
(Number of elements in a power set) https://en.wikipedia.org/wiki/Power_set - States that if has elements, then has elements. ↩
-
- 4Step 4
Ensure and itself are included as subsets.
(i) Power set of
All subsets of are:
You can verify the count: subsets.
Footnotes
-
(Number of elements in a power set) https://en.wikipedia.org/wiki/Power_set - States that if has elements, then has elements. ↩
(ii) Power set of
First, write the elements of the base set explicitly:
- Element 1:
- Element 2:
Now list all subsets of by include/exclude of those two elements:
Interpretation of each subset:
- contains nothing.
- contains exactly the element .
- contains exactly the element .
- contains both elements.
Footnotes
-
(Number of elements in a power set) https://en.wikipedia.org/wiki/Power_set - States that if has elements, then has elements. ↩
Pro Tip: Nested Sets Become Elements
When forming the power set of , treat and as elements. So subsets look like or —not like unions of elements unless explicitly required.
Common Mistake: Confusing Subsets with Elements
A subset is a set; an element is something inside a set. For example, is a subset of because its only element is (the element of ), not because it “contains” directly.
Number of Subsets in These Power Sets
Both base sets have 2 elements, so each power set has subsets.
From a Set to Its Power Set
List Elements
1Write exactly (nested braces matter)."
Count Elements
2If , then ."
Enumerate Subsets
3For each element, choose include/exclude to generate all subsets."
Form the Power Set
4Collect all subsets into ."
Quick Checks and Edge Cases
Knowledge Check
What is the power set of ?