You are halfway through a problem. Your working has 0.4285714 in one line and 0.5773502 in another. Three more multiplications and an addition later, the intermediate numbers are getting longer and your confidence in the last two digits is dropping fast. This is the moment to switch tracks: drop the decimals, rewrite as fractions, and continue symbolically.

The recognition trigger

Any of the following signs means you should abandon decimal form and switch back to fractions:

The earlier you catch one of these signs, the less error you will carry into the rest of the calculation.

The one-line rule

Symbolic fractions accumulate no rounding error. Decimal approximations accumulate rounding error on every arithmetic step.

This is the entire reason for the reflex. A fraction like \tfrac{3}{7} is exact; 0.4285714 is an approximation with error about 3 \times 10^{-8}. Multiply two such approximations and the errors combine to about 6 \times 10^{-8}. Multiply three; about 10^{-7}. After five or six multiplications, the relative error is in the fifth decimal — exactly where the answer's precision lives. If you then round to two decimal places, you might land on the wrong answer.

Fractions dodge this entirely. \tfrac{3}{7} \times \tfrac{2}{5} = \tfrac{6}{35} — no error. \tfrac{3}{7} \times \tfrac{2}{5} \times \tfrac{7}{4} = \tfrac{42}{140} = \tfrac{3}{10} = 0.3. One decimal conversion at the very end, zero rounding in the middle.

Error growth comparison between fraction arithmetic and decimal arithmetic over five multiplicationsA line chart with horizontal axis labelled number of operations from zero to five, and vertical axis labelled error. Two lines. A flat green line along the bottom labelled fraction arithmetic stays at zero error. An orange line labelled decimal arithmetic at four decimals starts near zero and rises gradually up to a visible value after five operations, illustrating that decimal rounding errors compound while fraction arithmetic is exact. 0 1 2 3 4 5 number of multiplications error fractions: 0 decimals: compounds
Error in a fraction chain (green, at the bottom) stays identically zero no matter how many operations you chain. Error in a decimal chain rounded to four places (orange) grows roughly linearly with the number of multiplications, and by the fifth or sixth operation it can bleed into the last digit you care about.

The switch-back move

When you catch yourself mid-problem with ugly decimals, here is the clean way to switch.

Step 1: identify the fraction each ugly decimal came from. Usually you already know, because you produced the decimal by dividing. 0.5714 came from \tfrac{4}{7}; 0.6667 came from \tfrac{2}{3}. If you have lost track, divide and check.

Step 2: rewrite the current line in fractions. Replace every ugly decimal with its fraction. Leave clean decimals (like 0.5 = \tfrac{1}{2}, 0.25 = \tfrac{1}{4}) alone if you prefer.

Step 3: proceed symbolically. Add, multiply, divide fractions using the standard rules. Cancel common factors aggressively.

Step 4: at the very end, convert to decimal if the answer format requires it. One conversion, one rounding step, minimal error.

The common-fraction sniff test

Some decimals are famous and you should recognise them:

If an ugly decimal matches one of these, convert back to the fraction — the problem is almost certainly simpler in fraction form.

The famous irrational decimals are worth recognising too:

If you see one of these in your working, keep the exact symbolic form going forward.

When decimals are genuinely OK

Not every calculation benefits from fraction form. Decimals are fine when:

The reflex is: ugly decimals in multiplicative chains → go back to fractions. Addition chains of clean decimals are usually fine.

Mid-problem rescue

Suppose you are solving for the area of a triangle and halfway through, you have written:

\text{Area} = \frac{1}{2} \cdot 0.5714 \cdot 0.6667 \cdot \sin(60°).

Three ugly-looking decimals. Pause and recognise:

  • 0.5714 \approx \tfrac{4}{7}.
  • 0.6667 \approx \tfrac{2}{3}.
  • \sin(60°) = \tfrac{\sqrt{3}}{2} (a famous irrational).

Rewrite:

\text{Area} = \frac{1}{2} \cdot \frac{4}{7} \cdot \frac{2}{3} \cdot \frac{\sqrt{3}}{2} = \frac{4 \sqrt{3}}{42} = \frac{2\sqrt{3}}{21}.

The answer is clean, exact, and easy to verify. If the exam wants a decimal, one final conversion gives \tfrac{2 \cdot 1.732}{21} \approx 0.165. If it wants the exact answer, you already have it.

If you had continued in decimals: \tfrac{1}{2} \cdot 0.5714 \cdot 0.6667 \cdot 0.8660 \approx 0.5 \cdot 0.3810 \cdot 0.8660 \approx 0.1650 — the same answer, but with at least three rounding steps buried in it and no clean exact form.

Why the rescue helps: you traded three decimal-multiplication rounding errors for zero. The final decimal, 0.1650, comes from a single conversion of a simple fraction. The fraction \tfrac{2\sqrt{3}}{21} is the "real" answer; 0.1650 is an approximation of it.

What to remember

Ugly decimals are a warning sign. They mean you have traded precision for convenience, and you have not even gained much convenience — fractions are usually faster to multiply anyway. Drop the decimals, go back to ratios, and let the arithmetic stay exact.

Related: Fractions and Decimals · When Should I Leave the Answer as a Fraction vs Convert to a Decimal in JEE? · Fraction or Decimal — When Should I Convert in JEE? · Sanity-Check Every Fraction Answer by Converting to a Rough Decimal