Draft Preview
Rounding, Estimation, Sanity Check & Order of Magnitude
Rounding, Estimation, and Sanity Checks
In an era of computers and automated calculation software, it is easy to assume the machine is always right. However, garbage input results in garbage output. Engineers must possess the skills to independently verify if an answer "makes sense."
1. Rounding Properly
Rounding goes hand-in-hand with significant figures. When a calculation yields more precision than is justified, the number must be rounded.
- Standard Rule: If the next digit is 5 or more, round up. If it is 4 or less, round down.
- Engineering Caution: Depending on the context, engineers might deliberately round up (for safety, like specifying a thicker cable) or round down (when estimating the maximum allowable load a bridge can carry). You must always consider what is safe.
2. Order of Magnitude Estimation
An Order of Magnitude refers to the scale of a number, typically in powers of ten (e.g., 10, 100, 1000).
- Before running a complex calculation, an engineer should do a quick mental math estimation by rounding all numbers to their nearest power of ten.
- Example: If you need to calculate , you can estimate it mentally as . If your spreadsheet outputs
30.8or308000, you immediately know a decimal point was placed incorrectly, even if you don't know the exact answer.
3. The Sanity Check
A Sanity Check is a step back to ask: "Does this answer actually make physical sense in the real world?"
- If you are calculating the weight of a standard passenger car and the result is 15 kilograms, the math is wrong. A car cannot weigh as much as a bicycle.
- If you calculate the required diameter of a water pipe for a house and the answer is 4 meters, the math is wrong.
- The Mindset: Never blindly submit a calculation just because the calculator produced it. Always filter it through common sense and real-world experience.