Find the Power Set {0,2,4,6}
Problem
Solution
Identify the number of elements in the set. The set
S={0,2,4,6} hasn=4 elements.Determine the total number of subsets. The power set
𝒫*(S) contains2 elements, so there are2=16 subsets.List the subsets by size, starting with the empty set
∅ Find all subsets with 1 element:
{0},{2},{4},{6} Find all subsets with 2 elements:
{0,2},{0,4},{0,6},{2,4},{2,6},{4,6} Find all subsets with 3 elements:
{0,2,4},{0,2,6},{0,4,6},{2,4,6} Find the subset with 4 elements, which is the set itself:
{0,2,4,6} Combine all subsets into a single set to form the power set.
Final Answer
Want more problems? Check here!