Sign In
Find the subsets of the set with zero elements, one element, two elements, three elements and four elements.
∅, { 1}, { 3}, { 5}, { 7}, { 1,3}, { 1,5}, { 1,7}, { 3,5}, { 3,7}, { 5,7}, { 1,3,5}, { 1,3,7}, { 1,5,7}, { 3,5,7}, { 1,3,5,7}
A subset of a set is also 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, 3 and 4 elements.
The only subset of any set with zero elements is the empty set. We write this using the empty set notation. ∅
{ 1}, { 3}, { 5}, { 7}
After that, we need to find all the two-elements subsets. { 1, 3}, { 1, 5}, { 1, 7}, { 3, 5}, {3, 7}, {5, 7}
Next, we need to find all the three-elements subsets. { 1, 3, 5}, { 1, 3, 7}, { 1, 5, 7}, {3, 5, 7}
The original set has 4 elements, so we can only form one subset having 4 elements, the original set itself. { 1, 3, 5, 7 }
We have a total of 16 subsets. ∅, { 1}, { 3}, { 5}, { 7}, { 1, 3}, { 1, 5}, { 1,7}, { 3,5}, { 3,7}, { 5,7}, { 1,3,5}, { 1,3,7}, { 1,5,7}, { 3,5,7}, { 1,3,5,7}