The power set is a set which includes all the subsets including the empty set and the original set itself. It is also a type of sets. If set A = {x,y,z} is a set, then all its subsets {x}, {y}, {z}, {x,y}, {y,z}, {x,z}, {x,y,z} and {} are the elements of powerset, such as:
Power set of A, P(A) = {x}, {y}, {z}, {x,y}, {y,z}, {x,z}, {x,y,z} and {}
Where P(A) denotes the powerset.
Let us understand the concept with the help of examples and properties.
Table of contents: |
Definition
In set theory, the power set (or powerset) of a Set A is defined as the set of all subsets of the Set A including the Set itself and the null or empty set. It is denoted by P(A). Basically, this set is the combination of all subsets including null set, of a given set.
How is Power set Calculated?
If the given set has n elements, then its Power Set will contain 2n elements. It also represents the cardinality of powerset.
Example
Let us say Set A = { a, b, c }
Number of elements: 3
Therefore, the subsets of the set are:
{ } which is the null or the empty set
{ a }
{ b }
{ c }
{ a, b }
{ b, c }
{ c, a }
{ a, b, c }
The power set P(A) = { { } , { a }, { b }, { c }, { a, b }, { b, c }, { c, a }, { a, b, c } }
Now, the Power Set has 23 = 8 elements.
Notation
The number of elements of a power set is written as |A|, If A has n elements then it can be written as
Properties
- It is much larger than the original set.
- The number of elements in the power set of A is 2n, where n is the number of elements in set A
- The powerset of a countable finite set is countable.
- For a set of natural numbers, we can do one-to-one mapping of the resulted set, P(S), with the real numbers.
- P(S) of set S, if operated with the union of sets, the intersection of sets and complement of sets, denotes the example of Boolean Algebra.
Power Set of Empty Set
An empty set has zero elements. Therefore, powerset of an empty set{ }, can be mentioned as;
- A set containing a null set.
- It contains zero or null elements.
- The empty set is the only subset.
Recursive Algorithm
A recursive algorithm is used to generate the powerset P(S) of any finite set S.
The operation F (e, T) is defined as
F (e, T) = { X ∪ {e} | X ∈ T }
This returns each of the set X in T that has the element x.
If Set S = { }, then P(S) = { { } } is returned.
If not, the following algorithm is followed.
If e is an element in Set S, T = S {e} such that S { e } forms the relative complement of the element e in set S, the power set is generated by the following algorithm:
P(S) = P(T) ∪ F ( e, P(T))
To conclude, if the set S is empty, then the only element in the power set will be the null set. If not, the powerset will become the union of all the subsets containing the particular element and the subsets not containing the particular element.
How is Power-Set Related to Binomial Theorem
It is closely related to the binomial theorem in terms of the notation.
Let us consider a set of three elements S = { a, b, c }
Number of subsets with zero elements (the null or the empty set) = 1
Number of subsets with one element (the singleton subsets) = 3
Number of subsets with two elements (the complements of singleton subsets) = 3
Number of subsets with three elements (the actual set) = 1
From the above relationship we can calculate |2s| as follows:
|2s| = \(\sum_{k=0}^{|s|}(^{|s|}_{k})\)
If |S| = n then,
|2s| = 2n = \(\sum_{k=0}^{n}(^{n}_{k})\)
This is the relationship between a power-set and the binomial theorem.
Problems and Solutions
Q.1: Find the power set of Z = {2,7,9} and total number of elements.
Solution: Given, Z = {2,7,9}
Total number of elements in powerset = 2n
Here, n = 3 (number of elements in set Z)
So, 23 = 8, which shows that there are eight elements of power set of Z
Therefore,
P(Z) = {{}, {2}, {7}, {9}, {2,7}, {7,9}, {2,9}, {2,7,9}}
Q.2: How many elements are there for the power set of an empty set?
Solution: An empty set has zero elements.
Therefore, no. of elements of powerset = 20 = 1
Hence, there is only one element of the powerset which is the empty set itself.
P(E) = {}
Download BYJU’S – The Learning App and discover innovative ways to learn science and maths.
Related Articles
Union Of Sets And Venn Diagram Examples | Set Theory Symbols |
Set Operations : Intersection And Difference Of Two Sets | Types Of Sets |
Frequently Asked Questions – FAQs
What is the power set?
How many sets are there in a power set?
No. of sets in P(S) = 2n, where n is the number of elements in set S.
What is the power set of an empty set?
What are the elements of powerset?
What is the power set of {1,2,3}?
Power set of A, P(A) = {{}, {1}, {2},{3},{1,2},{2,3},{1,3},{1,2,3}}
So you can see there are 8 elements of P(A).