Rounding to decimal places
Identify the required decimal place, inspect the next digit, and round up or truncate accordingly.
Decimal places count the digits after the decimal point. To round a number to decimal places:
- Identify the th digit after the decimal point — this is the one you are rounding to.
- Look at the th digit (the one immediately to the right).
- If that digit is 5 or more, increase the th digit by 1 (round up).
- If that digit is less than 5, leave the th digit unchanged (round down / truncate).
- Drop all digits after the th decimal place.
Example — round to 2 d.p.:
The 2nd decimal digit is 8. The 3rd decimal digit is 6 (≥ 5), so round up:
Example — round to 3 d.p.:
The 3rd decimal digit is 4. The 4th decimal digit is 9 (≥ 5), so round up:
Carrying when rounding up: if the digit you are rounding up is 9, it becomes 10 — write 0 and carry 1 to the digit to the left.
Example: rounded to 2 d.p. — the 2nd decimal digit is 9, and the 3rd digit is 7 (≥ 5), so ; write 0 and carry: (2 d.p.). The trailing zeros must be written to show precision.
Always write the correct number of decimal places in your answer — (2 d.p.) is not the same as (1 d.p.) in terms of precision.
The digit you round to is the th decimal place; the digit you look at is the th.
A 5 always rounds up: this is the AQA convention (round half up).
Do not perform multiple rounds in succession — round only once from the original value.
Common pitfall
Rounding in stages: e.g. rounding first to 3 d.p. () and then to 2 d.p. () gives the wrong answer. The correct single-step answer is (the 3rd d.p. digit is 4, so round down).