Differences between revisions 2 and 3
Revision 2 as of 2026-02-09 18:11:26
Size: 597
Comment: Alternate expression
Revision 3 as of 2026-02-09 18:13:42
Size: 665
Comment: Cardinality
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
It can be proven that if ''|A| = n'', then ''|𝒫(A)| = 2^n^''.

Power Set

A power set is the set of all subsets.


Description

Consider a set A = {x,y,z}. There exist 8 unique subsets of A, including the empty set and A itself.

  1. { } a.k.a. Ø

  2. {x}

  3. {y}

  4. {z}

  5. {x y}

  6. {x z}

  7. {y z}

  8. {x y z}

The set of these subsets is called the power set of A. This is notated as 𝒫(A) (note the calligraphic P) and it can be expressed as {B | B ⊆ A}.

It can be proven that if |A| = n, then |𝒫(A)| = 2n.


CategoryRicottone

Analysis/PowerSet (last edited 2026-03-04 16:57:18 by DominicRicottone)