Skip to main content
MathFree · no sign-up

Significant Figures Calculator

Count the significant figures in a number and round to any number of them, with the ambiguous cases flagged.

Updated

Typed exactly as written — trailing zeros matter, so 1.400 is not 1.4.

3 sig figs

Significant figures

0.00457to 3 sig figs

as written it carries 4 significant figures

Figures as written
4
Rounded
0.00457
Scientific form
4.57e-3
Rounding error
0.00000300
As a percentage
0.0657%

In short

How do you count significant figures?

Every non-zero digit counts. Leading zeros never do, so 0.0042 has two. Captive zeros always do, so 1004 has four. Trailing zeros count only after a decimal point, so 1.400 has four but 1400 is ambiguous — it could be two, three or four.

Position decides, not value. The same zero counts in one place and not in another.

How to use the significant figures calculator

Type a number and read its significant figures. The input is deliberately a text field rather than a number field, because the distinction this page exists to make is destroyed the moment a computer parses it: 1.400 and 1.4 are the same stored value and different measurements.

Significant figures are a claim about how precisely something was measured. A length of 1.4 metres says the measurement was good to a tenth; 1.400 says it was good to a millimetre. Both describe the same distance, and only one of them justifies quoting a millimetre in the answer.

2

Figures in 0.0042

leading zeros never count

4

Figures in 1004

captive zeros always count

4

Figures in 1.400

trailing, after a point

The four rules are about position and nothing else. A zero before the first non-zero digit is a placeholder holding the decimal point in place, so it carries no information. A zero between two digits was measured, so it does. A zero at the end was measured only if a decimal point is there to say so.

Rounding is the other half of the job, and it has a consequence worth watching. Rounding 1234 to two significant figures gives 1.2e+3 rather than 1200, and that is deliberate: writing 1200 would reintroduce exactly the ambiguity the rounding was meant to resolve.

The four positions a zero can occupy
Leading — 0.0042
never significant, 2 figures
Captive — 1004
always significant, 4 figures
Trailing with a point — 1.400
significant, 4 figures
Trailing, no point — 1400
ambiguous, 2 to 4 figures
Scientific — 1.400e3
unambiguous, 4 figures

Only the fourth row is a problem, and only because decimal notation has no way to mark a trailing zero as measured. Every other row is decided by a rule with no exceptions, which is why the subject is easier than its reputation.

The notation that removes the ambiguity

A base converter shows how a number is written in other systems, and the same principle applies: the notation you choose decides what information survives being written down.

Open base converter

Numbers with their significant figure counts, the rule that decides each, and the scientific form that would state the same precision unambiguously.

As writtenFiguresRule that decides itUnambiguous form
0.51leading zero is a placeholder5e-1
0.00422leading zeros never count4.2e-3
0.0045674all non-zero digits count4.567e-3
1233all non-zero digits count1.23e+2
10044captive zeros always count1.004e+3
1.4004trailing zeros after a point count1.400e+0
987655all non-zero digits count9.8765e+4
14002, 3 or 4ambiguous — no decimal point1.4e+3 or 1.400e+3
1.4e32scientific notation states it1.4e+3
Counts are for the number exactly as written. An ambiguous entry has trailing zeros and no decimal point, which decimal notation cannot resolve.

The two rules that get mixed up

Significant figures govern multiplication and division. Decimal places govern addition and subtraction. They are different rules producing different answers, and applying the wrong one is the commonest error after miscounting zeros.

The same three numbers, added and multiplied
Values
12.11, 0.3, 1.004
Added
13.414
Fewest decimal places
1, from 0.3
Sum, correctly stated
13.4
Multiplied
3.647532
Fewest significant figures
1, from 0.3
Product, correctly stated
4
Different rules
different answers

Adding is limited by the least precise DECIMAL PLACE, because the uncertainty sits in a particular column. Multiplying is limited by the fewest SIGNIFICANT FIGURES, because relative errors combine. Using the sig-fig rule on a sum would throw away digits that were genuinely measured.

The reason is worth knowing rather than memorising. In a sum, an uncertainty of a tenth stays an uncertainty of a tenth. In a product, a one percent uncertainty stays one percent, so what matters is the proportion each figure was known to rather than the column it sat in.

What a computer cannot store about your number

Numbers in software are stored as values, not as the text you typed. 1.400 and 1.4 become the same double the moment they are parsed, and every trailing zero is gone. That is why this page reads a string and why any spreadsheet loses the distinction silently.

Do

  • Write the trailing zeros when they were measured
  • Use scientific notation when trailing zeros matter
  • Apply the sig-fig rule to products and the decimal-place rule to sums
  • Round once, at the end, rather than at each step

Don't

  • Trust a spreadsheet to preserve trailing zeros as data
  • Quote more figures than your least precise input justifies
  • Use the significant-figure rule on an addition
  • Round intermediate values and then carry them forward

That last one compounds quietly. Rounding at every step introduces a fresh error each time, and those errors accumulate rather than cancel. Carrying full precision through a calculation and rounding once at the end is both easier and more accurate, and it is what every laboratory convention asks for.

The formula, worked line by line

Four position rules for counting, and one rule each for the two kinds of arithmetic. There is no formula as such — it is a set of conventions about what a written number claims.

Significant figures are not about the number. They are about how well it was measured, and decimal notation has no way to say that about a trailing zero.
Why scientific notation exists

Reading them that way makes the ambiguous case obvious rather than annoying: the notation simply does not carry the information, so no rule can recover it.

leading zeros:  never significant     0.0042 -> 2
captive zeros:  always significant    1004   -> 4
trailing, with a decimal point:       1.400  -> 4
trailing, without one:                1400   -> ambiguous
multiplying: answer takes the FEWEST significant figures
adding:      answer takes the FEWEST decimal places
Which zeros are significant, by positionLeading zeros never count, captive zeros always count, trailing zeros count after a decimal point, and trailing zeros without one are ambiguous.POSITION DECIDES, NOT VALUE0.0042 — leading2 figures1004 — captive4 figures1.400 — trailing, with a point4 figures1400 — no point2 or 4The last row is why scientific notation exists: 1.4e3 and 1.400e3 say which was meant.
The four positions a zero can take, and which of them count.
What rounding costs at each level
0.004567 to 3 figures
0.00457, off by 0.07 percent
0.004567 to 2 figures
0.0046, off by 0.72 percent
1234 to 2 figures
1.2e+3, off by 2.76 percent
98765 to 3 figures
9.88e+4, off by 0.04 percent
1.4 to 4 figures
1.400, off by nothing
Error depends on
where the cut falls

The last row is the case worth noticing: asking for more figures than a number has does not add precision, it just writes the zeros. 1.400 is not more accurate than 1.4 unless the measurement really was good to a thousandth.

Why the rules differ for adding and multiplying

Because uncertainty behaves differently. In a sum, an uncertainty of a tenth remains a tenth regardless of how large the numbers are, so the limiting factor is the decimal column. In a product, a one percent uncertainty stays one percent, so the limiting factor is the proportion the number was known to.

Where this matters outside a classroom

Fields that enforce it
Laboratory measurement
reported precision is a claim
Engineering tolerances
a spurious digit implies a tighter fit
Medicine dosing
rounding direction can matter clinically
Surveying
errors accumulate along a traverse
Financial reporting
the opposite — exact cents, no rounding

The last row is the exception that clarifies the rule. Money is counted rather than measured, so it carries no measurement uncertainty and significant figures do not apply to it at all. A balance of 1,400 dollars is exactly 1,400 dollars.

The habit that matters most is the simplest: carry full precision through the working and round once at the end. Every intermediate rounding is a fresh error, and they add up rather than cancel out.

Questions people ask

How many significant figures does 0.0042 have?

Two. The zeros before the 4 are placeholders holding the decimal point in position and carry no measurement information, so only the 4 and the 2 count. Written in scientific notation as 4.2e-3, the two figures are visible immediately with no rule needed.

Do trailing zeros count as significant figures?

Only when a decimal point is present. 1.400 has four significant figures because the zeros could have been omitted and were not, which is a claim about precision. 1400 has no decimal point, so its zeros could be placeholders or measurements and the notation cannot say which.

How many significant figures does 1400 have?

It is genuinely ambiguous — two, three or four. Decimal notation has no way to mark a trailing zero as measured, so any confident answer would be invented. Writing it as 1.4e3, 1.40e3 or 1.400e3 states the precision unambiguously, which is what scientific notation is for.

What is the rule for multiplying with significant figures?

The answer carries as many significant figures as the least precise input. Multiplying a three-figure value by a five-figure one gives a three-figure answer. Addition uses a different rule entirely: the sum takes the fewest decimal places, not the fewest significant figures.

Should I round at each step of a calculation?

No. Rounding at every step introduces a fresh error each time and those errors accumulate rather than cancel. Carry full precision through the working and round once at the end, to the figures your least precise input justifies. It is both more accurate and less work.