Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 373 Bytes

File metadata and controls

12 lines (7 loc) · 373 Bytes

Power Set

Power set of a set A is the set of all of the subsets of A.

Eg. for {x, y, z}, the subsets are : {{}, {x}, {y}, {z}, {x, y}, {x, z}, {y, z}, {x, y, z}}

Power Set

References