Answer:
a) {{}, {a}}.
b) {{}, {a}, {b}, {a, b}}.
c) {{}, {1}, {2}, {1, 2}, {3}, {1, 3}, {2, 3}, {1, 2, 3}, {4}, {1, 4}, {2, 4}, {1, 2, 4}, {3, 4}, {1, 3, 4}, {2, 3, 4}, {1, 2, 3, 4}}.
Explanation:
The power set of a set is the set of all subset of the set in question. The number of power sets (including the empty set) of a set with
(where
) unique elements is
.
In other words, there shall be
- 2 items in the power set of a),
- 4 items in the power set of b), and
- 16 items in the power set of c).
This explanation shows how to find the power set using binary numbers (only 0 and 1.) (Credit: Mathsisfun.)
a)
List all the binary numbers that are equivalent to decimals ranging from 0 to
.
.
Reverse the original set. Each digit in the binary number corresponds to a member of the original set (i.e. a letter in a) and b) or a number in c).) 0 means that the element is absent in the subset and 1 means that the element is present.
.
The power set of a) thus contains:
b)
Similarly, list all the binary numbers that are equivalent to decimals ranging from 0 to
.
.
.
The power set of b) thus contains:
c)
Similarly, list all the binary numbers that are equivalent to decimals ranging from 0 to
.
.
.
The power set of c) thus contains:
- {},
- {1},
- {2},
- {1, 2},
- {3},
- {1, 3},
- {2, 3},
- {1, 2, 3}
- {4},
- {1, 4},
- {2, 4},
- {1, 2, 4},
- {3, 4},
- {1, 3, 4},
- {2, 3, 4}, and
- {1, 2, 3, 4}.