42nd Mersenne Prime Confirmed 296
Jazzer_Techie writes "The possible Mersenne Prime discovered last week has now been confirmed. This prime has 7,816,230 digits, which makes it not only the largest Mersenne Prime, but also the largest prime of any kind ever discovered. For those who don't want to take time to read the article, the prime is 2^25,964,951 - 1."
2^25,964,951 - 1 (Score:5, Funny)
Re:2^25,964,951 - 1 (Score:5, Funny)
Here's an Exclusive Binary Preview!
11111111111111111111111111111111
11111111111111111111111111111111
11111111111111111111111111111111...
--Your free demo has expired. For access to the rest of this content, please subscribe!--
Re:2^25,964,951 - 1 (Score:5, Funny)
Re:2^25,964,951 - 1 (Score:5, Funny)
M42.gz.gz.base64 (Score:5, Interesting)
Re:2^25,964,951 - 1 (Score:2)
Re:2^25,964,951 - 1 (Score:2, Informative)
Re:2^25,964,951 - 1 (Score:3, Funny)
2^25,964,951 - 1
Voila!
Torrent (Score:4, Funny)
M42.torrent [simplecache.com]
Some good times testing bandwidth
Re:Torrent (Score:2)
Re:2^25,964,951 - 1 (Score:2, Informative)
echo "2^25964951-1"|bc -l>prime
If you put 'time' in front, the system will tell you how long it takes.
Just checked that 2^1000000 took about 8,5s, but it is not linear. I expect it to take some 15 minutes one my AMD64
Re:2^25,964,951 - 1 (Score:2)
Re:2^25,964,951 - 1 (Score:2)
In binary, it's just a fucking lot of 1's (25,964,951 of them, almost 26 megabytes). If you could even count them all to be sure it's right, I'd be incredibly impressed. In decimal it's still really huge and looks incredibly complicated.
Comment removed (Score:5, Funny)
PARENT NOT FLAMEBAIT (GIMPS:name of project) (Score:4, Informative)
Re:Man. (Score:3, Funny)
All I know is this: Stephen Hawking is married to a real woman and I'm not.
OMG (Score:4, Funny)
2^25,964,951 - 1.
Is my password! Oh Man, I guess everyone knows it now....
Re:OMG (Score:2)
Re:OMG (Score:2)
Is my password! "
Really? That's the password on my luggage! Now I have to get my dark sith to change it for me!
And useful, too! (Score:5, Funny)
to put this into perspective (Score:3, Funny)
Wow...
Re:to put this into perspective (Score:4, Funny)
So??
Bill G.
Re:And useful, too! (Score:2)
I'm going to use 2 as the second prime.
-
Its the answer! (Score:5, Funny)
Re:Its the answer! (Score:2)
Re:Its the answer! (Score:2)
!!! YES! Douglas Adams would be proud!
Re:Its the answer! (Score:2)
[For you others, check Hitchiker's Guide to the Galaxy]
Re:Its the answer! (Score:2)
Participate in the search (Score:5, Informative)
They have Windows, Linux, FreeBSD, and OS/2 clients.
Re:Participate in the search (Score:2)
42!!! (Score:4, Funny)
Re:42!!! (Score:3, Insightful)
Re:42!!! (Score:3, Funny)
Why? (Score:4, Insightful)
Re:Why? (Score:5, Funny)
I believe the search for Mersenne primes continues solely for the purpose of impressing women in bars. No, I don't think it would work either.
Re:Why? (Score:4, Informative)
Note: This new prime number by itself is USELESS for encryption. There are only 42 Mersenne numbers, so they can't be used because there are insufficiently many.
Re:Why? (Score:4, Funny)
Re:Why? (Score:2, Insightful)
Re:Why? (Score:2)
Re:Why? (Score:5, Interesting)
There are two types. One is deterministic, and will give you absolute proof that the tested number is prime. The other type is probability based. These are more popular. The most widely used is known as the Miller-Rabin test. It is known to be absolutely correct for all n 3*10^16. For larger n, it will never report a composite to be prime, but there is a small (around 10^-20) chance the "prime" number will be composite. There are no known prime numbers that Miller-Rabin reports to be composite.
In the case of Mersenne numbers, it's a different story. There is a deterministic algorithm called the Lucas-Lehmer test. This will determine whether 2^p-1 is prime with O-notation p! The catch of course is that it only works for Mersenne numbers.
Re:Why - algorithm (Score:2)
Re:Why? (Score:2)
Primality is in P in fact. It is just not a very conveniently low exponent (about O(n^9) dropping to about O(n^6) for most cases) so porbablistic algorithms are still the popular way to go.
Jedidiah.
Re:Why? (Score:2)
I'm certain that you can prove that no prime numbers will ever be reported composite by the definition of the test, but I don't have any number theory texts around me. I'm sure you can just look it up online. Or probably in Schneier's Applied Cryptography, too.
If it didn't do that, the test would be useless.
Re:Why? (Score:2)
Actually you got that first statement the wrong way around (and the second one right; they're in conflict with each other if you think about it). The Miller-Rabin test may report a composite to be prime, but may never report a prime to be composite.
Also, the chance is (1/4)^n, where n is the number of bases you test the number against. So if you choose more bases, t
Re:Why? (Score:2)
If you read the Wikipedia article, you'll see:
It can be shown that there always exists a strong witness for any odd composite n, and that at least 3/4 of the values for a are strong witnesses for the compositeness of n.
Also Mathworld [wolfram.com] says:
If N multiple independent tests are performed on a composite number, then the probability that it passes each test is 1/4^N or less.
And according to this page [abdn.ac.uk]:
Choose k i
Re:Why? (Score:4, Funny)
Unless the number in question is composite. In that case, it is MUCH easier to find factors of it, than to prove that it is a prime.
Re:Why? (Score:2)
Re:Why? (Score:2)
Great! Now all we have to do is find a way to prove that ALL numbers are prime, and our factoring needs will be a thing of the past!
Re:Why? (Score:2)
With each iteration, you increase a power of 1/2 that your "unknown" number is actually prime. So if it makes it through 20 iterations, it's 1/2^20 that it's composite, and 1 - 1/2^20 that it's prime.
I'm not sure where the grandparent got his 10^-20 number.
Re:Why? (Score:2)
Re:Why? (Score:2)
Re:Why? (Score:2)
Re:Why? (Score:2)
Here's one possible value: 2^25,964,951 - 1.
Might not be the 42nd largest (Score:4, Informative)
From TFA:
However, note that the region between the 39th and 40th known Mersenne primes has not been completely searched, so it is not known if M20,996,011 is actually the 40th Mersenne prime.
Re:Might not be the 42nd largest (Score:5, Informative)
It is easily proven that there ISN'T a 42nd largest prime, because there isn't a largest prime.
Re:Might not be the 42nd largest (Score:2)
Re:Might not be the 42nd largest (Score:2)
Nice try though
Re:Might not be the 42nd largest (Score:2)
~phil
Re:Might not be the 42nd largest (Score:2)
Re:Might not be the 42nd largest (Score:2)
Re:Might not be the 42nd largest (Score:3, Insightful)
Mersenne GIMPS FAQ (Score:5, Insightful)
One glaring ommission from the FAQ is "Why participate in this?" I guess if you have to ask why, there's no point in asking.
Re:Mersenne GIMPS FAQ (Score:2)
One glaring ommission from the FAQ is "Why participate in this?" I guess if you have to ask why, there's no point in asking.
You're right, compared to protein folding, cancer research, and other research projects there is no good reason to run GIMPS. Heck even SETI@home could return something useful. But there are a couple reasons to do it:
Re:Mersenne GIMPS FAQ (Score:2)
Finding new and interesting numbers is the mathematical equivalent of climbing Mt. Everest -- you do it because they are there.
I wonder (Score:2, Funny)
Re:I wonder (Score:2)
Use the number of men she's been slammed by to encrypt her cell phone data? BRILLIANT!
Largest known perfect number? (Score:3, Insightful)
Re:Largest known perfect number? (Score:5, Informative)
(2^n-1)*2^n. The given form does not apply to odd perfect numbers, but it is unknown whether any odd perfect numbers exist.
Re:Largest known perfect number? (Score:2)
Re:Largest known perfect number? (Score:5, Informative)
A number which is the product of all its divisors except itself is, well, any product of exactly two primes.
Re:Largest known perfect number? (Score:2)
Euclid only proved that any integer of the form ((2^n)-1)*2^n is a perfect number when (2^n)-1 is prime.
Years later, Euler proved that every even perfect number is of this form, i.e. there are no even perfect numbers not of this form.
Wikipedia reference [wikipedia.org]
Next Mersenne Prime (Score:2, Funny)
"Not only" the largest Mersenne prime ... (Score:5, Informative)
Looking for Mersennes is "picking the low fruit" when it comes to prime hunting so I question the phrasing "Not only is it the biggest Mersenne
What would have been remarkable would have been if the new largest prime were *not* a Mersenne.
Re:"Not only" the largest Mersenne prime ... (Score:2, Informative)
391581*2^216193-1 was the largest known prime from 1989 to 1992. Before that, the last non-Mersenne record was 1951-1952. A complete list can be found here [utm.edu].
Re:"Not only" the largest Mersenne prime ... (Score:2)
Numbers of the form k*2^n+1 are pretty dense and also easy to test, but not the gold mine that Mersennes are.
Big Deal - Javascript!! (Score:5, Funny)
Re:Big Deal - Javascript!! (Score:2)
You've just brightened the day for hundreds of people.
2417 and counting...
Anybody else notice... (Score:3, Interesting)
Now all you get is "the number you have dialed is not a working number"
Could this be the first telephone slashdotting in history!?
Re:Anybody else notice... (Score:2)
and our final news of today... (Score:2)
One use of Mersenne Primes... (Score:3, Informative)
Pseudorandom number generators are periodic, that is they start repeating the sequence of "random" numbers, after a while. This is bad. The period of the MT is as big as the Mersenne Prime that you choose to base the algorithm on. So, if you wanted a REALLY long period, you could use this new prime. In practice, however, very few people need this long of a period.
Shift the "unsed" computational power... (Score:4, Insightful)
No, not SETI@home (which is about as useful as GIMPS), can't folks please switch to something like the UD/NFCR "Screensaver Lifesaver" that processes some various highly computationally intensive biological problems (ligand fitting, etc.) related to a number of issues (these are directed at cancer research, specifically):
- http://www.chem.ox.ac.uk/curecancer.html
- http://www2.nfcr.org/site/PageServer?pagename=scr
- http://www.grid.org/download/gold/download.htm
I don't know, maybe it's just me, but when I hear of all the people running GIMPS, SETI@home, etc. etc., I feel a tiny bit sad that maybe all those unused cycles could be used towards something more useful, but not as sexy...
Re:Shift the "unsed" computational power... (Score:2)
Re:Shift the "unsed" computational power... (Score:2)
Damn, I thought it said... (Score:3, Funny)
And a REALLY hot cup of tea... (Score:2, Insightful)
Re:prime post (Score:2, Funny)
That's an even number, so your post wasn't prime. Liar!
Re:not me (Score:2)
Re:not me (Score:2)
1 is not a prime (Score:2)
Please take a math class before posting on this subject.
Re:1 is not a prime (Score:3, Funny)
Re:Largest Prime? (Score:4, Informative)
Re:Largest Prime? (Score:2)
Re:Largest Prime? (Score:2, Funny)
2*3 - 1 = 5
2*3*5 - 1 = 29
2*3*5*7 - 1 = 209 = 11*19
haha just kidding.
Re:Largest Prime? (Score:2)
Want pi now! (Score:2)
No, it's a Wobbl and Bob section, of course! Go watch an episode [jolt.co.uk] or two or three point one four; when come back bring Pi.
Chudnovsky Brothers? (Score:2)
Re:Darren Aronofski section? (Score:2)
Re:Darren Aronofski section? (Score:2)
Re:I have the next largest prime after this one (Score:2)