166k views
4 votes
{red,blue,yellow} find all of the subsets

User Qi Luo
by
5.3k points

1 Answer

7 votes

Answer:

An empty subset would still be a subset

{}

Then let's pick one at a time

{red}

{blue}

{yellow}

Then in pairs

{red, blue}

{red, yellow}

{blue, yellow}

and finally, everything goes in!

{red, blue, yellow}

User Girish KG
by
4.8k points