Generating correct $(a,..,z)$ tuples for the polynomial defined in “Diophantine representation of the set...
$begingroup$
I am reading "Diophantine representation of the set of prime numbers" (Jones, Sato, Wada, Wiens), and to understand the prime generating polynomial (credits to @JoelReyesNoche for writing the polynomial here):
$$(k+2)(1-(wz+h+j-q)^2-((gk+2g+k+1)cdot(h+j)+h-z)^2-(2n+p+q+z-e)^2-(16(k+1)^3cdot(k+2)cdot(n+1)^2+1-f^2)^2-(e^3cdot(e+2)(a+1)^2+1-o^2)^2-((a^2-1)y^2+1-x^2)^2-(16r^2y^4(a^2-1)+1-u^2)^2-(((a+u^2(u^2-a))^2-1)cdot(n+4dy)^2+1-(x+cu)^2)^2-(n+l+v-y)^2-((a^2-1)l^2+1-m^2)^2-(ai+k+1-l-i)^2-(p+l(a-n-1)+b(2an+2a-n^2-2n-2)-m)^2-(q+y(a-p-1)+s(2ap+2a-p^2-2p-2)-x)^2-(z+pl(a-p)+t(2ap-p^2-1)-pm)^2)$$
... I have prepared a Python program to bring some of the $(a,..,z)$ tuples that applied to the polynomial shown in the paper provide prime numbers. The questions are at the end of the explanation.
Probably I am doing something wrong or I did not understand exactly how to use the polynomial, but I can not obtain a single correct example of tuple. This is the Python code (please be free to use it and modify it). I have tried to be careful about the parenthesis (but could be wrong). It takes random positive vales for $(a,..,z)$ and apply them to the polynomial, but unfortunately so far I did not get any good example:
def dp():
from random import randint
lop=
test_limit=30000
times=1000
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
j=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
while (times!=0):
r2=((w*z)+h+j-q)**2
r3=((((g*k)+(2*g)+k+1)*(h+j))+h-z)**2
r4=((2*n)+p+q+z-e)**2
r5=((16*((k+1)**3)*(k+2)*((n+1)**2))+1-(f**2))**2
r6=(((e**3)*(e+2)*((a+1)**2))+1-(o**2))**2
r7=((((a**2)-1)*(y**2))+1-(x**2))**2
r8=((16*(r**2)*(y**4)*((a**2)-1))+1-(u**2))**2
r9=(((a+((u**2)*((u**2)-1)))**2)+1-((x+(c*u))**2))**2
r10=(n+l+v-y)**2
r11=((((a**2)-1)*(l**2))+1-(m**2))**2
r12=((a*i)+k+1-l-i)**2
r13=(p+(l*(a-n-1))+(b*((2*a*n)+(2*a)-(n**2)-(2*n)-2))-m)**2
r14=(q+(y*(a-p-1))+(s*((2*a*p)+(2*a)-(p**2)-(2*p)-2))-x)**2
r15=(z+(p*l*(a-p))+(t*((2*a*p)-(p**2)-1))-(p*m))**2
r1=(1-r2-r3-r4-r5-r6-r7-r8-r9-r10-r11-r12-r13-r14-r15)
res=(k+2)*r1
if res>0:
print(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z)
print(res)
times=times-1
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
k=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
dp()
According to the paper, when nonnegative integers are substituted for those variables, the positive values of the polynomial coincide exactly with the set of all prime numbers, and the polynomial also takes on negative values (those values are out of the target, so that point about the negative values is understood).
But I am not being able to obtain a single correct value, so I would like to ask the following questions:
Please if somebody could provide an online resource where some of these valid $(a,..,z)$ tuples are available (or some tested samples in the answer, tuple and obtained value) so I can check my code versus a correct tuple to find the possible error I would be very grateful.
I thought that any tuple $(a,..,z)$ with all $a,..,z$ nonnegative values provides a prime number if the value of the polynomial is positive, but I am getting with all nonnegative tuples positive values of the polynomial that are not primes. Did I misunderstand the explanation of the paper? Thank you!
elementary-number-theory polynomials reference-request prime-numbers online-resources
$endgroup$
add a comment |
$begingroup$
I am reading "Diophantine representation of the set of prime numbers" (Jones, Sato, Wada, Wiens), and to understand the prime generating polynomial (credits to @JoelReyesNoche for writing the polynomial here):
$$(k+2)(1-(wz+h+j-q)^2-((gk+2g+k+1)cdot(h+j)+h-z)^2-(2n+p+q+z-e)^2-(16(k+1)^3cdot(k+2)cdot(n+1)^2+1-f^2)^2-(e^3cdot(e+2)(a+1)^2+1-o^2)^2-((a^2-1)y^2+1-x^2)^2-(16r^2y^4(a^2-1)+1-u^2)^2-(((a+u^2(u^2-a))^2-1)cdot(n+4dy)^2+1-(x+cu)^2)^2-(n+l+v-y)^2-((a^2-1)l^2+1-m^2)^2-(ai+k+1-l-i)^2-(p+l(a-n-1)+b(2an+2a-n^2-2n-2)-m)^2-(q+y(a-p-1)+s(2ap+2a-p^2-2p-2)-x)^2-(z+pl(a-p)+t(2ap-p^2-1)-pm)^2)$$
... I have prepared a Python program to bring some of the $(a,..,z)$ tuples that applied to the polynomial shown in the paper provide prime numbers. The questions are at the end of the explanation.
Probably I am doing something wrong or I did not understand exactly how to use the polynomial, but I can not obtain a single correct example of tuple. This is the Python code (please be free to use it and modify it). I have tried to be careful about the parenthesis (but could be wrong). It takes random positive vales for $(a,..,z)$ and apply them to the polynomial, but unfortunately so far I did not get any good example:
def dp():
from random import randint
lop=
test_limit=30000
times=1000
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
j=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
while (times!=0):
r2=((w*z)+h+j-q)**2
r3=((((g*k)+(2*g)+k+1)*(h+j))+h-z)**2
r4=((2*n)+p+q+z-e)**2
r5=((16*((k+1)**3)*(k+2)*((n+1)**2))+1-(f**2))**2
r6=(((e**3)*(e+2)*((a+1)**2))+1-(o**2))**2
r7=((((a**2)-1)*(y**2))+1-(x**2))**2
r8=((16*(r**2)*(y**4)*((a**2)-1))+1-(u**2))**2
r9=(((a+((u**2)*((u**2)-1)))**2)+1-((x+(c*u))**2))**2
r10=(n+l+v-y)**2
r11=((((a**2)-1)*(l**2))+1-(m**2))**2
r12=((a*i)+k+1-l-i)**2
r13=(p+(l*(a-n-1))+(b*((2*a*n)+(2*a)-(n**2)-(2*n)-2))-m)**2
r14=(q+(y*(a-p-1))+(s*((2*a*p)+(2*a)-(p**2)-(2*p)-2))-x)**2
r15=(z+(p*l*(a-p))+(t*((2*a*p)-(p**2)-1))-(p*m))**2
r1=(1-r2-r3-r4-r5-r6-r7-r8-r9-r10-r11-r12-r13-r14-r15)
res=(k+2)*r1
if res>0:
print(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z)
print(res)
times=times-1
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
k=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
dp()
According to the paper, when nonnegative integers are substituted for those variables, the positive values of the polynomial coincide exactly with the set of all prime numbers, and the polynomial also takes on negative values (those values are out of the target, so that point about the negative values is understood).
But I am not being able to obtain a single correct value, so I would like to ask the following questions:
Please if somebody could provide an online resource where some of these valid $(a,..,z)$ tuples are available (or some tested samples in the answer, tuple and obtained value) so I can check my code versus a correct tuple to find the possible error I would be very grateful.
I thought that any tuple $(a,..,z)$ with all $a,..,z$ nonnegative values provides a prime number if the value of the polynomial is positive, but I am getting with all nonnegative tuples positive values of the polynomial that are not primes. Did I misunderstand the explanation of the paper? Thank you!
elementary-number-theory polynomials reference-request prime-numbers online-resources
$endgroup$
1
$begingroup$
Look at the structure of the polynomial. It's $k+2$ times something which is $1$ minus a bunch of squares. If any of those squares is not $0$, the whole thing is useless. So we need to be able to find other $25$ numbers, given a $k$, that make each of the $25$ numbers you're squaring equal to $0$. It is highly highly unlikely you'd find them by brute force.
$endgroup$
– Bob Jones
Feb 28 '17 at 0:36
$begingroup$
@BobJones thank you for the feedback. I see... I hope to find one or two examples online to see how they look like.
$endgroup$
– iadvd
Feb 28 '17 at 1:32
$begingroup$
Today I found the following online resource, but it is also based on the calculation of random tuples ahonga.fr/js/primes/primesJones-5.html
$endgroup$
– iadvd
Mar 1 '17 at 6:35
add a comment |
$begingroup$
I am reading "Diophantine representation of the set of prime numbers" (Jones, Sato, Wada, Wiens), and to understand the prime generating polynomial (credits to @JoelReyesNoche for writing the polynomial here):
$$(k+2)(1-(wz+h+j-q)^2-((gk+2g+k+1)cdot(h+j)+h-z)^2-(2n+p+q+z-e)^2-(16(k+1)^3cdot(k+2)cdot(n+1)^2+1-f^2)^2-(e^3cdot(e+2)(a+1)^2+1-o^2)^2-((a^2-1)y^2+1-x^2)^2-(16r^2y^4(a^2-1)+1-u^2)^2-(((a+u^2(u^2-a))^2-1)cdot(n+4dy)^2+1-(x+cu)^2)^2-(n+l+v-y)^2-((a^2-1)l^2+1-m^2)^2-(ai+k+1-l-i)^2-(p+l(a-n-1)+b(2an+2a-n^2-2n-2)-m)^2-(q+y(a-p-1)+s(2ap+2a-p^2-2p-2)-x)^2-(z+pl(a-p)+t(2ap-p^2-1)-pm)^2)$$
... I have prepared a Python program to bring some of the $(a,..,z)$ tuples that applied to the polynomial shown in the paper provide prime numbers. The questions are at the end of the explanation.
Probably I am doing something wrong or I did not understand exactly how to use the polynomial, but I can not obtain a single correct example of tuple. This is the Python code (please be free to use it and modify it). I have tried to be careful about the parenthesis (but could be wrong). It takes random positive vales for $(a,..,z)$ and apply them to the polynomial, but unfortunately so far I did not get any good example:
def dp():
from random import randint
lop=
test_limit=30000
times=1000
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
j=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
while (times!=0):
r2=((w*z)+h+j-q)**2
r3=((((g*k)+(2*g)+k+1)*(h+j))+h-z)**2
r4=((2*n)+p+q+z-e)**2
r5=((16*((k+1)**3)*(k+2)*((n+1)**2))+1-(f**2))**2
r6=(((e**3)*(e+2)*((a+1)**2))+1-(o**2))**2
r7=((((a**2)-1)*(y**2))+1-(x**2))**2
r8=((16*(r**2)*(y**4)*((a**2)-1))+1-(u**2))**2
r9=(((a+((u**2)*((u**2)-1)))**2)+1-((x+(c*u))**2))**2
r10=(n+l+v-y)**2
r11=((((a**2)-1)*(l**2))+1-(m**2))**2
r12=((a*i)+k+1-l-i)**2
r13=(p+(l*(a-n-1))+(b*((2*a*n)+(2*a)-(n**2)-(2*n)-2))-m)**2
r14=(q+(y*(a-p-1))+(s*((2*a*p)+(2*a)-(p**2)-(2*p)-2))-x)**2
r15=(z+(p*l*(a-p))+(t*((2*a*p)-(p**2)-1))-(p*m))**2
r1=(1-r2-r3-r4-r5-r6-r7-r8-r9-r10-r11-r12-r13-r14-r15)
res=(k+2)*r1
if res>0:
print(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z)
print(res)
times=times-1
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
k=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
dp()
According to the paper, when nonnegative integers are substituted for those variables, the positive values of the polynomial coincide exactly with the set of all prime numbers, and the polynomial also takes on negative values (those values are out of the target, so that point about the negative values is understood).
But I am not being able to obtain a single correct value, so I would like to ask the following questions:
Please if somebody could provide an online resource where some of these valid $(a,..,z)$ tuples are available (or some tested samples in the answer, tuple and obtained value) so I can check my code versus a correct tuple to find the possible error I would be very grateful.
I thought that any tuple $(a,..,z)$ with all $a,..,z$ nonnegative values provides a prime number if the value of the polynomial is positive, but I am getting with all nonnegative tuples positive values of the polynomial that are not primes. Did I misunderstand the explanation of the paper? Thank you!
elementary-number-theory polynomials reference-request prime-numbers online-resources
$endgroup$
I am reading "Diophantine representation of the set of prime numbers" (Jones, Sato, Wada, Wiens), and to understand the prime generating polynomial (credits to @JoelReyesNoche for writing the polynomial here):
$$(k+2)(1-(wz+h+j-q)^2-((gk+2g+k+1)cdot(h+j)+h-z)^2-(2n+p+q+z-e)^2-(16(k+1)^3cdot(k+2)cdot(n+1)^2+1-f^2)^2-(e^3cdot(e+2)(a+1)^2+1-o^2)^2-((a^2-1)y^2+1-x^2)^2-(16r^2y^4(a^2-1)+1-u^2)^2-(((a+u^2(u^2-a))^2-1)cdot(n+4dy)^2+1-(x+cu)^2)^2-(n+l+v-y)^2-((a^2-1)l^2+1-m^2)^2-(ai+k+1-l-i)^2-(p+l(a-n-1)+b(2an+2a-n^2-2n-2)-m)^2-(q+y(a-p-1)+s(2ap+2a-p^2-2p-2)-x)^2-(z+pl(a-p)+t(2ap-p^2-1)-pm)^2)$$
... I have prepared a Python program to bring some of the $(a,..,z)$ tuples that applied to the polynomial shown in the paper provide prime numbers. The questions are at the end of the explanation.
Probably I am doing something wrong or I did not understand exactly how to use the polynomial, but I can not obtain a single correct example of tuple. This is the Python code (please be free to use it and modify it). I have tried to be careful about the parenthesis (but could be wrong). It takes random positive vales for $(a,..,z)$ and apply them to the polynomial, but unfortunately so far I did not get any good example:
def dp():
from random import randint
lop=
test_limit=30000
times=1000
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
j=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
while (times!=0):
r2=((w*z)+h+j-q)**2
r3=((((g*k)+(2*g)+k+1)*(h+j))+h-z)**2
r4=((2*n)+p+q+z-e)**2
r5=((16*((k+1)**3)*(k+2)*((n+1)**2))+1-(f**2))**2
r6=(((e**3)*(e+2)*((a+1)**2))+1-(o**2))**2
r7=((((a**2)-1)*(y**2))+1-(x**2))**2
r8=((16*(r**2)*(y**4)*((a**2)-1))+1-(u**2))**2
r9=(((a+((u**2)*((u**2)-1)))**2)+1-((x+(c*u))**2))**2
r10=(n+l+v-y)**2
r11=((((a**2)-1)*(l**2))+1-(m**2))**2
r12=((a*i)+k+1-l-i)**2
r13=(p+(l*(a-n-1))+(b*((2*a*n)+(2*a)-(n**2)-(2*n)-2))-m)**2
r14=(q+(y*(a-p-1))+(s*((2*a*p)+(2*a)-(p**2)-(2*p)-2))-x)**2
r15=(z+(p*l*(a-p))+(t*((2*a*p)-(p**2)-1))-(p*m))**2
r1=(1-r2-r3-r4-r5-r6-r7-r8-r9-r10-r11-r12-r13-r14-r15)
res=(k+2)*r1
if res>0:
print(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z)
print(res)
times=times-1
a=randint(1,test_limit)
b=randint(1,test_limit)
c=randint(1,test_limit)
d=randint(1,test_limit)
e=randint(1,test_limit)
f=randint(1,test_limit)
g=randint(1,test_limit)
h=randint(1,test_limit)
i=randint(1,test_limit)
j=randint(1,test_limit)
k=randint(1,test_limit)
l=randint(1,test_limit)
m=randint(1,test_limit)
n=randint(1,test_limit)
o=randint(1,test_limit)
p=randint(1,test_limit)
q=randint(1,test_limit)
r=randint(1,test_limit)
s=randint(1,test_limit)
t=randint(1,test_limit)
u=randint(1,test_limit)
v=randint(1,test_limit)
w=randint(1,test_limit)
x=randint(1,test_limit)
y=randint(1,test_limit)
z=randint(1,test_limit)
dp()
According to the paper, when nonnegative integers are substituted for those variables, the positive values of the polynomial coincide exactly with the set of all prime numbers, and the polynomial also takes on negative values (those values are out of the target, so that point about the negative values is understood).
But I am not being able to obtain a single correct value, so I would like to ask the following questions:
Please if somebody could provide an online resource where some of these valid $(a,..,z)$ tuples are available (or some tested samples in the answer, tuple and obtained value) so I can check my code versus a correct tuple to find the possible error I would be very grateful.
I thought that any tuple $(a,..,z)$ with all $a,..,z$ nonnegative values provides a prime number if the value of the polynomial is positive, but I am getting with all nonnegative tuples positive values of the polynomial that are not primes. Did I misunderstand the explanation of the paper? Thank you!
elementary-number-theory polynomials reference-request prime-numbers online-resources
elementary-number-theory polynomials reference-request prime-numbers online-resources
edited Apr 13 '17 at 12:21
Community♦
1
1
asked Feb 28 '17 at 0:15


iadvdiadvd
5,452102656
5,452102656
1
$begingroup$
Look at the structure of the polynomial. It's $k+2$ times something which is $1$ minus a bunch of squares. If any of those squares is not $0$, the whole thing is useless. So we need to be able to find other $25$ numbers, given a $k$, that make each of the $25$ numbers you're squaring equal to $0$. It is highly highly unlikely you'd find them by brute force.
$endgroup$
– Bob Jones
Feb 28 '17 at 0:36
$begingroup$
@BobJones thank you for the feedback. I see... I hope to find one or two examples online to see how they look like.
$endgroup$
– iadvd
Feb 28 '17 at 1:32
$begingroup$
Today I found the following online resource, but it is also based on the calculation of random tuples ahonga.fr/js/primes/primesJones-5.html
$endgroup$
– iadvd
Mar 1 '17 at 6:35
add a comment |
1
$begingroup$
Look at the structure of the polynomial. It's $k+2$ times something which is $1$ minus a bunch of squares. If any of those squares is not $0$, the whole thing is useless. So we need to be able to find other $25$ numbers, given a $k$, that make each of the $25$ numbers you're squaring equal to $0$. It is highly highly unlikely you'd find them by brute force.
$endgroup$
– Bob Jones
Feb 28 '17 at 0:36
$begingroup$
@BobJones thank you for the feedback. I see... I hope to find one or two examples online to see how they look like.
$endgroup$
– iadvd
Feb 28 '17 at 1:32
$begingroup$
Today I found the following online resource, but it is also based on the calculation of random tuples ahonga.fr/js/primes/primesJones-5.html
$endgroup$
– iadvd
Mar 1 '17 at 6:35
1
1
$begingroup$
Look at the structure of the polynomial. It's $k+2$ times something which is $1$ minus a bunch of squares. If any of those squares is not $0$, the whole thing is useless. So we need to be able to find other $25$ numbers, given a $k$, that make each of the $25$ numbers you're squaring equal to $0$. It is highly highly unlikely you'd find them by brute force.
$endgroup$
– Bob Jones
Feb 28 '17 at 0:36
$begingroup$
Look at the structure of the polynomial. It's $k+2$ times something which is $1$ minus a bunch of squares. If any of those squares is not $0$, the whole thing is useless. So we need to be able to find other $25$ numbers, given a $k$, that make each of the $25$ numbers you're squaring equal to $0$. It is highly highly unlikely you'd find them by brute force.
$endgroup$
– Bob Jones
Feb 28 '17 at 0:36
$begingroup$
@BobJones thank you for the feedback. I see... I hope to find one or two examples online to see how they look like.
$endgroup$
– iadvd
Feb 28 '17 at 1:32
$begingroup$
@BobJones thank you for the feedback. I see... I hope to find one or two examples online to see how they look like.
$endgroup$
– iadvd
Feb 28 '17 at 1:32
$begingroup$
Today I found the following online resource, but it is also based on the calculation of random tuples ahonga.fr/js/primes/primesJones-5.html
$endgroup$
– iadvd
Mar 1 '17 at 6:35
$begingroup$
Today I found the following online resource, but it is also based on the calculation of random tuples ahonga.fr/js/primes/primesJones-5.html
$endgroup$
– iadvd
Mar 1 '17 at 6:35
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
You get a positive value of $k+2$ if and only if all the squares in the second factor turn out to be $0$. If you just try random values for the variables, that will be extremely unlikely to be the case. You should follow the paper to see what values the different variables should have. This is essentially a clever encoding of Wilson's theorem, with $f = (k+1)!$.
$endgroup$
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
1
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
add a comment |
$begingroup$
There is an M.Sc. thesis by Gupta which does take the trouble to find the values of all 26 variables to generate the prime 2. It's available here. The value of a, for instance, is
a = 901690358098896161685556879749949186326380713409290912.
Best regards, Humberto.
$endgroup$
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2164592%2fgenerating-correct-a-z-tuples-for-the-polynomial-defined-in-diophantine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
You get a positive value of $k+2$ if and only if all the squares in the second factor turn out to be $0$. If you just try random values for the variables, that will be extremely unlikely to be the case. You should follow the paper to see what values the different variables should have. This is essentially a clever encoding of Wilson's theorem, with $f = (k+1)!$.
$endgroup$
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
1
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
add a comment |
$begingroup$
You get a positive value of $k+2$ if and only if all the squares in the second factor turn out to be $0$. If you just try random values for the variables, that will be extremely unlikely to be the case. You should follow the paper to see what values the different variables should have. This is essentially a clever encoding of Wilson's theorem, with $f = (k+1)!$.
$endgroup$
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
1
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
add a comment |
$begingroup$
You get a positive value of $k+2$ if and only if all the squares in the second factor turn out to be $0$. If you just try random values for the variables, that will be extremely unlikely to be the case. You should follow the paper to see what values the different variables should have. This is essentially a clever encoding of Wilson's theorem, with $f = (k+1)!$.
$endgroup$
You get a positive value of $k+2$ if and only if all the squares in the second factor turn out to be $0$. If you just try random values for the variables, that will be extremely unlikely to be the case. You should follow the paper to see what values the different variables should have. This is essentially a clever encoding of Wilson's theorem, with $f = (k+1)!$.
answered Feb 28 '17 at 0:37
Robert IsraelRobert Israel
325k23215469
325k23215469
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
1
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
add a comment |
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
1
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
$begingroup$
thank you very much for the explanation! I see, the code above is just an example, I also tried a loop of all the values from 0 to 1000 but I was not lucky. Please may I ask if you know an online resource where to see one or two valid values of the polynomial? In the paper, well the diophantine expressions base of the polynomial are given but in my case the explanation is sometimes hard to follow. As per your kind explanation it was not so straightforward as I thought.
$endgroup$
– iadvd
Feb 28 '17 at 0:55
1
1
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
$begingroup$
It does seem a bit confusing because the variables are not consistent from one lemma to another...
$endgroup$
– Robert Israel
Feb 28 '17 at 2:09
add a comment |
$begingroup$
There is an M.Sc. thesis by Gupta which does take the trouble to find the values of all 26 variables to generate the prime 2. It's available here. The value of a, for instance, is
a = 901690358098896161685556879749949186326380713409290912.
Best regards, Humberto.
$endgroup$
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
add a comment |
$begingroup$
There is an M.Sc. thesis by Gupta which does take the trouble to find the values of all 26 variables to generate the prime 2. It's available here. The value of a, for instance, is
a = 901690358098896161685556879749949186326380713409290912.
Best regards, Humberto.
$endgroup$
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
add a comment |
$begingroup$
There is an M.Sc. thesis by Gupta which does take the trouble to find the values of all 26 variables to generate the prime 2. It's available here. The value of a, for instance, is
a = 901690358098896161685556879749949186326380713409290912.
Best regards, Humberto.
$endgroup$
There is an M.Sc. thesis by Gupta which does take the trouble to find the values of all 26 variables to generate the prime 2. It's available here. The value of a, for instance, is
a = 901690358098896161685556879749949186326380713409290912.
Best regards, Humberto.
answered Jan 19 at 13:17


Humberto José BortolossiHumberto José Bortolossi
334
334
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
add a comment |
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
$begingroup$
@HumbertoJoseBortolossi thanks for the reference!
$endgroup$
– iadvd
Jan 21 at 4:02
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2164592%2fgenerating-correct-a-z-tuples-for-the-polynomial-defined-in-diophantine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
Look at the structure of the polynomial. It's $k+2$ times something which is $1$ minus a bunch of squares. If any of those squares is not $0$, the whole thing is useless. So we need to be able to find other $25$ numbers, given a $k$, that make each of the $25$ numbers you're squaring equal to $0$. It is highly highly unlikely you'd find them by brute force.
$endgroup$
– Bob Jones
Feb 28 '17 at 0:36
$begingroup$
@BobJones thank you for the feedback. I see... I hope to find one or two examples online to see how they look like.
$endgroup$
– iadvd
Feb 28 '17 at 1:32
$begingroup$
Today I found the following online resource, but it is also based on the calculation of random tuples ahonga.fr/js/primes/primesJones-5.html
$endgroup$
– iadvd
Mar 1 '17 at 6:35