Question 805266
List all possible subsets of given set.
A={5,6,8}
-------------
no elements: empty set
1 element: 5 ; 6  ; 8
2 elements: 5,6 ; 5,8 ; 6,8
3 elements: 5,6,8
=========================
Notice that there are 2^3 = 8 subsets
=========================
Cheers,
Stan H.
================