Significant Figures, Rounding & Error — GetCalcMaster
How to round correctly: significant figures, decimals, and how rounding errors accumulate. Practical workflows for reporting results.
Rounding is a reporting decision, not a math operation
When you calculate with measured values, your result is only as trustworthy as the input precision. The goal is not to produce more digits — it’s to report a result that matches the precision you actually have.
Two kinds of numbers
- Measured numbers (approximate): values from instruments or estimates (e.g., 12.3 cm, 9.81 m/s²).
- Exact numbers (definition/counts): counts and defined constants (e.g., 12 items, 1 inch = 2.54 cm exactly).
Exact numbers don’t limit your precision. Measured numbers do.
Significant figures vs decimal places
Significant figures count meaningful digits regardless of where the decimal point sits:
1200is ambiguous (could be 2, 3, or 4 sig figs depending on context).1.200×10^3clearly has 4 sig figs.
Decimal places are useful when the absolute precision matters (for example currency in cents, or a tolerance stated in mm).
The safest workflow (used in labs and engineering)
- Carry extra digits in intermediate steps (guard digits).
- Round once at the end to the appropriate precision.
- State the precision rule you used (sig figs, decimal places, tolerance).
Why early rounding breaks results
Suppose you have:
a = 1.2345
b = 1.2344
a - b = 0.0001
If you round inputs to 3 decimals early, both become 1.234 and the difference becomes 0.
That’s catastrophic cancellation caused by premature rounding.
Error propagation (practical intuition)
When values have uncertainty, errors propagate through formulas. You don’t need a full statistics course to get the basic intuition:
- Add/subtract: absolute errors add (roughly).
- Multiply/divide: relative (percent) errors add (roughly).
Example: multiply two measured values
If x = 10.0 ± 0.1 (1% error) and y = 3.00 ± 0.03 (1% error), then x·y has ~2% relative error.
How to use GetCalcMaster for clean rounding
- Do the full calculation in Scientific Calculator with guard digits.
- Then decide how to report the value (sig figs / decimals / tolerance).
- If you’re keeping a lab notebook, store the full precision result in Notebook and write a separate “reported value” line next to it.
Quick examples you can try
- Floating-point visibility: 0.1 + 0.2 (notice you may see a long tail in some modes).
- Cancellation: sqrt(1000001) − sqrt(1000000) (compare to the stabilized form below).
- Stabilized: 1 / (sqrt(1000001) + sqrt(1000000))
Common rounding mistakes
- Rounding inputs too early and losing meaningful differences.
- Mixing sig figs and decimals without saying which rule you’re using.
- Reporting too many digits (“false precision”).
- Rounding each line of a multi-step spreadsheet rather than rounding the final output.
FAQ
Should I always use significant figures?
Not always. Use significant figures when measurement precision drives the result. Use fixed decimal places when the domain has a fixed reporting convention (currency, tolerances, regulated forms).
Is it okay to keep many digits in the notebook?
Yes. Keeping guard digits in Notebook is good practice. Just be explicit about how you round when you publish or report a final number.
Why do different tools show different last digits?
They may use different rounding modes, display formats, or internal precision. For critical work, cross-verify and avoid relying on the final digit unless you’ve established the precision.