Access free live classes and tests on the app
Download
+
Unacademy
  • Goals
    • AFCAT
    • AP EAMCET
    • Bank Exam
    • BPSC
    • CA Foundation
    • CAPF
    • CAT
    • CBSE Class 11
    • CBSE Class 12
    • CDS
    • CLAT
    • CSIR UGC
    • GATE
    • IIT JAM
    • JEE
    • Karnataka CET
    • Karnataka PSC
    • Kerala PSC
    • MHT CET
    • MPPSC
    • NDA
    • NEET PG
    • NEET UG
    • NTA UGC
    • Railway Exam
    • SSC
    • TS EAMCET
    • UPSC
    • WBPSC
    • CFA
Login Join for Free
avtar
  • ProfileProfile
  • Settings Settings
  • Refer your friendsRefer your friends
  • Sign outSign out
  • Terms & conditions
  • •
  • Privacy policy
  • About
  • •
  • Careers
  • •
  • Blog

© 2023 Sorting Hat Technologies Pvt Ltd

Watch Free Classes
    • Free courses
    • JEE Main 2024
    • JEE Main 2024 Live Paper Discussion
    • JEE Main Rank Predictor 2024
    • JEE Main College Predictor 2024
    • Stream Predictor
    • JEE Main 2024 Free Mock Test
    • Study Materials
    • Notifications
    • JEE Advanced Syllabus
    • JEE Books
    • JEE Main Question Paper
    • JEE Coaching
    • Downloads
    • JEE Notes & Lectures
    • JEE Daily Videos
    • Difference Between
    • Full Forms
    • Important Formulas
    • Exam Tips
JEE Exam » JEE Study Material » Mathematics » Power Set

Power Set

Know all about Power Set-definition, cardinality of power set, functions with Examples and get an edge in competitive exams right away.

Table of Content
  •  

Introduction

Relations, Functions, and Power set is the topic of Power Set. It is one of the most important topics for the examination. This chapter will deal with the different properties of power sets and some questions based on them.  In simple terms, A collection of all subsets of set A is called the set of the set A for a particular set A. A power set of set A is denoted by P(A) or 2A. 

So, go through the complete notes of this chapter to get full marks in the question of this chapter in IIT JEE Examinations. 

Power Set

A collection of all subsets of set A is called the power set of the set A for a particular set A. A power set of set A is denoted by P(A) or 2A

P(A)= {x/x ∈ A}

Lets us take an example:-

P(o)={o}

A= {a}, P(A)={o,{a}}

B= {a,b}, P(B)= {o,{a},{b},{a,b}}

C={a,b,c}, P(C)={o,{a}, {b}, {c},{a,b},{b,c},{a,c}{a,b,c}}

This is the reason why the power set of A is sometimes represented by 2A.

In Set A, we have only 1 element.

Therefore, P(A) has 2 =2 element

In Set B, we have 2 components.

Therefore, P(B) has a square of 2=4.

Therefore, if we have n elements in Set A, P(A) must have 2n elements.

What do you mean by Cardinality of power set?

The phrase cardinality means the number of cardinal members in a set. Cardinality can be finite (a non-negative integer) or infinite, and it is denoted as n(A) as the cardinal number of A.

For example: we have a set,

A={a,e,i,o,u}

n(a)=5

B-{letter of word “floor”}

n(a)={f,l,o,r}

While calculating or finding the cardinal number of the set, we omit the repetition of the elements. So, in this case, the cardinal number of B, i.e. n(B), will be equal to 4.

What is the Cardinal number 0?

Zero (0) is not a cardinal number, since it means nothing.

What are the Properties of a Power Set?

The power set is the set that has a list of all the subsets of a given set. The power set that has represented by P(A) with ‘n’ objects or elements has the following properties:

  • Power set defines the empty set of definite elements 
  • The power set of a blank set has only 1 element
  • In Sets, a Finite number of elements is finite. Let’s take an example, where set P = {e,f,g}, here, the power of sets is countable
  • The power set of an infinite set has an infinite number of subsets
  • It can be much greater than the real set
  • The number of objects or elements consist in a power set of P is 2n, here n denotes number of objects or elements present  in set A
  • For the natural numbers set, we could do one-to-one mapping of the final or resultant set, P(A), with the natural numbers
  • P(A)  of sets, when operated with a union of sets, the intersection of sets & complement of sets, represents the concept of Boolean Algebra

Describe Power Set of Empty Set.

The empty set had 0 or void elements. So, the power set of a void or empty set { }, can be described as;

  • A set consist void set
  • It consists of null or zero elements
  • The void set or empty set is the subset

If the number of elements in a set is ‘n’, then there will be 2n elements in the power set. The empty set is a set with no elements. It is denoted by { } or the symbol Ø. This implies, { } is a subset of every set. An empty set does not consist of any element. Therefore, the void or empty set’s power set is an empty set only.

Above, we have learned that a void or empty set does not contain any elements, this implies the power set of an empty set will consist of 20 elements. Here, the void or empty set’s power set is an empty set with one object, i.e., 20 = 1. So, P(E) = {}.

What is a Recursive Algorithm?

A recursive algorithm is called recursive if it solves a problem by decreasing it to an instance of a similar problem with a smaller input. 

In other words, an algorithm is said to be recursive if the same algorithm is invoked in the body.

Give a recursive algorithm for computing the greatest common divisor of the two non-negative integers a and b with a,b.

Procedure gcd (a,b: non negative integers, a<b)

If a=0 then return b

Else return gcd (b mod a,a)

{output is gcd (a,b)}

Let’s use a recursive algorithm for finding, where n is a non-negative integer.

Procedure factorial (n: non-negative integer)

If n=o,invoked return 1

Else return n: factorial (n-1)

{output is n!)

Let’s use a recursive algorithm for finding an, where a is a non-zero real number and n is a non-negative integer.

Procedure power i.e. an (a is non zero real number, n is a non-negative integer)

If n=0, then return 1

Else return a,=. Power (a, n-1)

{output is an}

Types of Recursion Algorithms

There are mainly two types of Recursion Algorithms:

Direct Recursion Algorithms: Algorithm A is said to ve direct recursive if it calls itself.

Indirect Recursion Algorithms: The algorithm is called Indirect Recursion if it calls another algorithm which in turn is called A.

Every recursive algorithm has two elements, i.e., Base case where the statement solves the problem, and the recursive function must have a base case. Another is a General case where each call reduces the size of the problem. The rest of the function is known as the general case. 

Conclusion

In the above, we have studied the properties, functions, and types of Relations.  In simple terms, A collection of all subsets of set A is called the power set of the set A for a particular set A. A power set of set A is denoted by P(A) or 2A. This chapter is the core foundation for another chapter like sets, complex numbers and functions. 

The relation is also important from the examination point of view and in the 2019 IIT JEE examination there are around 3-4 questions asked on this topic. So, go thoroughly through the notes to secure all marks from this chapter in the next examination. 

faq

Frequently Asked Questions

Get answers to the most common queries related to the IIT JEE Examination Preparation.

What exactly is a Power Set?

Ans. A power set is a set that contains all of the subsets of a given set as well as the empty set. For instance, if...Read full

What is an Empty Set's Power Set?

Ans. An empty set is one that has no items. The empty set is always an element of a power set. As a result, the powe...Read full

The Notation for a Power Set is as follows:

Ans. A power set is indicated by the letter P in the alphabet (Set Name). For example, if set B =  {1,2,3}, then th...Read full

How Do You Determine a Set's Power Set?

Ans. To discover a set’s power set, write down all of its subsets as well as the empty set. For example, if se...Read full

Ans. A power set is a set that contains all of the subsets of a given set as well as the empty set. For instance, if set A = {a,b}, then the power set of A is, { {}, {a}, {b}, {a,b}}.

Ans. An empty set is one that has no items. The empty set is always an element of a power set. As a result, the power set of an empty set is nothing more than an empty set. It just contains one component.

Ans. A power set is indicated by the letter P in the alphabet (Set Name). For example, if set B =  {1,2,3}, then the power set of set B is indicated by the letter P (power set of B) (B).

Ans. To discover a set’s power set, write down all of its subsets as well as the empty set. For example, if set S ={ p,q,r}, then the power set of S, P(S), =, { {}, {p},{q},{r},{p,q},{q,r},{p,r},{p,q,r} }.

Crack IIT JEE with Unacademy

Get subscription and access unlimited live and recorded courses from India’s best educators

  • Structured syllabus
  • Daily live classes
  • Ask doubts
  • Tests & practice
Learn more

Notifications

Get all the important information related to the JEE Exam including the process of application, important calendar dates, eligibility criteria, exam centers etc.

Allotment of Examination Centre
JEE Advanced Eligibility Criteria
JEE Advanced Exam Dates
JEE Advanced Exam Pattern 2023
JEE Advanced Syllabus
JEE Application Fee
JEE Application Process
JEE Eligibility Criteria 2023
JEE Exam Language and Centres
JEE Exam Pattern – Check JEE Paper Pattern 2024
JEE Examination Scheme
JEE Main 2024 Admit Card (OUT) – Steps to Download Session 1 Hall Ticket
JEE Main Application Form
JEE Main Eligibility Criteria 2024
JEE Main Exam Dates
JEE Main Exam Pattern
JEE Main Highlights
JEE Main Paper Analysis
JEE Main Question Paper with Solutions and Answer Keys
JEE Main Result 2022 (Out)
JEE Main Revised Dates
JEE Marking Scheme
JEE Preparation Books 2024 – JEE Best Books (Mains and Advanced)
Online Applications for JEE (Main)-2022 Session 2
Reserved Seats
See all

Related articles

Learn more topics related to Mathematics
Zero Vector

A zero vector is defined as a line segment coincident with its beginning and ending points. Primary Keyword: Zero Vector

ZERO MATRIX

In this article, we will discuss about the zero matrix and it’s properties.

YARDS TO FEET

In this article we will discuss the conversion of yards into feet and feets to yard.

XVI Roman Numeral

In this article we are going to discuss XVI Roman Numerals and its origin.

See all
Access more than

10,505+ courses for IIT JEE

Get subscription

Trending Topics

  • JEE Main 2024
  • JEE Main Rank Predictor 2024
  • JEE Main Mock Test 2024
  • JEE Main 2024 Admit Card
  • JEE Advanced Syllabus
  • JEE Preparation Books
  • JEE Notes
  • JEE Advanced Toppers
  • JEE Advanced 2022 Question Paper
  • JEE Advanced 2022 Answer Key
  • JEE Main Question Paper
  • JEE Main Answer key 2022
  • JEE Main Paper Analysis 2022
  • JEE Main Result
  • JEE Exam Pattern
  • JEE Main Eligibility
  • JEE College predictor
combat_iitjee

Related links

  • JEE Study Materials
  • CNG Full Form
  • Dimensional Formula of Pressure
  • Reimer Tiemann Reaction
  • Vector Triple Product
  • Swarts Reaction
  • Focal length of Convex Lens
  • Root mean square velocities
  • Fehling’s solution
testseries_iitjee
Predict your JEE Rank
.
Company Logo

Unacademy is India’s largest online learning platform. Download our apps to start learning


Starting your preparation?

Call us and we will answer all your questions about learning on Unacademy

Call +91 8585858585

Company
About usShikshodayaCareers
we're hiring
BlogsPrivacy PolicyTerms and Conditions
Help & support
User GuidelinesSite MapRefund PolicyTakedown PolicyGrievance Redressal
Products
Learner appLearner appEducator appEducator appParent appParent app
Popular goals
IIT JEEUPSCSSCCSIR UGC NETNEET UG
Trending exams
GATECATCANTA UGC NETBank Exams
Study material
UPSC Study MaterialNEET UG Study MaterialCA Foundation Study MaterialJEE Study MaterialSSC Study Material

© 2025 Sorting Hat Technologies Pvt Ltd

Unacademy
  • Goals
    • AFCAT
    • AP EAMCET
    • Bank Exam
    • BPSC
    • CA Foundation
    • CAPF
    • CAT
    • CBSE Class 11
    • CBSE Class 12
    • CDS
    • CLAT
    • CSIR UGC
    • GATE
    • IIT JAM
    • JEE
    • Karnataka CET
    • Karnataka PSC
    • Kerala PSC
    • MHT CET
    • MPPSC
    • NDA
    • NEET PG
    • NEET UG
    • NTA UGC
    • Railway Exam
    • SSC
    • TS EAMCET
    • UPSC
    • WBPSC
    • CFA

Share via

COPY