GIMPS Discovers Largest Known Prime Number: 2^136279841 – 1 - https://news.ycombinator.com/item?id=41904237 - Oct 2024 (11 comments)
New Mersenne Prime discovered (probably) - https://news.ycombinator.com/item?id=41858024 - Oct 2024 (120 comments)
GIMPS Discovers Largest Known Prime Number: 2^136279841 – 1 - https://news.ycombinator.com/item?id=41904237 - Oct 2024 (11 comments)
New Mersenne Prime discovered (probably) - https://news.ycombinator.com/item?id=41858024 - Oct 2024 (120 comments)
I can appreciate the sentiment but
> The discovery was the result of almost exactly one year of work and about $2 million of Durant’s own money.
doesn't really show me much especially since
> The prime number Durant discovered serves no real purpose for society.
This sort of shows the opposite: if it takes $2M to discover something that doesn't have a real purpose, yeah I definitely feel a bit helpless against tech giants trying to do anything that is marginally useful.
> Durant, who made his money off the boom, said he put his time and money into the project to show people that they aren’t helpless to technology giants and that we can figure out massive problems if we work together.
If I sold absolutely everything I owned, I would not even have close to half of what it Durant invested in his pet project. While I like his intended sentiment, I can't help but notice the irony.
Not sure how to react to this.
https://youtube.com/playlist?list=PLt5AfwLFPxWIWS5Jd3k5QHdc0...
Quite. I get the point but why not volunteer (to do something) and really show your grit?
Pissing around with M primes and trying to make a point is a bit wank as a stance from a multi-zillionaire.
He isn't helpless (to technology giants and that we can figure out massive problems if we work together.)
... and that's lovely.
9 years ago I asked how much a Mersenne prime is worth to us. I guess we have an answer now.
> I was able to find this number that’s astonishingly large … but I was able to do it just by using big tech’s leftovers.
Did he do this by taking advantage of spot pricing? It isn't actually mentioned how he uses those leftovers in the article.
Hitchhiker's Guide's Deep Thought "42" was 7.5 million years, just for a guide-post.
This algorithm is not practical.
def is_prime(n):
if n < 2:
return False
for i in range(2, int(n ** 0.5) + 1):
if n%i==0:
return False
return True
Haven't tested this, just quickly jotted it down in the HackerNews textarea, but theoretically it should be python code, which checks if n is divisible by any number between 2 and sqrt(n).And wouldn't this algorithm be just O(n), what does the regex engine do differently (except the string overhead)?
E.g, the value of the compute used was 2 million (because Durant bought it), but the prime is worthless, because he can't sell it, or use it for producing any services he can sell.
The point is, that just because something was expensive to make, doesn't mean it has a high value, and conversely (and most importantly) just because something was cheap to make, doesn't mean it isn't high value.
In life, I find a good way to value items is not what it cost to acquire it, but what it will cost to replace.
(Seriously though, it would make a very good April fools' day PR to recognize that particular regex and trigger a non-trivial prime check routine to match them.)
If you're talking about $2M worth of 4090s you have to concern yourself not only with putting them in hosts, but also with adequate space, power distribution, cooling, and networking. You have to figure out how to gracefully handle hardware failures. You have to install operating systems, or at least come up with some mechanism to deploy automatically. And you just straight up have to supply labor to get 1000+ of these things plugged in.
All that before you can get even get to the "fun part". If you're a multi-millionaire you might be willing to just pay the spot price premium.
That said, maybe he felt pressured to give the reporter more than “I was just having fun”.
>In life, I find a good way to value items is not what it cost to acquire it, but what it will cost to replace.
I completely agree with this.
You are talking about him. He is on wikipedia / history forever at least as a footnote whenever you google progression of prime discoveries. If he wants to start some consulting business he is the "guy that discovered the big prime", and so on. This is absolutely something he can bank on down the line, it's weird to call it worthless. Those are things that some people with way more than $2m would probably pay for, they just can't do it.