Skip to main content

The basics of set theory

Set Theory:

The concept:

Set theory is the mathematical theory of well-defined collections of objects. Each of those objects is called a member, or an element, of the set.
The elements or members of a set can be anything: numbers, people, letters of the alphabet, other sets, and so on.
There are, finite, infinite or even empty sets as we’ll see later.
In principle, specifying a finite set can be done by an explicit list of its members, but specifying infinite sets requires a rule or pattern to indicate membership; for example, the ellipsis in {0, 1, 2, 3, 4, 5, 6, 7, …} indicates that the list of natural numbers ℕ goes on forever.
The empty (or void, or null) set, symbolized by {} or Ø, contains no elements at all. Nonetheless, it has the status of being a set (this is one the axioms of set theory).

More on sets:

The notion of a set is so simple that it is usually introduced informally, and treated as self-evident. In set theory, however, as is usual in mathematics, sets are given axiomatically so their existence and basic properties are postulated by the appropriate formal axioms. The axioms of set theory imply the existence of a set-theoretic universe so rich that all mathematical objects can be interpreted as sets. Also, the formal language of pure set theory allows one to formalize all mathematical notions and arguments. This is why set theory has become the standard foundation for mathematics, as every mathematical object can be viewed as a set.

Notation :

In mathematics, sets are usually described using ”{}” and inside these curly brackets is a list of the elements or a description of the elements of the set. An element of a set is described as follows, for example: If a is an element of a set A, we use the notation a ∈ A and often say ”a in A” instead of ”a an element of A”. The notation a ∉ A indicates that a is not an element of A and is often read as ”a is not in A”.

some short history:

In the late 19th century, a german mathematician named Georg Cantor (1845–1918) developed the theory of sets. This theory emerged from his proof of an important theorem in real analysis. In this proof, Cantor introduced a process for forming sets of real numbers that involved an infinite iteration of the limit operation. Cantor’s novel proof led him to a deeper investigation of sets of real numbers and to his theory of abstract sets. Cantor’s creation now spread through all of mathematics and offers a versatile tool for exploring concepts that previously were considered to be inexpressible, such as infinity and infinite sets.

Between the years 1874 and 1897,Cantor fiercely published articles as his abstract set theory gradually evolved, and became a mathematical discipline. However he was met with broad criticism coming from the mathematicians of his time. Once applications to analysis began to be found, however, attitudes began to change, and by the 1890s Cantor’s ideas and results were gaining acceptance. By 1900, set theory was recognized as a distinct branch of mathematics.

Comments

Popular posts from this blog

Personality Profile #1 | George Boole

Boole and the Algebra of Logic: George Boole (1815–1864) was a British mathematician and he’s considered to be the inventor of The algebra of logic, which is a system showing the underlying mathematical structure of logic. Boole proposed that logical propositions should be expressed as algebraic equations. The algebraic manipulation of the symbols in the equations provides a fail-safe method of logical deduction, i.e. logic can be reduced to algebra. He replaced the operation of multiplication by the word AND and addition by the word OR. The symbols in the equations can stand for collections of objects (sets) or statements in logic. For example: if x is the set of all green cars and y is the set of all big cars, then x+y is the set of all cars that are green or big, and xy is the set of all cars that are green and big. I...

The Universe of Discourse

Relational Algebra Universe of discourse: When I started getting into database logic, I often came across the expression “universe of discourse”. When I tried to understand what exactly it is really, most answers I found referred to it as “a set”. Well it didn’t help much to me understanding one concept by naming it another. So after studying the subject thoroughly, here’s what i found : The universe of discourse is at its core really is a set (wait...what?...but..), but before we dive right into it let's take a step back for a second: the term “universe of discourse generally refers to a collection of objects being discussed in a specific discourse. The concept universe of discourse is generally attributed to De morgan (1846) but the name was used for the first time by George boole (1854). ( boole's definition ). So now after we know that a universe is a “collection” so to speak, let’s take it up a notch. To understand best what the universe...

Add Login with Google to your Laravel project using socialite

Laravel Social_login with google: In this tutorial we’re going to add authentication via Google to a Laravel app. We’re going to use Socialite and start from scratch. 1. Create Laravel app  Create a new laravel app with a database and get everything up and running. Click here for a guide on how to create a Laravel app from scratch  2. Install Socialite  Install socialite by running the following command on the command line.  composer require laravel/socialite If you want to learn more about socialite  click here . 3. Configure Laravel  Once you have your project up and running, it is time to start our project. First add credentials to config/services.php. Socialite supports Facebook, Twitter, LinkedIn, Google, GitHub and Bitbucket. Other providers require packages from the community, which are all listed here . These providers follow the OAuth 2.0 spec and therefore require a client_id , client_secret and redirect url. ...