SOLUTION: Let b={1,3,5,7,9}. List all possible subset of b.

Algebra ->  Subset -> SOLUTION: Let b={1,3,5,7,9}. List all possible subset of b.      Log On


   



Question 618671: Let b={1,3,5,7,9}. List all possible subset of b.
Answer by jim_thompson5910(35256) About Me  (Show Source):
You can put this solution on YOUR website!
List of all subsets of set {1,3,5,7,9}

{1,3,5,7,9}
{1,3,5,7}, {1,3,5,9}, {1,3,7,9}, {1,5,7,9}, {3,5,7,9}
{1,3,5}, {1,3,7}, {1,3,9}, {1,5,7}, {1,5,9}, {1,7,9}, {3,5,7}, {3,5,9}, {3,7,9}, {5,7,9}
{1,3}, {1,5}, {1,7}, {1,9}, {3,5}, {3,7}, {3,9}, {5,7}, {5,9}, {7,9}
{1}, {3}, {5}, {7}, {9}
{}

Note: {} is the empty set.