Subsets Generator Help

Overview

This app generates all possible subsets of a given set.


Instruction

Enter a set in the textbox on the top between the two curly braces; use comma to separate elements. Empty elements and duplicated elements will be discarded by the program during execution. Elements are case sensitive, thus elements "A" and "a" counted as two different elements.


Example:

All subets of the set {a,b} is:
{},
{a}, {b},
{a, b}



All subets of the set {a, a} is the same as all subsets of the set {a}:
{},
{a}


All subets of the set {a, A}:
{},
{a}, {A},
{a, A}


Disclaimer: All the programs on this website are designed for educational purposes only. They are tested however mistakes and errors may still exist. By using these programs, you acknowledge that you are aware that the results from the programs may contain mistakes and errors and you are responsible for using these results. The author is not responsible for errors and results from these programs.