Rounding Numbers Guide

What Rounding Does

Rounding replaces a number with a simpler, approximate value that's easier to work with or report, while staying close to the original. You round to a chosen level of precision — a number of decimal places, a number of significant figures, or the nearest 10, 100, and so on. For example, 3.14159 rounded to 2 decimal places is 3.14; to 3 significant figures it's 3.14; to the nearest whole number it's 3. Rounding is everywhere: money is rounded to 2 decimal places (pence), measurements to a sensible precision, statistics to meaningful figures, and large numbers to the nearest thousand or million for readability. The core idea is to discard digits beyond your chosen precision while adjusting the last kept digit based on what follows. Done well, rounding makes numbers clearer without misleading; done carelessly (rounding too early in a calculation, or to too few figures), it can introduce significant errors.

Decimal Places vs Significant Figures

These two are often confused but mean different things. Decimal places (d.p.) count digits after the decimal point. 3.14159 to 2 d.p. is 3.14; 0.00789 to 2 d.p. is 0.01. Decimal places are about absolute precision — useful for money (always 2 d.p.) and measurements to a fixed unit. Significant figures (s.f.) count meaningful digits regardless of the decimal point, starting from the first non-zero digit. 3.14159 to 3 s.f. is 3.14; 0.00789 to 2 s.f. is 0.0079; 12,345 to 2 s.f. is 12,000. Significant figures are about relative precision — they convey how precisely a quantity is known, which is why they're standard in science and engineering. The difference matters: 0.00789 to 2 d.p. (0.01) loses almost all the information, while to 2 s.f. (0.0079) preserves it. Leading zeros are never significant; trailing zeros after a decimal point are. For very large or very small numbers, significant figures (often with scientific notation) communicate precision far better than decimal places.

Rounding Methods

How you handle a digit of exactly 5 (the 'halfway' case) defines the rounding method. Round half up (standard): 0.5 rounds up to 1, 2.5 to 3. This is what most people learn at school and is the default here. Simple and familiar, but it has a slight upward bias over many values. Round half to even (banker's rounding): rounds the halfway case to the nearest even digit — 2.5 rounds to 2, 3.5 rounds to 4. This removes the upward bias and is used in finance, statistics, and many programming languages' defaults because, over many roundings, errors cancel out rather than accumulate. Round down (floor): always toward zero/negative infinity — 2.9 becomes 2. Round up (ceiling): always away — 2.1 becomes 3. Used when you must not under-provide (e.g. rounding up the number of buses needed for a group). The method matters most when rounding many numbers and summing them: standard rounding can introduce a systematic drift, which banker's rounding avoids. For a single everyday value, round half up is fine.

Avoiding Rounding Errors

Rounding is useful but introduces error, and a few habits keep that error small. Round only at the end: carry full precision through a calculation and round the final answer, not intermediate steps. Rounding early and then continuing compounds the error — a classic source of mistakes in multi-step problems. Keep enough significant figures: a result can only be as precise as your least precise input. Reporting more figures than your data supports is false precision (claiming 3.14159 metres when you measured to the nearest centimetre is misleading). Match precision to purpose: money to 2 d.p., engineering tolerances to the required figures, headline statistics to 2-3 s.f. for readability. Watch accumulation: when rounding and summing many values (a spreadsheet of rounded figures), the rounded total may not match the sum of the originals — banker's rounding reduces this. Be consistent: use the same method and precision throughout a piece of work. This calculator shows the rounded result, the exact difference introduced, and the rule applied, so you can see precisely what each rounding choice does — useful for both checking work and understanding the concepts for exams.

Rounding Calculator (Decimals, Significant Figures)

Results update automatically as you type

Enter values above to calculate