| 
 
 
| Question 592976:  list all the subsets of [2, 3, 5, 8]
 Answer by jim_thompson5910(35256)
      (Show Source): 
You can put this solution on YOUR website! List of all subsets of set {2,3,5,8} 
 
 {2,3,5,8}
 {2,3,5}, {2,3,8}, {2,5,8}, {3,5,8}
 {2,3}, {2,5}, {2,8}, {3,5}, {3,8}, {5,8}
 {2}, {3}, {5}, {8}
 {}
 Note: {} is the empty set.
 --------------------------------------------------------------------------------------------------------------
 If you need more help, email me at jim_thompson5910@hotmail.com
 
 Also, please consider visiting my website: http://www.freewebs.com/jimthompson5910/home.html and making a donation. Thank you
 
 Jim
 --------------------------------------------------------------------------------------------------------------
 | 
  
 | 
 |