Skip to main content

Set Theory

Set Theory

Set Theory is a branch of mathematics in which we study about sets and their properties.
Georg Cantor (1845-1918), a German mathematician, initiated the concept ‘Theory of sets’ or ‘Set Theory’. He was working on “Problems on Trigonometric Series” when he encountered something that had become the most fundamental thing in mathematics. Set theory is the fundamental theory in mathematics. Without sets, it is not possible to explain relations, functions, sequences, probability, geometry etc. Apart from this, Cantor also conceptualized that some of the infinities are countable and others are uncountable. He introduced the fact that the uncountable infinite set of real numbers is larger than the countable infinite set of integers. This is known as Cantor’s diagonal argument.
Set-Theory
Let us now go ahead and learn the meaning of sets in maths.
Sets:
To understand sets, consider a practical scenario. While going to school from home, Nivy decided to note down the names of restaurants which come in between. The list of the restaurants, in the order they came, was:
List1:RA     RB     RC     RD     RE
The above mentioned list is a collection of objects. Also, it is well-defined. By well-defined, it is meant that anyone should be able to tell whether the object belongs to the particular collection or not. E. g. a stationary shop can’t come in the category of the restaurants. If collection of objects is well-defined, it is known as a set.
The objects in a set are referred as elements of the set. A set can have finite or infinite elements. While coming back from the school, Nivy wanted to confirm the list what she had made earlier. This time again, she wrote the list in the order in which restaurants came. The new list was:
List2:RE     RD     RC     RB     RA
Now, this is a different list. But is a different set? The answer is no. The order of elements has no significance in sets so it is still the same set. In mathematics, we follow some rules for representation of sets. The rules are:
  • The name of the set is denoted by upper case alphabet letters.
  • The elements or members or objects of the set are denoted by lower case alphabet letters.
  • If a belongs to A, this is represented as aA. Here, is a Greek symbol, called epsilon denotes “belongs to”. If c doesn’t belong to set A, we write it as cA.
If RE belongs to the set of restaurants denoted by R, the proper representation would be:
 RER
Similarly, to show that stationary shop SA doesn’t belong to R, proper representation would be:
SAR
Sets can be represented in two ways:
  • Roster or Tabular Form: In this form, all the elements of the set are listed, separated by commas and enclosed between curly braces { }. E.g. If set represents all the leap years between year 1995 and 2015, then it would be described using Roster form as:
A ={1996,2000,2004,2008,2012}
Now, the elements inside the braces are written in ascending order. This could be descending order or any random order. As discussed before, order doesn’t matter for a set represented in the Roster form. Also, multiplicity is ignored while representing the sets. E.g. If L represents a set which contains all the letters in the word ADDRESS , the proper Roster form representation would be
L ={A,D,R,E,S }= {S,E,D,A,R}
L≠ {A,D,D,R,E,S,S}
  • Set-builder Form: In this form, all the elements have a common property. This property is not applicable for the objects that do not belong to the set. E.g. If set S has all the elements which are even prime numbers, it is represented as:
S={ x: x is an even prime number}
where x is a symbolic representation which is used to describe the element. Any other alphabet can also be used here.
‘:’ means ‘such that’
‘{}’ means ‘the set of all’
So, S = { x:x is an even prime number } is read as ‘the set of all x such that x is an even prime number’. The roster form for this set S would be S = 2. This set contains only one element. Such sets are called singleton/unit set.
To quote an another example, if F = {p: p is a 2digit perfect square number} , the corresponding elements of the set F will be 16, 25, 36, 49, 64 and 81.
There are several symbols that are adopted for common sets. They are given in the table below:
Table 1: Symbols denoting common sets
SymbolCorresponding Set
 N·        Represents the set of all Natural numbers i.e. all the positive integers.
·        This can also be represented by Z+ .
·        Examples: 9, 13, 906, 607, etc.
 Z·        Represents the set of all integers
·        The symbol is derived from the German word Zahl, which means number.
·        Positive and negative integers are denoted by Z+ and Z respectively.
·        Examples: -12, 0, 23045, etc.
 Q·        Represents the set of Rational numbers
·        The symbol is derived from the word Quotient. It is defined as the quotient of two integers (with non-zero denominator)
·        Positive and negative rational numbers are denoted by Q+ and Q respectively.
·        Examples: 139,67 , 143, etc.
 R·       Represents the Real numbers i.e. all the numbers located on the number line.
·       Positive and negative real numbers are denoted by R+ and R respectively.
·      Examples: 4.3π,43,, etc.
 C·      Represents the set of Complex numbers.
·      Examples: 4 + 3i, i, etc.
Sets are used to describe one of the most important concepts in mathematics i.e. functions. Everything what you observe around you, is achieved with mathematical models which are formulated, interpreted and solved by functions. To learn more about these interesting concepts, visit www.byjus.com. To watch videos and understand the concepts, download Byju’s-The Learning App from Google Play Store.

Comments

Popular posts from this blog

OFFSET in Computer Science

OFFSET in Computer Science In the post, We will understand what is the meaning of OFFSET in computer science with an example. In computer science offset comes picture at may place like packing a data structure, encoding the data etc in some standard protocol so that other parties can deserialise it and understand the data. We will understand its important how does it work with example. suppose we have a data structure for a student like { name:string[20] roll: int[4] course: string[25] batch: int[4] } We want to serialise below student data  { name:"Amit Gupta" roll: 1234 course:Computer Science" batch: 2018 } Our protocol follow the rule that we will insert a value and if space will remain empty we will fill it with $ for example length of "Amit Gupta" is 10 but standard size is 20 so will fill 10 $ after "Amit Gupta". So serialisation of above data will be Amit Gupta$$$$$$$$$$1234Computer Sc...

Variable In C

Variable Like any other programming language in C programming language, we use a variable to store value, a value is any data like a number a or a character. In this post, we will learn about datatype of C programming language. Type Of Variable In C In this section, we will discuss how to store the following type of variable in C How to store an integer in C? How to store a float in C? How to store a double in C? How to store a long in C? How to store a character in C? As we already discussed that variable used to store data so that we can use it of other computation, for example, suppose we want to calculate the sum of two number then we have to store these two numbers first only after that we can use these two stored value to compute the sum. The entity that used to store a value called variable. What does it mean is suppose we tell a variable to store a number whose value is 5, the variable will place this number 5 in memory and we can variable in...

Clique in Graph

Clique in Graph In this tutorial, we will learn about the clique in the graph theory. Clique In graph theory, a clique is a subset of vertices of an undirected graph such that every two distinct vertices in the clique are adjacent. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Supplementary angles

Supplementary angles Supplementary angles  are two angles with a sum of  180 ^\circ 1 8 0 ∘ 180, degree . A common case is when they lie on the same side of a straight line.