Disclaimer: No, this isn’t my math homework. Yes, I knew how to do this back when I had math homework. Alas, that homework is now decades behind me. I recognize that using “math” as a verb is goofy but that doesn’t stop me.
Help me math!
Say that, for some reason, you had a software system that took a distance measured in kilometers, converted that distance into miles, and then passed the miles measurement to another system that converted it back into kilometers. Crazy, right? “Who would do that!?”, a reasonable person might shout at the screen. Well, calm down. It’s just a hypothetical. Maybe.
Given such an implausible system, how would you calculate the maximum error between the initial kilometers value given to the system, and the round-tripped kilometers value produced later on? To be quite specific, given these two conversions:[ol]
[li]K1 * (0.621371 miles/kilometer) = M1[/li][li]M1 * (1.609344 kilometers/mile) = K2[/li][/ol]
…And, assuming you wanted to do something like this:
AbsoluteValue(K1 - K2) = X
…What is the biggest X could possibly be as related in terms of those two conversion factors? I’ve done some empirical poking with a calculator and suspect it’s somewhere around 0.0001 but I don’t recall how to prove it.