Processing math: 100%

Tuesday, July 16, 2013

Characterising integer tuples by co-prime nearby integers (Part 1)

The Chinese Remainder Theorem is a beautiful tool if someone wants to characterise a large integer N via a set B={n1,...,nm} of small integers. Based in the remainders {N(modn1),...,N(modn2)}={r1,...,rm} one can reconstruct the unique integer N(modmi=1ni), which is N itself if Nmi=1ni.

What i want to discuss in this post is, if it is possible to characterise a tuple of integers N1,N2 via their co-prime neighbors. For example:

Suppose we have N1 and N2, which are two unknown integers. All it is known, is that
gcd(N1+si,N2+ti)=1
for integers si and ti, ik. These si and ti could be small, i.e., 2, 3 or 5 but also any other integer. The question is:

Given the set S={(s1,t1),...,(sk,tk)}, is it possible to say anything non trivial about the integers N1 or N2?

If this would be possible, one could, e.g., use this information to help to factorize integers. The relationship is the following:

Lemma 1. Let n=pq and p,qP and let p=gm1+d1 and q=gm2+d2 with gcd(m1,m2)=1. Let nd1d2=t. If t>n and tP than g=1, hence pd1 and qd2 are co-prime integers.

Proof. We write n=pq=(gm1+d1)(gm2+d2) which is equal to nd1d2=g2m1m2+g(m1d2+m2d1)=g(gm1m2+m1d2+m2d1)=t. If we assume that t is prime, either g=1 and (gm1m2+m1d2+m2d1)=t or g=t and (gm1m2+m1d2+m2d1)=1. Since gmin(p,q) and min(p,q)n, we have gn<t, thus we are left with the first case g=1. So pd1 and qd2 must be co-prime integers.
Q.e.d.

To give a little example, let n=12827=pq=101127. The 5 next prime numbers below n are 12823,12821,12809,12799,12791 with the distances 4,6,18,28,36.

Figure 1. GCD-Table reconstructed from the 5 nearest primes below n.
Figure 1 shows the GCD-Table for p and q based on the factorizations from the distances
4:(1,4),(4,1),(2,2),
6:(1,6),(6,1),(2,3),(3,2),
18:(1,18),(18,1),(2,9),(9,2),(3,6),(6,3),
28:(1,28),(28,1),(2,14),(14,2),(4,7),(7,4)
36:(1,36),(36,1),(2,18),(18,2),(3,12),(12,3),(4,9),(9,4),(6,6).
The empty cells are not determined, the >1 indicate that the gcd of these number is larger than 1 and the red cells the co-prime information recovered from Lemma 1. So even in the case that one does not know p and q one can build up a table like shown in Figure 1. How unique is such a pattern and does it help to get information about p and q?
It is known, as it follows from the Euclidean Algorithm, that two integers a,b are co-prime if and only if 2a1 and 2b1 are co-prime. Or in general gcd(na1,nb1)=ngcd(a,b)1. Hence there can not exists an integer M, such that
npd1,j1n1=pd1,j1k=0nk0(modM)
and
nqd2,j1n1=qd2,j1k=0nk0(modM)
simultaneously. If we denote with ordM(n) the multiplicative order of n in ZM, then it is known that ordM(n)1k=0nk0(modM). Hence, pd1,j and qd2,j could not simultaneously be multiples of ordM(n). Since for every prime number P there exists an integer φ(M) such that P|φ(M), it is valid to choose an arbitrary prime number <n and reduce:
(1)pd1,j(modP)
(2)qd2,j(modP)
Normally, if we multiply (1) and (2), we loose information (since we have no unique factorization domain in Z/PZ). But since we chose pqd1,jd2,j to be a prime number, we know that P(pqd1,jd2,j) and hence
()pqd1,jd2,j(modP)
for all j and all primes numbers Pn.

Reconstructing. The information from (*) could be used to reconstruct n by only knowing the distances d1,d2. That is, one stores all values d1,jd2,j(modP) in a list L. If the set S is large enough, only one value from the interval [0,P1] will be missing in L, that is pq(modP). One has to prove that the distances 1,jd2,j are actually "randomly enough", but for the sake of simplicity we skip this.

After collecting enough remainders of pq(modP) for different values of P, we can use the Chinese Remainder Theorem to get pq. Thus the following question could be answered positiv:

If i give you the distances from an integer N to m of its nearest prime numbers, is it enough to find N itself? -- Yes

This also answers our original question partly positiv, because getting the product of the two integers in question if often enough (if factoring is easy) to get the integers itself.

A different view. Concurrently, one could interpret the GCD-pattern for p,q (i.e. Figure 1) also as the GCD-pattern for (p+D,q+D)=(p,q), just add D to all distances.
Is it possible to also reconstruct the product(p+D)(q+D) as well? (Note that this equal to get p,q itself, if pq is alread known.)

The answers is no, at least not on the same way, as p,q could be reconstructed. Note that the difference here is, that albeit we have a set S=(pd1,j,qd2,j) with co-prime integers, it is not guaranteed that pqd1,jd2,j is a prime number.

No comments:

Post a Comment