Pages

Euclid's theorem on prime numbers


Continuing with our story about prime numbers, today we will prove that there exists an infinite number of primes. This is called the Euclid's theorem on prime numbers. This theorem has a very simple proof but it is probably one of the most beautiful proofs ever in mathematics.


Prime numbers


Today we will learn about prime numbers - a basic building block of arithmetic.

A prime number is a natural number greater than 1 and has no divisors other than 1 and itself. For example, the numbers 2, 3, 5, 7, 11, 13 are prime numbers. The number 9 is not a prime number because it is divisible by 3. The number 2012 is not a prime number because it is divisible by 2.


The Fermat's point of a triangle II

In the previous post, we have analyzed the Fermat's problem, the problem of finding a point $M$ for a given triangle $ABC$ such that $MA + MB + MC$ is the minimum.
the Fermat's problem: find $M$ so that $MA + MB + MC$ is minimum

The Fermat's point of a triangle


In previous posts about modulo, we learn about the mathematician Fermat and his famous problem $$x^n + y^n = z^n.$$

Today, we will look at a geometry problem that bears his name. As we already know, Fermat was not a professional mathematician, but was a lawyer. He was doing math probably just for fun and most of his achievements that we know of today originated from his letters to his friends and also from his occasional writings on the margin of books that he read. The most famous is, of course, the problem $x^n + y^n = z^n$ and his note "I have found a beautiful proof but there is not enough space" that he wrote on the margin of the book by Diophantus.

The problem that we investigate today was raised in a letter that Fermat sent to an Italian mathematician, Torricelli. In his letter, Fermat challenged Torricelli to find a point such that the total distance from this point to the three vertices of a triangle is the minimum possible. Well, this problem was not hard for Torricelli. Since Torricelli knew how to find such a point, today some people refer to this point as the Fermat's point, and others refer it as the Torricelli's point of the triangle.

the Fermat's problem: find a point $M$ so that $MA + MB + MC$ is minimum


A problem about finding shortest path and a property of the ellipse


Today we will look at two problems that seem to be unrelated. The first one is a beautiful geometry problem about finding shortest path and the other one is about a property of an ellipse.

But first, let us introduce the ellipse. An ellipse is drawn below.
for any point $P$ on the ellipse, $PF_1 + PF_2 = \ell$


Solve for special cases first!


I would like to share with you a lesson that I have learnt. That is when facing a problem and we do not know what to do, the first thing we can do is to look at special cases of that problem. Investigating special cases can help us gain a greater understanding of the problem. To illustrate the point, let us solve some problems.


modulo - Part 6


We recall the definition of modulo. Two numbers $a$ and $b$ are said to be equal modulo $n$ if and only if $a-b$ is a multiple of $n$, and we write $a = b \pmod{n}$. For example, $9 = 1 \pmod{8}$ and $14 = -2 \pmod{8}$. 


In our usual arithmetic, we picture our integer numbers lying on the number line and we do addition and multiplication like this $2 + 7 = 9$, $2 \times 7 = 14$, etc...
our number line

modulo - Part 5


Today we will learn about Fermat's "little" Theorem. We will see that Fermat's little Theorem is very useful in modulo arithmetic. The theorem asserts that for any prime number $p$ and for any number $a$ not divisible by $p$,
$$ a^{p-1} = 1 \pmod{p} . $$


modulo - Part 4


One of the all-time famous mathematicians is Pierre de Fermat. He is a French mathematician and lived in the 17th century.

To mention Fermat, we must mention "his problem" - the Fermat's last problem. The problem that had challenged generations of mathematicians. Probably the reason that his problem is so well-known and attracted so much effort from top mathematicians as well as young school students is that it is stated so simple and that a secondary school student can understand it.

The Fermat's last problem is stated as follows. Prove that for any $n \geq 3$ the following equation does not have non-trivial solutions  
$$ x^n+y^n=z^n $$

Non-trivial solutions here mean non-zero solutions. This is because if  $x$, $y$ or $z$ is equal to 0 then the equation becomes trivial.

modulo - Part 3


Today, we are going to look at some more examples about modulo.

Example 1: Prove that $11 + 2011^{2012} + 2012^{2013}$ is divisible by 13.

modulo - Part 2


Last time, we have learnt about modulo. Two integers $a$ and $b$ are said to be equal modulo $n$, denoted by $a = b \pmod{n}$, iff $a-b$ is divisible by $n$.

For example, $15 = 3 \pmod{4}$ and $99 = -1 \pmod{10}$.

modulo - Part 1


Today we will look at an important concept in number theory -- the concept of modulo. Two integer numbers $a$ and $b$ are said to be equal modulo $n$ iff they have the same remainder when divided by $n$. Or equivalently, iff $(a-b)$ is divisible by $n$. We will write $a = b \pmod{n}$.