Problema Solution
List all possible subsets of the given set. Which one is correct?
I = {7, 8}
{7}, {8}, {7, 8}
Ø, {7, 8}
Ø, {7}, {8}
Ø, {7}, {8}, {7, 8}
{7}, {8}
Answer provided by our tutors
the one with null set, 7, 8, and (7,8)
Null set is always a subset. Each element of the set is a subset. The set is itself a subset.