Hacker News new | ask | show | jobs
by drauh 3596 days ago
Oh god. "Formula for primes" - I was involved in a way too long forum discussion where everyone involved was trying to convince the guy putting forth his idea for generating primes that he was merely going round in circles, proving and reproving identities.

As a former physicist, I think that math is way harder to talk about to laypeople, though there can be a wide variation in difficulty by subfield. Maybe number theory can be accessible, but analysis, say, would be pretty opaque. Not to mention some of the more exotic branches of math.

2 comments

I've unfortunately received somewhere around 100 supposed formulas for primes in the past decade and a half. :-(

There's a great Wikipedia article about this:

https://en.wikipedia.org/wiki/Formula_for_primes

But most of what people send me is along the lines of "numbers containing only odd digits, that don't end in 5" or "4k+1 for any k, if it contains only odd digits", or "(p-1)²+7 for any prime p" or whatever. A kind of unfortunate example was an elementary school girl who became convinced that numbers containing only odd digits are always prime (many people are tempted by some form of this idea), and spent several weeks writing such digits down in a composition notebook in order to form an integer that would be big enough to qualify for one of our awards.

And the counterexample of 15 didn't work?
I've come up with counterexamples for every such formula or rule that people have sent me (usually running a Python loop with gmpy2.is_prime() or something), but unfortunately the existence of the counterexamples somehow didn't occur to them before they wrote in in the first place.

https://en.wikipedia.org/wiki/Mathematical_coincidence is a big problem because people will sometimes conjecture a pattern and then find that it holds for 6 or 7 integers and conclude that it's right. Or if they find a counterexample, they might just make a minimal modification to the conjecture and conclude that they're fixed it! So there are lots of these that will say "unless the number is..." and presumably give some other random property that the counterexample that the claimant found had.

It feels like some people think that mathematics works by people guessing rules and then checking them, and regarding the rules as right if they "check out" in practice. (I know that there's been lots of progress made from guesses and conjectures and numerical experiments; the issue is just what comes after the guess!)

> mathematics works by people guessing rules and then checking them

This will sound facetious, but I suspect many people treat great swathes of life this way. My wife has a friend who tries any random googled herb-based cure any time she gets ill. Recovery from this illness, this cold or flu, is always taken as proof of the validity of the cure, regardless of how long she's had to ingest it.

You, reading this, have already thought of half a dozen ways to disprove her cures, as have I, however no amount of evidence can assuage this need to believe. At this point my theory is that this belief forms an intractable part of her personal identity.

At the core of all of this, and perhaps for these "autodidact physicists" as well, seems to be a very primal need to understand the universe in terms comprehendible one's self, regardless the cost.

> mathematics works by people guessing rules and then checking them

This will sound facetious, but I suspect many people treat great swathes of life this way

Including programming. Good programmers are the ones who try to derive the underlying rules, instead of trying something and checking if it works for a couple cases.

Or 9.
Ah. I took "digits" to mean "must be plural", not "could be".
I don't know if we're talking about the same guy and the same forum, but I remember a very similar story on a forum I used to frequent. The guy also had a plan for interplanetary spacecraft propulsion, that involved a weight moving to the back of the craft, being thrown towards the front of the craft where it's caught, and repeating the cycle.

The theory in his mind depended on there being a difference between the weight being 'thrown' and merely being 'moved and released' towards the front of the craft. It took a few patient techies, one of whom was a professional physicist, quite a while to explain that there was no physical difference between 'throw' and 'release'.

Nice bloke, but a classic example of 'not being able to talk the talk', as discussed in the article.