42nd Mersenne Prime Probably Discovered
RTKfan writes "Chalk up another achievement for distributed computing! MathWorld is reporting that the 42nd, and now-largest, Mersenne Prime has probably been discovered. The number in question is currently being double-checked by George Woltman, organizer of GIMPS (the Great Internet Mersenne Prime Search). If this pans out, GIMPS will have been responsible for the eight current largest Mersenne Primes ever discovered."
... the moment they discovered the 42nd prime, the world was immediately destroyed to make way for an intergalactic superhighway.
Chics dig it.
Someone you trust is one of us.
From mathworld (whose link is in the summary)
A Mersenne prime is a Mersenne number, i.e., a number of the form
2^n - 1
that is prime. In order for it to be prime, n must itself be prime.
A Mersenne number is all ones when written in binary. If its prime, it is a Mersenne prime.
Can someone explain what the application/use these primes are for? Not a flame, I'm honestly curious as to what something like this could be used for, as are others, I'm sure.
The theory is that there is an infinite number of these numbers, but they are unlikely to prove the theory by finding them all...
A prime of the form (2^n)-1. This means that in binary, it's a big string of "1"s.
The reason that mersenne primes are usually the biggest is because for primes of this form, there is a primality test (Lucas-Lehmer) that is exceedingly efficient.
A mersenne Prime is a prime number that is one less than the power of two. Hence:
Mn = 2^n - 1.
Mersenne primes have a connection with Perfect Numbers (numbers that are equal to the sum of their proper divisors) where by if M is a Mersenne prime, then M(M+1)/2 is a perfect number.
Vivin Suresh Paliath
http://vivin.net
I like
Call me when a distributed computing project finds Fruit Fucker Prime.
3D Printing Tips and Tricks at Zheng3.com
Reminds me of the first BlackAdder episode
Lord Percy: "The King is dead! L-"
Prince Harry [interrupting]: "Probably dead."
Lord Percy: "The King is probably dead!"
Don't read any farther if you don't like spoilers.
Seriously, don't reead any farther....
It only has two factors.
Either that or their eyes glaze over and you sneak a quick peck before they slap you silly.
"ah, l'amour"
A feeling of having made the same mistake before: Deja Foobar
I'm not sure what else they're actually good for, but searching for these with Prime95 is a great way of putting the flame to your CPU.
Prime95 (which searches for these primes) really puts a load on the CPU and raises the temperature in a hurry. It's commonly used to test the stability of overclocking configurations since it stresses the chip and is able to detect if there is an error in the computation.
Generally, if you can run Prime95 for 24 hours straight, most people will consider the overclocked PC a stable configuration.
>What is number going to for us? Is it going to feed us? No. It would be better if the computer power was used for cancer research or finding aliens.
Because of course aliens will feed us...
They even will bring a cookbook with them, "To Serve Mankind."
You can't talk about Wikipedia's flaws on Wikipedia
Well, yeah, if you encode the Prime number in Binary it will not look Random at all. It will look like a giant string of 1s though... Aliens might mistake it for filler or something.
I read the internet for the articles.
If this pans out, GIMPS will have been responsible for the eight current largest Mersenne Primes ever discovered.
In your face, Photoshop!
This has not yet been confirmed, therefore there could be less than 42 known Mersenne primes.
Hovewer, according to MathWorld, there is a chance that it is not the 42nd Mersenne prime at all for another reason
"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.."
Looks like the big math guys don't exactly know how to count at all
Back in the dark ages when I was in university, I took a class called "Mathematics and Poetry". I thought it would be a useful bird course in my senior year, but it turned out to be both interesting and challenging.
As part of the course, we studied Mersenne primes. At the time, I was dabbling in x86 assembler, and I decided to write a program to calculate the then largest known Mersenne prime number: 2^31 - 1, which worked out to 65,050 digits.
The size worked out perfectly, as in 1989 that meant it could fit into one 65KB segment on my blazing-fast 8Mhz 8088. As I recall, the runtime was about two days. The program still works--I can't remember how long it took to run on a 3Ghz P4, but I think it was just a few minutes.
I'm sure any competent programmer (read--not me) could calculate the result much faster, but at the time I was very proud of my little creation.
Hi darling, ooh is that a gigantic Mersenne Prime, or are you just pleased to see me?
"You lied to me! There is a Swansea!"
Yeah, except that the Mersenne primes are well known and thus useless for cryptography -- at least, if you want any security.
Might want to check your math:
2^2 = 4
4 - 1 = 3
2^3 = 8
8 - 1 = 7
2^4 = 16
16-1 = 15
"Give away the stone, let the oceans take and transmutate this cold and faded anchor." - Maynard James Keenan
Wrong theory. That is for primes in general. "These numbers" refers to just the Mersenne primes.
That's not actually the argument for why the number of primes is infinite. Rather, assume there are only finitely many prime numbers. Multiply all of them together. Add one to this number. It is easy to show that this number is not divisible by any of the finitely many primes you started with. Hence it must be a prime number as well.
IMNSHO, but that was the worst proof of infinite number of primes. Why introduce unique factorizability when you don't need to? Why introduce something foreign that you are not going to prove when there is absolutely no need for it?
The most elegant proof I've seen so far (but I don't know any website showing it, so I can't link to it) is this: For any given N, an integer, consider N!+1, which is greater than N (where N! is defined by N! = 1 * 2 * 3 * ... * N). If this number is divisible by no other number than 1 and N!+1, then we are done (i.e. we have proven that given any arbitrary integer, there is a prime greater than tat integer). If this number is divisible by a prime, than that prime can't be less than or equal to N, since any integer (not equal to 1) less than or equal to N divides N! (see the definition of N!) but does not divide 1. Therefore, the prime that divides N! is greater than N. QED.
This proof involves no assumption (additional to assumptions (i.e. axioms) of the set of integers) other than this (which also happens to be much easier to prove than factorizability into primes): if n divides a + b and n divides a, then n divides b as well.