Sign In
Find the subsets of the set with zero elements, one element, two elements, three elements, and four elements.
∅, { a}, { e}, { i}, { o}, { a, e }, { a, i }, { a, o }, { e, i }, { e, o }, { i, o }, { a, e, i}, { a, e, o}, { a, i, o}, { e, i, o}, { a, e, i, o}
A subset of a set is also a set. The requirement is that all elements in the subset are also elements of the original 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. ∅
{a}, {e}, {i}, {o}
Next, we need to find all the two-element subsets. { a, e }, { a, i }, { a, o }, {e, i }, {e, o }, {i, o}
After that, we need to find all the three-element subsets. {a, e, i }, {a, e, o }, {a, i, o }, {e, i, o }
The original set has four elements, so we can only form one subset having 4 elements: the original set itself. { a, e, i, o }
We have a total of 16 subsets. ∅, { a}, { e}, { i}, { o}, { a, e }, { a, i }, { a, o }, { e, i }, { e, o }, { i, o }, { a, e, i}, { a, e, o}, { a, i, o}, { e, i, o}, { a, e, i, o}