Subset Calculator
Count how many subsets and k-element subsets a set has.
Count the subsets of a set, either in total or of a specific size.
The math behind it
A set of n elements has 2ⁿ subsets in total. The number with exactly k elements is the binomial coefficient C(n, k).
Worked example
A 5-element set has 32 subsets; 10 of them have exactly 2 elements.
FAQ
What is a proper subset?
A subset that is not equal to the original set — there are 2ⁿ − 1 of them.