Live data from Hacker News

A mathematician's way of converting miles to kilometers

twitter.com

11–20 of 208 posts

Re: A mathematician's way of converting miles to kilometers

#11

Triple the initial number, add a zero at the end, now halve the resulting number is good enough for my purpose. Brain is surprisingly good at doubling, tripling and halving operations. And visually added zero is quite easy too.

That converts miles to approximate hectometres.

Re: A mathematician's way of converting miles to kilometers

#13

The pendulum has now swung the other way on the misconception by the general public of mathematicians being great at mental arithmetic, and it's become a meme for some mathematicians to take some pride in being average or poor at mental arithmetic. In my experience, most mathematicians (or anyone working in a quantitative field) don't have issues quickly approximating 1.6 * X.

It seems to have swung from the old joke of "von Neumann summed the infinite series" to exactly the same place.

Re: A mathematician's way of converting miles to kilometers

#14
post #10

Fascinating that the second reply (or second best reply?) is an unreasonably angry response: Who the hell needs all this .. Get lost [angry emoji]

There are a fair number of people who seem to take personal offense that the US (and to some degree the UK) don't use SI for everyday types of things and add it to their laundry list of grievances about the US generally.

Never mind the fact that SI is generally used for engineering and other areas where it has legitimate advantages (which miles vs. kilometers doesn't really in day-to-day life).

Re: A mathematician's way of converting miles to kilometers

#16

Triple the initial number, add a zero at the end, now halve the resulting number is good enough for my purpose. Brain is surprisingly good at doubling, tripling and halving operations. And visually added zero is quite easy too.

   *3, *10, /2 == *15 
I think you forgot a /10 at the end?

I'm surprised this is faster than adding half of the original number.

Re: A mathematician's way of converting miles to kilometers

#17

The pendulum has now swung the other way on the misconception by the general public of mathematicians being great at mental arithmetic, and it's become a meme for some mathematicians to take some pride in being average or poor at mental arithmetic. In my experience, most mathematicians (or anyone working in a quantitative field) don't have issues quickly approximating 1.6 * X.

Anybody who's taken CS 101 can estimate 1.6 * n too since they spend half the year in base2 or base16.

It's 1(n) + 6(n)/10 since we're using base 10. For example, 5mi to ~8km: 1(5) + 6(5)/10 = 5 + 30/10 or 5 + 3.

Re: A mathematician's way of converting miles to kilometers

#18
post #11

Triple the initial number, add a zero at the end, now halve the resulting number is good enough for my purpose. Brain is surprisingly good at doubling, tripling and halving operations. And visually added zero is quite easy too.

That converts miles to approximate hectometres.

It's within 10% error.
Post reply on HN