Earlier quoted context omitted.
This is similar in Canada Yes, it's difficult to make people think about it. At the same time, sometimes the units "don't matter" (like speed limits, 50 is 50 in the speedometer, just make sure you're not looking at the mph scale) I want to slap somebody when I hear about "pounds" or "feet/sq ft", or even worse, Fahrenheit (since this is a non-linear transform) At least everything in the supermarket is marked per pou…
> Fahrenheit (since this is a non-linear transform) huh?
1. F(c1 + c2) = F(c1) + F(c2)
2. F(k*c1) = k*F(c1)
Converting from Celsius->Fahrenheit (or vice versa) is does not have these properties. F(c) = 9/5 * c + 32
F(c1 + c2) = 9/5 * (c1 + c2) + 32
F(c1) + F(c2) = (9/5 * c1 + 32) + (9/5 * c2 + 32) = 9/5 * (c1 + c2) + 64
F(k*c1) = 9/5 * (k*c1) + 32
k*F(c1) = k * (9/5 * c1 + 32) = 9/5 * (k*c1) + k*32
Admittedly, I'm not entirely sure why being a non-linear transform gets the OP so riled up.