Mathwords logoMathwords

Truncate — Definition, Formula & Examples

Truncate means to cut off (or chop off) a number at a specific decimal place, keeping only the digits up to that point and discarding the rest — without rounding.

To truncate a real number to nn decimal places is to remove all digits beyond the nn-th decimal place, producing a value no greater in absolute value than the original. Unlike rounding, truncation always moves toward zero (or stays the same) regardless of the discarded digits.

How It Works

Pick the decimal place where you want to truncate. Keep every digit to the left of that cutoff, and simply drop every digit to the right. You never look at the dropped digits to decide whether to round up — you just remove them. For example, truncating 3.8763.876 to one decimal place gives 3.83.8, even though the next digit is 7. Truncation is sometimes called "rounding down" for positive numbers, but be careful — for negative numbers, truncation moves the value toward zero, not toward negative infinity.

Worked Example

Problem: Truncate 9.6742 to two decimal places.
Identify the cutoff: Two decimal places means you keep the digits through the hundredths place.
9.67429.67\,|\,42
Drop the remaining digits: Remove everything after the hundredths digit (the 4 and the 2) without rounding.
9.67429.679.6742 \rightarrow 9.67
Answer: The truncated value is 9.679.67.

Why It Matters

Many calculators and computers truncate values when they run out of display space. In programming, converting a decimal to an integer often truncates rather than rounds, so understanding the difference prevents subtle errors in code and spreadsheets.

Common Mistakes

Mistake: Confusing truncation with rounding. For instance, truncating 4.68 to one decimal place and writing 4.7.
Correction: Truncation never rounds up. You simply drop the extra digits. Truncating 4.68 to one decimal place gives 4.6, not 4.7.