Temperature Conversion: Mental Calculation (2014)
1–10 of 57 posts
Re: Temperature Conversion: Mental Calculation (2014)
#2This blog-post is from someone who prefers to do less mental arithmetic, but remember a few numbers: http://www.theexclusive.org/2012/08/converting-fahrenheit-in...
Re: Temperature Conversion: Mental Calculation (2014)
#3C → F: times 2 then plus 30
F → C: minus 30 then divide by 2
Re: Temperature Conversion: Mental Calculation (2014)
#430 C > 86 F
Re: Temperature Conversion: Mental Calculation (2014)
#5Numerical implementations of functions often use look-up tables, and there's sometimes a trade-off between number of operations and memory access. (Large look-up tables aren't cache-friendly.) This blog-post is from someone who prefers to do less mental arithmetic, but remember a few numbers: http://www.theexclusive.org/2012/08/converting-fahrenheit-in...
- It is easy to remember that 0 °C = 32 °F because it is the freezing point of water.
- Every 10 °C interval corresponds to an interval of 18 °F. That's where the 9/5 in the conversion formula F = (9/5) * C + 32 comes from.
- Now it is easy to construct the lookup table: 10 °C = 50 °F, 20 °C = 68 °F, and 30 °C = 86 °F.
Re: Temperature Conversion: Mental Calculation (2014)
#620 C > 68 F 30 C > 86 F
A related joke:
Saul: It's -40 outside.
Paul: Fahrenheit or Celsius?
Saul: When it's that cold, it's impossible to tell the difference.
Re: Temperature Conversion: Mental Calculation (2014)
#7Re: Temperature Conversion: Mental Calculation (2014)
#820C ~ 70F (ok it's 68F but close enough)
a variation of +10F is +5C (same for minus)
Of course you can remember that 32F = 0C, that helps
Re: Temperature Conversion: Mental Calculation (2014)
#9A much faster approximation that is not too far off over the range of everyday non-extreme temperatures: C → F: times 2 then plus 30 F → C: minus 30 then divide by 2