A Conjecture on Primality Testing
We begin with a conjecture on primality testing, which I first shared on my personal GitHub early last month.
Conjecture 1. Let such that
. Then, the following polynomial congruence holds iff
is prime:
By the binomial theorem, it is easy to see that the polynomial congruence will hold for all prime . Additionally, I have confirmed that there is no composite
which satisfies the test. If the conjecture is true, then it represents a
primality test.
I am currently writing a paper to explain the proposed primality test in detail. For now, I’ll give some hints: The univariate congruence in the conjecture is the same as the following bivariate congruence
Start by arranging a system of congruences for the polynomial generators of the quotient ring. Then, consider what the system’s solutions imply about power residues modulo composite . Particularly, consider how said solutions relate to the individual prime factors of
.
PRIMES is in… Quadratic Time?
It is seemingly difficult to prove that this test is deterministic (supposing this is true), however, it is relatively easy to show that it’s extremely unlikely for any composite to pass. In computing terms, you can think of the underlying mechanism for this as a “hashing” of the power residues modulo the prime factors of
— if a subset of the power residues modulo composite
‘s prime factors do not miraculously align, then
has no chance to pass the test.
Again, no pseudoprimes for this test are known, and I have checked for all up to
. If there are indeed any pseudoprimes, then I expect that they will be of the form
, where
is prime. It would be nice if pseudoprimes take this form, as such composite
can be easily factored without impacting the running time. I do hope we can be so fortunate!
A Bonus Conjecture
Conjecture 2. Let such that
. Suppose the following polynomial congruence holds:
Then, either is prime or
.
This conjecture exhibits the same time complexity as the test given by Conjecture 1, which is , but this variation is faster in practice. It is premised upon the same underlying principles. In this case, I experimentally manipulated the polynomial terms in the hope that I could “compress” the previous test without sacrificing accuracy. Despite the seemingly lossy simplifications, it is plausible that this test is incredibly strong. The smallest composite
for which this version of the polynomial congruence holds, is
In this case, .
More to Come
I look forward to sharing more about these conjectures in the future.
-JS