In mathematics, the Pocklington–Lehmer primality test is a
primality test
A primality test is an algorithm for determining whether an input number is prime. Among other fields of mathematics, it is used for cryptography. Unlike integer factorization, primality tests do not generally give prime factors, only stating wh ...
devised by
Henry Cabourn Pocklington
Henry Cabourn Pocklington FRS (28 January 1870, Exeter – 15 May 1952, Leeds) was an English physicist and mathematician. His primary profession was as a schoolmaster, but he made important contributions to number theory with the discovery ...
and
Derrick Henry Lehmer
Derrick Henry "Dick" Lehmer (February 23, 1905 – May 22, 1991), almost always cited as D.H. Lehmer, was an American mathematician significant to the development of computational number theory. Lehmer refined Édouard Lucas' work in the 1930s and ...
.
The test uses a partial factorization of
to prove that an integer
is
prime
A prime number (or a prime) is a natural number greater than 1 that is not a product of two smaller natural numbers. A natural number greater than 1 that is not prime is called a composite number. For example, 5 is prime because the only way ...
.
It produces a
primality certificate In mathematics and computer science, a primality certificate or primality proof is a succinct, formal proof that a number is prime. Primality certificates allow the primality of a number to be rapidly checked without having to run an expensive or u ...
to be found with less effort than the
Lucas primality test
In computational number theory, the Lucas test is a primality test for a natural number ''n''; it requires that the prime factors of ''n'' − 1 be already known. It is the basis of the Pratt certificate that gives a concise verification that ...
, which requires the full factorization of
.
Pocklington criterion
The basic version of the test relies on the Pocklington theorem (or Pocklington criterion) which is formulated as follows:
Let
be an integer, and suppose there exist natural numbers and such that
Then is prime.
Note: Equation () is simply a
Fermat primality test
The Fermat primality test is a probabilistic test to determine whether a number is a probable prime.
Concept
Fermat's little theorem states that if ''p'' is prime and ''a'' is not divisible by ''p'', then
:a^ \equiv 1 \pmod.
If one wants to tes ...
. If we find ''any'' value of , not divisible by , such that equation () is false, we may immediately conclude that is not prime. (This divisibility condition is not explicitly stated because it is implied by equation ().) For example, let
. With
, we find that
. This is enough to prove that is not prime.
Suppose is not prime. This means there must be a prime , where
that divides .
Since
,
, and since is prime,
.
Thus there must exist an integer , a multiplicative inverse of modulo , with the property that
and therefore, by
Fermat's little theorem
This implies
:
, by () since
::
,
::
, by ()
This shows that divides the
in (), and therefore this
; a contradiction.
Given , if and can be found which satisfy the conditions of the theorem, then is prime. Moreover, the pair (, ) constitute a ''primality certificate'' which can be quickly verified to satisfy the conditions of the theorem, confirming as prime.
The main difficulty is finding a value of which satisfies (). First, it is usually difficult to find a large prime factor of a large number. Second, for many primes , such a does not exist. For example,
has no suitable because
, and
, which violates the inequality in (); other examples include
and
.
Given , finding is not nearly as difficult. If is prime, then by Fermat's little theorem, any in the interval
will satisfy () (however, the cases
and
are trivial and will not satisfy ()). This will satisfy () as long as
ord() does not divide
. Thus a randomly chosen in the interval
has a good chance of working. If is a generator mod , its order is and so the method is guaranteed to work for this choice.
Generalized Pocklington test
The above version of version of Pocklington's theorem is sometimes impossible to apply because some primes
are such that there is no prime
dividing
where
. The following generalized version of Pocklington's theorem is more widely applicable.
Theorem: Factor as , where and are relatively prime,
, the prime factorization of is known, but the factorization of is not necessarily known.
If for each prime factor of there exists an integer
so that
then ''N'' is prime.
Let be a prime dividing and let
be the maximum power of dividing .
Let be a prime factor of . For the
from the corollary set
. This means
and because of
also
.
This means that the order of
is
Thus,
. The same observation holds for each prime power factor
of ''A'',
which implies
.
Specifically, this means
If were composite, it would necessarily have a prime factor which is less than or equal to
. It has been shown that there is no such factor, which proves that is prime.
Comments
The Pocklington–Lehmer primality test follows directly from this corollary.
To use this corollary, first find enough factors of so the product of those factors exceeds
.
Call this product .
Then let be the remaining, unfactored portion of . It does not matter whether is prime.
We merely need to verify that no prime that divides also divides , that is, that and are relatively prime.
Then, for every prime factor of , find an
which fulfills conditions () and () of the corollary.
If such
s can be found, the Corollary implies that is prime.
According to Koblitz,
= 2 often works.
Example
Determine whether
:
is prime.
First, search for small prime factors of
.
We quickly find that
:
.
We must determine whether
and
meet the conditions of the Corollary.
, so
.
Therefore, we have factored enough of
to apply the Corollary.
We must also verify that
.
It does not matter whether is prime (in fact, it is not).
Finally, for each prime factor of , use trial and error to find an that satisfies () and ().
For
, try
.
Raising
to this high power can be done efficiently using
binary exponentiation:
:
:
.
So,
satisfies () but not (). As we are allowed a different for each , try
instead:
:
:
.
So
satisfies both () and ().
For
, the second prime factor of , try
:
:
.
:
.
satisfies both () and ().
This completes the proof that
is prime.
The certificate of primality for
would consist of the two
pairs (2, 5) and (3, 2).
We have chosen small numbers for this example, but in practice when we start factoring we may get factors that are themselves so large their primality is not obvious. We cannot prove is prime without proving that the factors of are prime as well. In such a case we use the same test recursively on the large factors of , until all of the primes are below a reasonable threshold.
In our example, we can say with certainty that 2 and 3 are prime, and thus we have proved our result. The primality certificate is the list of
pairs, which can be quickly checked in the corollary.
If our example had included large prime factors, the certificate would be more complicated. It would first consist of our initial round of s which correspond to the 'prime' factors of ; Next, for each factor of where primality was uncertain, we would have more , and so on for factors of these factors until we reach factors of which primality is certain. This can continue for many layers if the initial prime is large, but the important point is that a certificate can be produced, containing at each level the prime to be tested, and the corresponding s, which can easily be verified.
Extensions and variants
The 1975 paper by Brillhart, Lehmer, and Selfridge
gives a proof for what is shown above as the "generalized Pocklington theorem" as Theorem 4 on page 623. Additional theorems are shown which allow less factoring. This includes their Theorem 3 (a strengthening of an 1878 theorem of Proth):
: Let
where is an odd prime such that
. If there exists an for which
, but
, then is prime.
If is large, it is often difficult to factor enough of
to apply the above corollary. Theorem 5 of the Brillhart, Lehmer, and Selfridge paper allows a primality proof when the factored part has reached only
. Many additional such theorems are presented that allow one to prove the primality of based on the partial factorization of
and
.
The classical tests
/ref>
References
* Leonard Eugene Dickson, "History of the Theory of Numbers" vol 1, p 370, Chelsea Publishing 1952
* Henry Pocklington, "Math. Quest. Educat. Times", (2), 25, 1914, p 43-46 (Mathematical questions and solutions in continuation of the mathematical columns of "the Educational times".)
External links
*Chris Caldwell
at the Prime Pages The PrimePages is a website about prime numbers maintained by Chris Caldwell at the University of Tennessee at Martin.
The site maintains the list of the "5,000 largest known primes", selected smaller primes of special forms, and many "top twenty" ...
.
*Chris Caldwell
"Primality Proving 3.2: n+1 tests and the Lucas-Lehmer test for Mersennes"
at the Prime Pages The PrimePages is a website about prime numbers maintained by Chris Caldwell at the University of Tennessee at Martin.
The site maintains the list of the "5,000 largest known primes", selected smaller primes of special forms, and many "top twenty" ...
.
{{DEFAULTSORT:Pocklington Primality Test
Primality tests