MathsFrancais3 min de lectureMis a jour 2 avr. 2026

A Guide to Rounding Rules and Significant Figures

Master the mathematical rules of numerical rounding, learn the difference between standard and Bankers rounding, and understand how significant figures represent precision.

Points Cles

  • Standard Rounding (Half Up) is the logic used in most everyday school and business math.
  • Bankers Rounding (Half-to-Even) eliminates statistical upward bias in large financial datasets.
  • Significant Figures communicate the true precision of any scientific or engineering measurement.
  • Rounding rules change between Addition (uses decimals) and Multiplication (uses sig figs).
  • Non-zero digits are always significant, while zeros have specific rules based on their position.

What is Numerical Rounding?

Numerical rounding is the process of replacing a precise number with a simpler value that remains close to the original quantity. While it reduces accuracy slightly, rounding is essential for making math manageable and communicating the appropriate level of certainty. In most cases, we round using the "Half Up" rule, which focuses on the digit immediately to the right of our target precision. If that digit is 5 or greater, we round up; if it is 4 or less, we stay the same.

The 4 Essential Rounding Modes

Not all rounding is the same. Depending on whether you are working in finance, computer programming, or pure mathematics, you may need a specific mode to avoid compounding errors. ``` | Mode | Logic | Best For | | --- | --- | --- | | Standard (Half Up) | Rounds .5 and above away from zero | General purpose math | | Banker's (Half to Even) | Rounds .5 to the nearest even number | Financial data & bias reduction | | Ceiling (Up) | Always rounds toward positive infinity | Inventory & capacity planning | | Floor (Down) | Always rounds toward negative infinity | Programming & truncation | ```

Significant Figures: Identifying Meaningful Digits

Significant figures (or "sig figs") are the digits in a number that contribute to its precision. This is critical in science, where reporting too many digits can imply a measurement is more reliable than the instrument allows. Here are the core rules for identifying sig figs: ``` - Non-zero digits are ALWAYS significant. - Captive zeros (zeros between non-zeros) are ALWAYS significant. - Leading zeros (zeros at the start of a decimal) are NEVER significant. - Trailing zeros (zeros at the end) are ONLY significant if a decimal is present. ```

Precision in Multi-Step Calculations

When performing operations with measurements, you must round the final result according to these two distinct rules. Never round during intermediate steps! **Rule 1: Addition and Subtraction** The result is limited by the number of decimal places of the least precise value. ``` 10.5 (1 decimal) + 2.15 (2 decimals) = 12.65 -> Round to 12.7 ``` **Rule 2: Multiplication and Division** The result is limited by the total number of significant figures in the least precise value. ``` 4.56 (3 sig figs) x 1.4 (2 sig figs) = 6.384 -> Round to 6.4 ```

Banker's Rounding: Why it Matters

Standard "Half Up" rounding creates a subtle upward bias. If you round 1.5, 2.5, and 3.5 "up," you get 2, 3, and 4. The average of the original set is 2.5, but the average of the rounded set is 3.0. Banker's rounding (Half-to-Even) solves this by rounding .5 to the nearest even digit: ``` 2.5 -> Rounds to 2 (Nearest Even) 3.5 -> Rounds to 4 (Nearest Even) ``` Across thousands of entries, this keeps the total sum more accurate to the original unrounded data.

Worked Example: Rounding to 3 Significant Figures

Let's round the number **0.045674** to 3 significant figures: ``` 1. Identify the first non-zero digit (4). 2. Count three digits starting from that 4: (4, 5, 6). 3. Look at the 4th digit (7). 4. Since 7 is 5 or greater, round the 3rd digit (6) up to 7. 5. The final result is 0.0457. ```
roundingsignificant-figuresmathsprecisionstatistics