Power Set Calculator
Count the subsets (power set size) of a set with n elements.
The power set is the set of all subsets, including the empty set and the set itself.
The math behind it
A set of n elements has 2ⁿ subsets, because each element is either in or out of a given subset. Proper subsets exclude the set itself, giving 2ⁿ − 1.
Worked example
A set with 4 elements has 2⁴ = 16 subsets.
FAQ
Is the empty set counted?
Yes — the empty set is a subset of every set.