Last updated on July 16th, 2025
A power set is a collection of all possible subsets, including the empty set, and the original set. It is denoted with the letter P. Cardinality refers to the number of elements in a set. In this article, we will dive deeper into the topic of power sets.
The power set is a collection of all possible subsets of a given set, including the empty set. The power set of S is written as P(S) or 2S. For example, if S =a,b, then the power set of S is:
P(S)=,a,b,a,b
We can build a power set step by step using recursion. The recursive definition is a way of defining a set where each new element is built based on the elements already in the set. The recursive definition of a finite power set S is:
For S = , P(S) = or, it can also be represented as:
If the set is empty, S = , then the only subset is the empty set itself:
P() =.
If the set is not empty, then we use the recursive algorithm of the power set.
Here, S =T{t}, which means that we add the element t to set T, then the recursive definition of power set S is:
P(S)=P(T){Xt|XP(T)}
P(S) is the power set of the new set
P(T) is the power set of the smaller set T, without the new element t
XP(T) refers to each subset X that is already in the power set of T
Xt represents a new subset for each subset X, it includes the element t.
We know the power set of A; we will use it to build the power set of S.
To do so, first take all the subsets of A; these subsets do not include x. Then, make a second copy of these subsets and add x to each of them. Finally, join both groups together. This will give us the complete power set of S. Let us take an example to understand:
Question: Build the power set of a,b:
This method can be used on any set. This method builds the power set step-by-step by adding one element at a time and expanding all existing subsets with it.
The following properties characterize a power set:
The binomial theorem helps us determine how many subsets of each size exist in a set. In a set with n elements, the number of subsets that contain k elements is given by C(n, k).
Let’s take an example to understand how the binomial theorem helps in counting subsets.
Let’s take a set S=a,b,c with 3 elements.
The power set of S includes all possible subsets from the empty set to the full set.
We can use binomial coefficients to count how many subsets exist at each level based on the number of elements in the subset:
C(3,0)=1
One subset with 0 elements, which means this is the empty subset.
C(3,1)=3
Three subsets with one element each.
C(3,2)=3
Three subsets with two elements each.
C(3,3)=1
One subset with all three elements
Now, we add all these subsets, 1+3+3+1=8
So, the power set of a 3-element set contains 23 = 8.
This leads us to the general formula
2S=k=0SS,K
If S is equal to n, then we have,
2S=2S=k=0Sn,K
Where,
N is the number of elements in a set
(n,k) counts the number of subsets with exactly k elements, and
2n gives the total number of subsets in the power set
The cardinality of a power set represents all possible subsets including the empty set and the set itself. Take, for example, the set C=x, y, z, w. This set contains 4 elements, so the cardinality of c is 4. The cardinality of its power set is 24 = 16. So the power set of C has 16 subsets.
Power Set Proof
To show that if a set A contains n elements, then its power P(A) has 2n elements. In other words, the cardinality of a finite set A with ‘n’ elements is |P(A)| = 2n.
We follow the pattern of mathematical induction for the proof of the power set.
Let's consider the case of an empty set.
Case 1: A set with no elements, n = 0
Let A = (empty set)
The only subset of the empty set is itself, so P() = .
Since there is only 1 element in the set, the cardinality of the set will be 2n = 21 = 1.
Case 2: We now assume that the rule holds for a set with n elements such that a set 2n has subsets.
Let's call this set X, now suppose
X=nP(X)=2n
Now, lets create a new set Y by adding one new element, say an+1, to set X:
Y = X U an+1
So the number of elements in Y is n + 1.
There are 2 kinds of subsets in Y: one having the new element an=1 and the other without it.
So in total: P(Y)=2n(without an+1)+2n(with an+1) =22n=2n+1
This proves that if the formula holds for n, it also holds for n + 1.
Let us apply this proof using an example,
Let X=a, b, c
Let Y=a, b, c, d
Here,
X=3, so the number of subsets of X is 23 = 8
Y=4, and we’ll prove that the number of subsets of Y is 24 = 16.
Subsets of X = {}, a,b,c,a,b,a,cb,ca,b,c
So, X has a total of 8 subsets.
Subsets of Y = {},a,b,c,a,b,a,c,b,c,a,b,c
These are 8 subsets that do not include d.
Now for subsets of Y with d = {d},a,d,b,d,c,d,a,b,d,a,c,d,b,c,d,a,b,c,d
There are 8 more subsets of Y when d is added.
Total subsets of Y = 16.
Here, 4 is the extra element in set Y.
This example confirms that if a set with n elements has 2n subsets, then adding one more element doubles the number of subsets to 2n+1.
According to the rule of set theory, if a set has n elements, then its power set will have 2n elements. An empty set is represented by or . Since it contains 0 elements, the number of subsets it has is 20 = 1.
The empty set is considered a subset of every set, including itself, even though it has no elements. So the power set of the empty set has just one subset, the empty set itself, P()= and it contains one element.
From organizing schedules in day-to-day life to working with computer logic, power sets help in the selection and grouping of items. A few real-life applications of power sets are listed below:
Survey and questionnaire analysis
When analyzing survey data with multiple options, a power set helps in modelling all possibilities of response combinations.
Database queries
In databases, power sets are used to find all possible combinations of filters or search criteria.
Circuit design in electronics
Engineers use power sets in designing circuits to evaluate all possible input combinations.
Event planning
Events require multiple activities like food, venue, music, games, etc. Power sets list every possible combination of activities to choose from. This helps event management companies in planning events accordingly.
Computer science testing and security
Power sets are used in software testing and cybersecurity to test every possible combination of features or permissions for security.
While learning about power sets, students often make small but important errors that can affect their understanding. Recognizing these mistakes can help avoid them and strengthen your grasp of the concept.
Find the power set of A = {x, y}. How many subsets are there?
P(A)=,x,y,x,y
The set has 2 elements, so the number of subsets is 2n = 22 = 4
So, the subsets are P(A)=,x,y,x,y
What is the power set of B =5?
P(B)=,5
Total subsets for B are 21 = 2
The subsets are ,5
What is the power set of the empty set C = ?
P()=
An empty set has no elements, but one subset that is the set itself. Total subsets 2n = 20 = 1.
How many subsets does the set D = a,b,c,d have?
16 subsets
Using formula 2n, here n = 4, so we get 2n = 24 = 16.
List all elements of the power set of E = {1, 2, 3}.
P(E)=,1,2,3,1,2,1,3,2,3,1,2,3
The total number of subsets will be 23 = 8. Then we list all possible subsets, P(E)=,1,2,3,1,2,1,3,2,3,1,2,3
Jaskaran Singh Saluja is a math wizard with nearly three years of experience as a math teacher. His expertise is in algebra, so he can make algebra classes interesting by turning tricky equations into simple puzzles.
: He loves to play the quiz with kids through algebra to make kids love it.