Sign In
Find the subsets of the set with zero elements, one element, two elements, and three elements.
∅, {red}, {blue}, {yellow}, {red, blue}, {red, yellow}, {blue, yellow}, {red, blue, yellow}
A subset of a set The requirement is that all elements in the subset are also elements of the set. We can list all the subsets starting with the ones having 0 elements, followed by 1, 2, and 3 elements.
There are 3 elements in our original set. We can use each of these to form the single element subsets. {red}, {blue}, {yellow}
Next, we need to find all the two-elements subsets. {red, blue}, {red, yellow}, {blue, yellow}
The original set has 3 elements, so we can only form one subset having 3 elements, the original set itself. {red, blue, yellow}
We have a total of 8 subsets. & ∅, {red}, {blue}, {yellow}, &{red, blue}, {red, yellow}, {blue, yellow}, & {red, blue, yellow}