Live data from Hacker News

Temperature Conversion: Mental Calculation (2014)

susam.in

41–50 of 57 posts

Re: Temperature Conversion: Mental Calculation (2014)

#41
post #30

I memorize some 10s. 0 is 32, 10 is 50, 20 is 68, 30 is 86. Extend beyond what’s memorized by using the ratio 10/18. I don’t have 40 memorized, but it’s easy to figure that it’s 104. Then use the approximation of 1C=2F to fill in the gaps. High today is 34? That’s 94. Thermostat says 72? That’s 22.

If you are ok with being slightly off, you can combined memorizing tens with the approximation that 1C = 2F. Going up or down from the nearest 10C, you’ll never be off by more than 1F.

Re: Temperature Conversion: Mental Calculation (2014)

#42
post #33

Earlier quoted context omitted.

Which cup?

In case you are not from the US, an official freedom unit of volume is a cup which equals 8 fluid ounces (not the same as ounces which are a unit of weight; yeah it really is that dumb). Almost all cooking recipes use teaspoons (5ml), tablespoons (15 ml), or fractions of a cup (1 fluid oz, 29 ml or so), including for measuring things like cheese, herbs, pasta, etc. No American recipe website will ever say “use 200 gr…

And American Fluid Oz are not the same as real Imperial Fluid Oz which is another difference to work with.

Re: Temperature Conversion: Mental Calculation (2014)

#43
post #37
post #35

The way I convert is to remember that 32°F is 0°C and then count by "nines" for Fahrenheit to get the desired temperature in Celsius. 32°F = 0°C 41°F = 5°C 50°F = 10°C 59°F = 15°C 68°F = 20°C 77°F = 25°C 86°F = 30°C 95°F = 35°C It's also pretty easy to remember that 10°C = 50°F and 35°C = 95°F if you want to go forward or back from there with the same counting method.

For weather purposes the approximation seems accurate enough. Here’s a table listing the differences: http://tomgermeau.com/tools/FC/

This is not an approximation. The conversion formula is:

C = 5/9 * (F - 32)

So GP's table is exact.

Re: Temperature Conversion: Mental Calculation (2014)

#44
The refined C to F conversion given is:

  F = 2*(C-floor(C/10)) + 31
Better is:

  F = 2*C - round(2*C/10) + 32
That's almost as easy to do in your head, but always gives the same result as doing the exact conversion and rounding that:

  F = round(9*C/5+32)
Also, if you would like the exact conversion, when you do the round(2*C/10) you can note how much the round changed the value, and that tells you how far off your final integer F temperature is from the actual value. You are high by that amount if the rounding was down, or low by that amount if the rounding went up.

Re: Temperature Conversion: Mental Calculation (2014)

#45
post #33

Earlier quoted context omitted.

Which cup?

In case you are not from the US, an official freedom unit of volume is a cup which equals 8 fluid ounces (not the same as ounces which are a unit of weight; yeah it really is that dumb). Almost all cooking recipes use teaspoons (5ml), tablespoons (15 ml), or fractions of a cup (1 fluid oz, 29 ml or so), including for measuring things like cheese, herbs, pasta, etc. No American recipe website will ever say “use 200 gr…

Or how many sticks of margarine, according to their favourite margarine brand.

Re: Temperature Conversion: Mental Calculation (2014)

#47

For setting the a thermostat, it's not that hard to simply switch your brain over and know what's comfortable inherently in either F or C without doing a conversion back and forth. For accurate conversion, if c=(f-32)/1.8 or the converse is really that troublesome, Google can help you out.

For setting a thermostat, it rarely matters enough for you to know the exact value you want. I can get within a degree or so just by memorizing a handful of conversions and then interpolating between them.

Re: Temperature Conversion: Mental Calculation (2014)

#48

Or we can stop using freedom units and join the rest of the world. Take a small step to make this happen right now: set your phone and thermostat to show you the temperature in Celsius. I did this and my kids are growing up with an intuitive understanding of what 20 degrees C feels like.

I don't find the range of temperatures of distilled water at sea level from freezing to boiling particularly useful for thinking about the weather. A more arbitrary scale like F works just as well maybe even better since 100F is too hot. However 0 as the temperature your seedlings will freeze is useful so C has that going for it.

Re: Temperature Conversion: Mental Calculation (2014)

#49
post #37

Earlier quoted context omitted.

For weather purposes the approximation seems accurate enough. Here’s a table listing the differences: http://tomgermeau.com/tools/FC/

This is not an approximation. The conversion formula is: C = 5/9 * (F - 32) So GP's table is exact.

The article refers to C = 2 * (F - 30) as an approximation
Post reply on HN