Jump to content

Formula for primes

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mnshahri (talk | contribs) at 08:57, 15 April 2009 (Formulas using the floor function (or mod operator) based on Wilson's theorem). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In mathematics, a formula for primes is a formula generating the prime numbers, exactly and without exception. No easily-computable such formula is known. A great deal is known about what, more precisely, such a "formula" can and cannot be.

Prime formulas and polynomial functions

There is no general equation for finding prime numbers. It is known that no non-constant polynomial function P(n) exists that evaluates to a prime number for all integers n. The proof is simple: Suppose such a polynomial existed. Then P(1) would evaluate to a prime p, so . But for any k, also, so cannot also be prime (as it would be divisible by p) unless it were p itself, but the only way for all k is if the polynomial function is constant.

Using more algebraic number theory, one can show an even stronger result: no non-constant polynomial function P(n) exists that evaluates to a prime number for almost all integers n.

Euler first noticed (in 1772) that the quadratic polynomial

P(n) = n2 + n + 41

is prime for all non-negative integers less than 40. The primes for n = 0, 1, 2, 3... are 41, 43, 47, 53, 61, 71... The differences between the terms are 2, 4, 6, 8, 10... For n = 40, it produces a square number, 1681, which is equal to 41×41, the smallest composite number for this formula. In fact if 41 divides n it divides P(n) too. The phenomenon is related to the Ulam spiral, which is also implicitly quadratic, and the class number; this polynomial is related to the Heegner number , and there are analogous polynomials for , corresponding to other Heegner numbers.

It is known, based on Dirichlet's theorem on arithmetic progressions, that linear polynomial functions produce infinitely many primes as long as a and b are relatively prime (though no such function will assume prime values for all values of n). Moreover, the Green-Tao theorem says that for any k there exists a pair of a and b with the property that is prime for any n from 0 to k−1. However, the best known result of such type is for k = 25:

6171054912832631 + 81737658082080n is prime for all n from 0 to 24 (Andersen 2008).

It is not known whether there exists a univariate polynomial of degree at least 2 that assumes an infinite number of values that are prime.

Formula based on a system of Diophantine equations

A system of 14 Diophantine equations in 26 variables can be used to obtain a Diophantine representation of the set of all primes. Jones et al. (1976) proved that a given number k + 2 is prime if and only if the following system of 14 Diophantine equations has a solution in the natural numbers:


α0 = = 0
α1 = = 0
α2 = = 0
α3 = = 0
α4 = = 0
α5 = = 0
α6 = = 0
α7 = = 0
α8 = = 0
α9 = = 0
α10 = = 0
α11 = = 0
α12 = = 0
α13 = = 0


The 14 equations α0, …, α13 can be used to produce a prime-generating polynomial inequality in 26 variables:

ie:

is a polynomial inequality in 26 variables, and the set of prime numbers is identical to the set of positive values taken on by this polynomial inequality as the variables a, b, …, z range over the nonnegative integers.

A general theorem of Matiyasevich says that if a set is defined by a system of Diophantine equations, it can also be defined by a system of Diophantine equations in only 9 variables. Hence, there is a prime-generating polynomial as above with only 10 variables. However, its degree is large (in the order of 1045). On the other hand, there also exists such a set of equations of degree only 4, but in 58 variables (Jones 1982).

Formulas using the floor function

Using the floor function (defined to be the largest integer less than or equal to the real number x), one can construct several formulas that take only prime numbers as values for all positive integers n.

Mills's formula

The first such formula known was established in 1947 by W. H. Mills, who proved that there exists a real number A such that

is a prime number for all positive integers n. If the Riemann hypothesis is true, then the smallest such A has a value of around 1.3063... and is known as Mills' constant. This formula has no practical value, because very little is known about the constant (not even whether it is rational), and there is no known way of calculating the constant without finding primes in the first place.

Formulas using the floor function (or mod operator) based on Wilson's theorem

By using Wilson's theorem, we may generate several other formulas, given below. These formulas also have little practical value: most primality tests are far more efficient.

Following tables has shown some proper formulas and their result.

There is an Exception in some formulas in the following tables which for number 3 and 4 they don't function as it is expected.

Formula n is Prime n is Composite
Positive integer Improper fraction
Improper fraction Positive integer

Next table has substituted n by n+1.

Formula n+1 is Prime n+1 is Composite
Positive integer Improper fraction
Improper fraction Positive integer

By using first formula of the above table , if

that is:

then , for non-negative integers n ; r is positive integer when n is prime ; and r is improper fraction when n is composite:

In order to produce a prime test function , the following function called IsInteger can be defined:

The following functions return 0 when x is not integer and return 1 when x is integer.

 : formula by C. P. Willans (Bowyer n.d.)

For example the following functions return 0 when n is composite and return 1 when n is prime.

And Examples are:

Some formulas use above IsPrime(n) function to generate all prime numbers but not in an ascending order and some other, use them to build a formula for π(m) or pn ; π(m) is the number of primes less than or equal to m.

For Example , the following functions yield all the primes, and only primes, for non-negative integers n:

A prime p is generated for n = p and 2 otherwise; that is, 2 is generated when n is composite.

In order to produce new prime numbers more often,we can substitute n by or which only produces odd numbers.

Also the following substitution will omit even numbers ,the number 5 and it's multiples.

In general, we may define

Examples are:

or, alternatively,

These definitions are equivalent; π(m) is the number of primes less than or equal to m.

a is n-th prime number if and only if these two conditions are satisfied:

1) a is prime meaning that IsPrime(a)=1

2) The number of primes less that or equal to a is n that is π(a)=n

The following function returns 1 when a is n-th prime else returns 0:

Where

The n-th prime number pn can then be written as

Examples are:

by Sebastián Martín-Ruiz.

Note the following equality:

Another approach using the floor function

Another approach, by Sebastián Martín-Ruiz, does not use factorials and Wilson's theorem, but also heavily employs the floor function (Rivera n.d.):

Recurrence relation

Another prime generator is defined by the recurrence relation

where gcd(x, y) denotes the greatest common divisor of x and y. The sequence of differences an + 1an starts with 1, 1, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, 1 (sequence A132199 in the OEIS). Rowlands (2008) proved that this sequence contains only ones and prime numbers.

See also

References

  • Andersen, Jens Kruse (2008), Primes in Arithmetic Progression Records, retrieved 2009-01-27.
  • Bowyer, Adrian (n.d.), Formulae for Primes, retrieved 2008-07-09{{citation}}: CS1 maint: year (link).
  • Jones, James P.; Sato, Daihachiro; Wada, Hideo; Wiens, Douglas (1976), "Diophantine representation of the set of prime numbers", American Mathematical Monthly, 83: 449–464, doi:10.2307/2318339.
  • Jones, James P. (1982), "Universal diophantine equation", Journal of Symbolic Logic, 47: 549–571.
  • Rivera, Carlos (n.d.), Problem 38. Sebastián Martín Ruiz- Prime formulas, retrieved 2008-07-09{{citation}}: CS1 maint: year (link).
  • Rowland, Eric S. (2008), "A Natural Prime-Generating Recurrence", Journal of Integer Sequences, 11: 08.2.8, ISSN 1530-7638.
  • Weisstein, Eric W. "Prime Formulas". MathWorld.
  • Weisstein, Eric W. "Prime-Generating Polynomial". MathWorld.
  • Weisstein, Eric W. "Mill's Constant". MathWorld.
  • A Venugopalan. Formula for primes, twinprimes, number of primes and number of twinprimes. Proceedings of the Indian Academy of Sciences – Mathematical Sciences, Vol. 92, No 1, September 1983, pp. 49-52. Page 49, 50, 51, 52, errata.