Difference between revisions of "Prime number"

(Fermat Primes)
(Sieve of Sundaram)
(25 intermediate revisions by 14 users not shown)
Line 2: Line 2:
 
Note that <math>1</math> is usually defined as being neither prime nor [[composite number|composite]] because it is its only factor among the [[natural number|natural numbers]].  
 
Note that <math>1</math> is usually defined as being neither prime nor [[composite number|composite]] because it is its only factor among the [[natural number|natural numbers]].  
  
 +
There are an infinite number of prime numbers. A standard proof attributed to [[Euclid]] notes that if there are a finite set of prime numbers <math>p_1, p_2, \ldots, p_n</math>, then the number <math>N = p_1p_2\cdots p_n + 1</math> is not divisible by any of them, but <math>N</math> must [[#Importance of Primes|have]] a prime factor, which leads to a direct contradiction.
  
== Identifying primes ==
+
== Techniques to Check for Prime Numbers ==
The [[Sieve of Eratosthenes]] is a relatively quick method for generating a list of the prime numbers.
 
  
 +
===Divisibility===
 +
A prime number is only divisible by one or itself, so a number <math>n</math> is prime if and only if <math>n</math> is not divisible by any integer greater than <math>1</math> and less than <math>n</math>.  One only needs to check integers up to <math>\sqrt{n}</math> because dividing larger numbers would result in a quotient smaller than <math>\sqrt{n}</math>.
 +
 +
===Modular Arithmetic===
 +
Modular arithmetic can help determine if a number is not prime.
 +
 +
* If a number not equal to <math>2,3</math> is congruent to <math>0,2,3,4,6 \pmod{6}</math>, then the number is not prime.
 +
* If a number not equal to <math>2,5</math> ends with an even digit or <math>5</math>, then the number is not prime.
 +
 +
===Sieve of Eratosthenes===
 +
{{main|Sieve of Eratosthenes}}
 +
The [[Sieve of Eratosthenes]] is a relatively simplistic [[algorithm]] for generating a list of the first few prime numbers. It is a method in which the multiples of all known primes are labeled as composites, and subsequently crossed out, starting with multiples of two, then three, then five, and so on.
 +
For example, circle 2, and cross out all other multiples of two. Then circle 3, and cross out all multiples of three. Repeat with all other prime numbers as needed. Although simple to understand, it is inefficient for finding large primes.
 +
 +
===Sieve of Sundaram===
 +
{{main|Sieve of Sundaram}}
 +
The Sieve of Sundaram is a relatively simplistic [[algorithm]] for generating all odd prime numbers, less than <math>2n+2</math>. It is a method by which all indices <math>m</math> such that <math>2m+1</math> has a non trivial factor are struck out. It employs the fact that <cmath>(2a+1)\cdot (2b+1)=2(2ab+a+b)+1</cmath> and if <math>a,b>0</math> this is a non-trivial factorization.
  
 
== Importance of Primes ==
 
== Importance of Primes ==
According to the [[Fundamental Theorem of Arithmetic]], there is exactly one unique way to factor a [[positive integer]] into a product of primes ([[permutation | permutations]] not withstanding).  This unique [[prime factorization]] plays an important role in solving many kinds of [[number theory]] problems.
+
According to the [[Fundamental Theorem of Arithmetic]], there is exactly one unique way to factor a [[positive integer]] into a product of primes ([[permutation|permutations]] not withstanding).  This unique [[prime factorization]] plays an important role in solving many kinds of [[number theory]] problems.
 
 
  
 
== Famous Primes ==
 
== Famous Primes ==
 
=== Fermat Primes ===
 
=== Fermat Primes ===
  
A [[Fermat prime]] is a prime of the form <math>2^2^n+1</math>. It can easily be shown that for such a number to be prime, ''n'' must be a power of 2. Therefore Fermat primes can also be written as <math>2^{2^n}+1</math>. Fermat checked the cases ''n=0,1,2,3,4'' and conjectured that all such numbers were prime. However, <math>2^{2^5}+1=641\cdot 6700417</math>. In fact, no other Fermat primes have been found.
+
A [[Fermat prime]] is a prime of the form <math>2^n+1</math>. It can easily be shown that for such a number to be prime, ''n'' must not have any odd divisor larger than 1 and so must be a power of 2. Therefore all Fermat primes have the form <math>2^{2^n}+1</math>. [[Fermat]] checked the cases <math>n=0,1,2,3,4</math> and conjectured that all such numbers of the form were prime. However, <math>2^{2^5}+1=641\cdot 6700417</math>. <math>n</math> also fails if <math>n = 6</math>; <math>2^{2^6} + 1 = 274177\cdot 67280421310721</math>. In fact, no other Fermat primes have been found to date.
  
There is an easy proof of the infinitude of primes based on Fermat numbers. One simply shows that any two Fermat numbers are [[relatively prime]].
+
There is an easy proof of the infinitude of primes based on Fermat numbers (numbers of the form <math>2^{2^n} + 1</math>). Just show that any two Fermat numbers are [[relatively prime]].
  
 
=== Mersenne Primes ===
 
=== Mersenne Primes ===
  
A [[Mersenne prime]] is a prime of the form <math>2^n-1</math>. For such a number to be prime, ''n'' must itself be prime. Compared to other numbers of comparable sizes, Mersenne numbers are easy to check for primality because of the [[Lucas-Lehmer test]].
+
A [[Mersenne prime]] is a prime of the form <math>2^n-1</math>. For such a number to be prime, ''n'' must itself be prime. Compared to other numbers of comparable sizes, Mersenne numbers are easy to check for primality because of the [https://en.wikipedia.org/wiki/Lucas%E2%80%93Lehmer_primality_test Lucas-Lehmer test], severely reducing the amount of computation needed.
  
 
=== Twin Primes ===
 
=== Twin Primes ===
Two primes that differ by exactly 2 are known as [[twin primes]].  The following are the smallest examples:<br>
+
Two primes that differ by exactly 2 are known as [[twin primes]].  The following are the first few pairs of twin primes:<br>
 
3, 5<br>
 
3, 5<br>
 
5, 7<br>
 
5, 7<br>
Line 31: Line 47:
 
41, 43<br>
 
41, 43<br>
  
It is not known whether or not there are infinitely many pairs of twin primes.
+
It is not known whether or not there are infinitely many pairs of twin primes. This is known as the [[Twin Prime Conjecture]], which is a specific instance of the Hardy-Littlewood conjecture.
 +
 
 +
An equivalent to the Twin Prime Conjecture (for primes greater than 3), is that there exists infinitely many numbers <math>n</math> '''not''' of forms: <cmath>6ab+a+b,6ab+a-b,6ab-a-b</cmath> because if <math>n</math> is of one of these forms, then at least one of <math>6n\pm 1</math> is composite: <cmath>6(6ab+a+b)+1=36ab+6a+6b+1=(6a+1)(6b+1)</cmath><cmath>6(6ab+a-b)-1=36ab+6a-6b-1=(6a-1)(6b+1)</cmath><cmath>6(6ab-a-b)+1=36ab-6a-6b+1=(6a-1)(6b-1)</cmath>
  
 +
=== Gaussian Primes ===
  
 +
A Gaussian prime is a prime that extends the idea of the traditional prime to the [[Gaussian integer|Gaussian integers]]. One can define this term for any [[ring]], especially number rings.
  
 
== Advanced Definition ==
 
== Advanced Definition ==
When the need arises to include negative divisors, a '''prime''' is defined as an integer p whose only divisors are 1, -1, p, and -p. More generally, if ''R'' is a [[unique factorization domain]], then an element ''p'' of ''R'' is a '''prime''' if whenever we write <math>p=ab</math> with <math>a,b\in R</math>, then exactly one of ''a'' and ''b'' is a [[unit]].
+
When the need arises to include negative divisors, a '''prime''' is defined as an integer p whose only divisors are 1, -1, p, and -p. More generally, if ''R'' is an integral domain, then a nonzero element ''p'' of ''R'' is a '''prime''' if whenever we write <math>p=ab</math> with <math>a,b\in R</math>, then exactly one of ''a'' and ''b'' is a unit.
 +
 
 +
==See also==
 +
*[[Composite]]
 +
*[[Relatively prime]]
 +
*[[Integer]]
 +
 
 +
[[Category:Definition]]
 +
[[Category:Number theory]]

Revision as of 21:41, 29 February 2020

A prime number (or simply prime) is a positive integer $p>1$ whose only positive divisors are 1 and itself. Note that $1$ is usually defined as being neither prime nor composite because it is its only factor among the natural numbers.

There are an infinite number of prime numbers. A standard proof attributed to Euclid notes that if there are a finite set of prime numbers $p_1, p_2, \ldots, p_n$, then the number $N = p_1p_2\cdots p_n + 1$ is not divisible by any of them, but $N$ must have a prime factor, which leads to a direct contradiction.

Techniques to Check for Prime Numbers

Divisibility

A prime number is only divisible by one or itself, so a number $n$ is prime if and only if $n$ is not divisible by any integer greater than $1$ and less than $n$. One only needs to check integers up to $\sqrt{n}$ because dividing larger numbers would result in a quotient smaller than $\sqrt{n}$.

Modular Arithmetic

Modular arithmetic can help determine if a number is not prime.

  • If a number not equal to $2,3$ is congruent to $0,2,3,4,6 \pmod{6}$, then the number is not prime.
  • If a number not equal to $2,5$ ends with an even digit or $5$, then the number is not prime.

Sieve of Eratosthenes

Main article: Sieve of Eratosthenes

The Sieve of Eratosthenes is a relatively simplistic algorithm for generating a list of the first few prime numbers. It is a method in which the multiples of all known primes are labeled as composites, and subsequently crossed out, starting with multiples of two, then three, then five, and so on. For example, circle 2, and cross out all other multiples of two. Then circle 3, and cross out all multiples of three. Repeat with all other prime numbers as needed. Although simple to understand, it is inefficient for finding large primes.

Sieve of Sundaram

Main article: Sieve of Sundaram

The Sieve of Sundaram is a relatively simplistic algorithm for generating all odd prime numbers, less than $2n+2$. It is a method by which all indices $m$ such that $2m+1$ has a non trivial factor are struck out. It employs the fact that \[(2a+1)\cdot (2b+1)=2(2ab+a+b)+1\] and if $a,b>0$ this is a non-trivial factorization.

Importance of Primes

According to the Fundamental Theorem of Arithmetic, there is exactly one unique way to factor a positive integer into a product of primes (permutations not withstanding). This unique prime factorization plays an important role in solving many kinds of number theory problems.

Famous Primes

Fermat Primes

A Fermat prime is a prime of the form $2^n+1$. It can easily be shown that for such a number to be prime, n must not have any odd divisor larger than 1 and so must be a power of 2. Therefore all Fermat primes have the form $2^{2^n}+1$. Fermat checked the cases $n=0,1,2,3,4$ and conjectured that all such numbers of the form were prime. However, $2^{2^5}+1=641\cdot 6700417$. $n$ also fails if $n = 6$; $2^{2^6} + 1 = 274177\cdot 67280421310721$. In fact, no other Fermat primes have been found to date.

There is an easy proof of the infinitude of primes based on Fermat numbers (numbers of the form $2^{2^n} + 1$). Just show that any two Fermat numbers are relatively prime.

Mersenne Primes

A Mersenne prime is a prime of the form $2^n-1$. For such a number to be prime, n must itself be prime. Compared to other numbers of comparable sizes, Mersenne numbers are easy to check for primality because of the Lucas-Lehmer test, severely reducing the amount of computation needed.

Twin Primes

Two primes that differ by exactly 2 are known as twin primes. The following are the first few pairs of twin primes:
3, 5
5, 7
11, 13
17, 19
29, 31
41, 43

It is not known whether or not there are infinitely many pairs of twin primes. This is known as the Twin Prime Conjecture, which is a specific instance of the Hardy-Littlewood conjecture.

An equivalent to the Twin Prime Conjecture (for primes greater than 3), is that there exists infinitely many numbers $n$ not of forms: \[6ab+a+b,6ab+a-b,6ab-a-b\] because if $n$ is of one of these forms, then at least one of $6n\pm 1$ is composite: \[6(6ab+a+b)+1=36ab+6a+6b+1=(6a+1)(6b+1)\]\[6(6ab+a-b)-1=36ab+6a-6b-1=(6a-1)(6b+1)\]\[6(6ab-a-b)+1=36ab-6a-6b+1=(6a-1)(6b-1)\]

Gaussian Primes

A Gaussian prime is a prime that extends the idea of the traditional prime to the Gaussian integers. One can define this term for any ring, especially number rings.

Advanced Definition

When the need arises to include negative divisors, a prime is defined as an integer p whose only divisors are 1, -1, p, and -p. More generally, if R is an integral domain, then a nonzero element p of R is a prime if whenever we write $p=ab$ with $a,b\in R$, then exactly one of a and b is a unit.

See also