Prime Numbers
The infinity of prime numbers and historical proofs.
@kaggle.patricklford_prime_numbers
The infinity of prime numbers and historical proofs.
@kaggle.patricklford_prime_numbers
Prime Numbers
A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers other than 1 and itself. In other words, a prime number has exactly two distinct positive divisors: 1 and itself.
For example:
Prime numbers play a fundamental role in number theory and mathematics in general. The set of prime numbers is infinite, and every integer greater than 1 can be uniquely expressed as a product of prime numbers, a concept known as the fundamental theorem of arithmetic.
Historical proofs
The concept of an infinite set of prime numbers has been a fascinating topic in mathematics for centuries.
Ancient Greece: Euclid's Proof (circa 300 BC):
Ancient India: Work of Bhaskara (circa 1150 CE):
18th Century: Euler's Formula (circa 1737):
20th Century: More Rigorous Proofs:
Let's take a closer look at the Sieve of Eratosthenes:
The Sieve of Eratosthenes is an ancient algorithm for finding all prime numbers up to a given limit. It is a straightforward and efficient method that eliminates multiples of each prime, gradually "sieving" out the non-prime numbers. The algorithm is named after the Greek mathematician Eratosthenes, who described it in his work "Introduction to Arithmetic" around 240 BC.
Here's a step-by-step explanation of how the Sieve of Eratosthenes works:
Let's find the prime numbers up to 30 using the Sieve of Eratosthenes:
After completing these steps, the remaining numbers (2, 3, 5, 7, 11, 13, 17, 19, 23, 29) are the correct prime numbers up to 30.
The Sieve of Eratosthenes is a simple and efficient algorithm, especially for finding small primes. It has been widely used throughout history and remains a fundamental method in number theory and computer science.
R code for Data Visualisation
A Markdown document with a Prime Number generator for a print, plot and csv file save (output below): - link. (Does not generate the first prime: 2).
The infinitude of prime numbers is now a well-established result in mathematics. While the historical proofs varied in sophistication, they all shared the core idea of assuming a finite set of primes, leading to a contradiction, and thereby establishing the existence of an infinite set of prime numbers.
link To my project about Infinity on Kaggle.
Conclusion
Prime numbers are fundamental to number theory and have fascinated mathematicians for centuries. Their infinite nature has been established through various proofs, each contributing to a deeper understanding of these essential building blocks of mathematics. The Sieve of Eratosthenes, an ancient algorithm, remains a practical method for finding prime numbers, while modern computer programs and techniques continue to explore the vast realm of primes. The study of prime numbers continues to yield new insights and connections, making them a rich and enduring area of mathematical exploration.
Patrick Ford 𓐍
CREATE TABLE prime_numbers (
"prime_numbers" BIGINT
);
CREATE TABLE prime_numbers_to_10000000 (
"prime_numbers" BIGINT
);
Anyone who has the link will be able to view this.