Rounding to a number of decimal places
Count digits AFTER the point. Look at the next digit; round the last one up if it's 5 or more.
Decimal places (d.p.) count digits after the decimal point.
To round to d.p.:
- Locate the digit in the -th decimal place.
- Look at the digit immediately after it (the "decider").
- If decider , round the last kept digit UP. If decider , leave it.
- Drop everything after the -th decimal place.
Worked walkthroughs.
- Round to 2 d.p. → second decimal is , decider is → round down → .
- Round to 3 d.p. → third decimal is , decider is → round UP. becomes , which carries: .
- Round to 2 d.p. → decider is , round up. The carries up the chain: .
When rounding causes the digits to roll over (e.g. ), keep the trailing zeros — they show the precision.
- Identify the digit in the -th decimal place.
- Look at the next digit only (don't double-round).
- → round up; → round down.
- Keep trailing zeros: (NOT ).