mersenneforum.org  

Go Back   mersenneforum.org > Extra Stuff > Miscellaneous Math

Reply
 
Thread Tools
Old 2010-08-03, 21:00   #375
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
Oh. Something about 2kp + 1 being the smallest possible divisor?
That rules out \pi(2kp) prime divisors, but you can do *much* better than that.
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 21:01   #376
3.14159
 
3.14159's Avatar
 
May 2010
Prime hunting commission.

24×3×5×7 Posts
Default

His sieve depends on a false idea: That the Mersenne numbers have a covering set of divisors. That is simply false. You would still have to do an endless search for divisors. Suppose you're trying to prove or disprove the primality of 2^56389762853-1. Would you search every single k from 1 to 10^16975010060?

Last fiddled with by 3.14159 on 2010-08-03 at 21:05
3.14159 is offline   Reply With Quote
Old 2010-08-03, 21:03   #377
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
Mersenne numbers do not have any covering set of divisors. The divisors are random. So this sieve would be ineffective and useless.



Oh. Something about 2kp + 1 being the smallest possible divisor?
from http://www.mersenne.org/various/math.php

"One very nice property of Mersenne numbers is that any factor q of 2P-1 must be of the form 2kp+1. Furthermore, q must be 1 or 7 mod 8. A proof is available. Finally, an efficient program can take advantage of the fact that any potential factor q must be prime."
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 21:06   #378
3.14159
 
3.14159's Avatar
 
May 2010
Prime hunting commission.

24·3·5·7 Posts
Default

Quote:
Originally Posted by science_man_88
"One very nice property of Mersenne numbers is that any factor q of 2P-1 must be of the form 2kp+1. Furthermore, q must be 1 or 7 mod 8. A proof is available. Finally, an efficient program can take advantage of the fact that any potential factor q must be prime."
Yes, but they do not have any covering set of divisors. This sieve is useless for any number larger than 20 digits.

Last fiddled with by 3.14159 on 2010-08-03 at 21:06
3.14159 is offline   Reply With Quote
Old 2010-08-03, 21:08   #379
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26×131 Posts
Default

Quote:
Originally Posted by CRGreathouse View Post
To what does "them" refer? For example, suppose you were trying to show that 2^696437724971 - 1 is composite; what are are "they" in this case?

them are indexes proven to hold composites

for 2^696437724971

p=696437724971
index = (p-3)/2

so if I can find out if index is eliminated as possibly prime without factoring by starting with the general equation 6np+/-p then I can prove without doubt if it's prime or not.
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 21:09   #380
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3×1,993 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
look at 5 for example starts at 2 in this case so c = 2
I'm guessing that 5 is your p, that is, the exponent of your supposed Mersenne prime.

c, if your code is unerstood properly, starts at the smallest number C such that (6C\pm1)p\equiv7\pmod{24}. You can get this rather more directly, if you like: just divide 7 by p, mod 24, add or subtract 1 as needed to make a multiple of 6, then divide by 6.
Code:
p=5;round(lift(Mod(7, 24)/p)/6)
Quote:
Originally Posted by science_man_88 View Post
and adds p every time
So you're looking at the arithmetic sequence C, C+p, C+2p, ....

Quote:
Originally Posted by science_man_88 View Post
can we link it to index of a number is the sequence if so then maybe we can find a pattern to show what indexes are wiped.
So you just constructed this without any idea of what to do with it?
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 21:11   #381
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3·1,993 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
Yes, but they do not have any covering set of divisors. This sieve is useless for any number larger than 20 digits.
I said as much in post #371.
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 21:12   #382
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

3×1,993 Posts
Default

Quote:
Originally Posted by 3.14159 View Post
His sieve depends on a false idea: That the Mersenne numbers have a covering set of divisors.
I don't think sm88 is suggesting that.

Edit: That is, I don't think that he is claiming that there is a *finite* set, which is what I assume you're claiming does not exist.

Last fiddled with by CRGreathouse on 2010-08-03 at 21:28
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 21:13   #383
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26·131 Posts
Default

Quote:
Originally Posted by CRGreathouse View Post
I'm guessing that 5 is your p, that is, the exponent of your supposed Mersenne prime.

c, if your code is unerstood properly, starts at the smallest number C such that (6C\pm1)p\equiv7\pmod{24}. You can get this rather more directly, if you like: just divide 7 by p, mod 24, add or subtract 1 as needed to make a multiple of 6, then divide by 6.
Code:
p=5;round(lift(Mod(7, 24)/p)/6)


So you're looking at the arithmetic sequence C, C+p, C+2p, ....



So you just constructed this without any idea of what to do with it?
no I have an idea just can't prove it. really all we have to do is prove if 6np+/-p can ever intercept 4n+1 and is that n a 4n+1 in the sequence if so the number is eliminated. but I wanted to use indexes.
science_man_88 is offline   Reply With Quote
Old 2010-08-03, 21:14   #384
CRGreathouse
 
CRGreathouse's Avatar
 
Aug 2006

175B16 Posts
Default

Quote:
Originally Posted by science_man_88 View Post
so if I can find out if index is eliminated as possibly prime without factoring by starting with the general equation 6np+/-p then I can prove without doubt if it's prime or not.
Ah. So your idea is that, if you find some way to tell if a Mersenne number is composite without factoring it, you'll be able to tell is Mersenne numbers are composite. Further, you think that some method may rely on the fact that composite Mersenne numbers are of the form (6n\pm1)p.
CRGreathouse is offline   Reply With Quote
Old 2010-08-03, 21:15   #385
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26×131 Posts
Default

Quote:
Originally Posted by CRGreathouse View Post
Ah. So your idea is that, if you find some way to tell if a Mersenne number is composite without factoring it, you'll be able to tell is Mersenne numbers are composite. Further, you think that some method may rely on the fact that composite Mersenne numbers are of the form (6n\pm1)p.
is this the polite way of calling me an idiot if so I like it, hurts me a lot less.

look can you tell when 4x+1 = 6np+/-p ? if so is there a way to relate p with x so knowing a p we can prove if a x exist for that p in a quick manner if we can have a quick true false test for this we can figure this out.

Last fiddled with by science_man_88 on 2010-08-03 at 21:20
science_man_88 is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Wheel Factorization a1call Factoring 11 2017-06-19 14:04
Efficient Test paulunderwood Computer Science & Computational Number Theory 5 2017-06-09 14:02
LL tests more credit-efficient than P-1? ixfd64 Software 3 2011-02-20 16:24
A Wheel storm5510 Puzzles 7 2010-06-25 10:29
Most efficient way to LL hj47 Software 11 2009-01-29 00:45

All times are UTC. The time now is 22:03.


Fri Aug 6 22:03:19 UTC 2021 up 14 days, 16:32, 1 user, load averages: 2.93, 2.80, 2.70

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.