Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

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