Significant Figures Calculator

Round any number to a desired number of significant digits (sig figs). Automatically count the significant figures in a given value. Follows international standards (NIST, ISO 80000-1).

Accepts negative numbers, decimals, and E-notation (e.g., 5.67e-4).
Between 1 and 20.
Quick examples:
0.00456 → 2 sig figs
1234.5678 → 4 sig figs
1500 (ambiguous) → 2 sig figs
0.00500 → 3 sig figs
100. (with decimal) → 3 sig figs
-0.02030 → 4 sig figs
Avogadro constant → 4 sig figs
Privacy assured: All computations are performed locally in your browser. No data is transmitted to any server.

Understanding Significant Figures: Precision & Measurement

Significant figures (also known as significant digits) represent the precision of a measured or calculated quantity. They include all certain digits plus one uncertain (estimated) digit. The concept is fundamental in science and engineering to avoid false precision and to reflect the true accuracy of measurements. This calculator follows the standard rules recommended by NIST (National Institute of Standards and Technology) and the ISO 80000‑1 international standard.

Core Rules for Counting Sig Figs

  • 1. Non-zero digits – always significant (e.g., 123 has 3 sig figs).
  • 2. Leading zeros – never significant (e.g., 0.0025 has 2 sig figs).
  • 3. Captive zeros – zeros between non-zero digits are significant (e.g., 1002 has 4 sig figs).
  • 4. Trailing zeros – significant only if a decimal point is present (e.g., 1200 has 2 sig figs; 1200. has 4 sig figs).
  • 5. Exact numbers (counts, constants) have infinite sig figs.
Ambiguity in trailing zeros: A number like 1500 without a decimal point is ambiguous; it could mean 2, 3, or 4 sig figs. Scientific notation (1.5×10³) or a trailing decimal (1500.) resolves ambiguity. Our calculator provides a best‑faith count and highlights uncertainty.

Rounding to N Significant Figures

To round a number to n significant digits, identify the first n digits, look at the (n+1)th digit, and apply standard rounding (≥5 rounds up). Use scientific notation to preserve place value. This tool automates the process, handling very large and very small numbers.

Rounding & Arithmetic with Sig Figs: Real‑world Applications

In addition/subtraction, the result is rounded to the least precise decimal place. For multiplication/division, the result has as many sig figs as the factor with the fewest sig figs. Our calculator focuses on rounding individual values, but understanding these rules ensures scientific integrity. Examples from chemistry: reporting pH, concentration; physics: measurements of velocity; engineering: tolerances.

Value Significant Figures Reason / Rule
0.004700 4 Leading zeros ignored; trailing zeros after decimal count.
3.00 × 10⁵ 3 Scientific notation makes sig figs unambiguous.
500. 3 Decimal point indicates trailing zeros are significant.
0.000340 3 34 are significant, leading zeros not.
1000 1 (ambiguous) Without decimal, only one sig fig unless specified.

Step-by-Step: How the Calculator Works

  1. Parsing – the input string is normalized and converted to numeric value with full precision.
  2. Counting original sig figs – we analyze the input string (including decimal point and exponent) to apply standard rules: ignore leading zeros, count all non‑zeros, captive zeros, and trailing zeros after decimal. Exponential parts are handled correctly (coefficient only).
  3. Rounding – using JavaScript's toPrecision() with the desired sig fig count, which implements unbiased rounding (round half to even). The result is presented in both standard decimal and scientific notation.
  4. Precision warnings – if the original number has ambiguous trailing zeros, a note is displayed.
Consulted by measurement experts and regularly reviewed to ensure compliance with international metrology guidelines.

Frequently Asked Questions

1500 is ambiguous: it could have 2, 3, or 4 significant figures. For clarity, use scientific notation (1.5×10³ → 2 sig figs; 1.50×10³ → 3 sig figs) or include a decimal point (1500. → 4 sig figs). The calculator will interpret "1500" as having 1 or 2 sig figs depending on trailing zero rules but alerts you to ambiguity.

The built-in rounding in JavaScript follows the IEEE 754 standard "round half to even" (banker’s rounding). This reduces bias in statistical data. For most scientific applications this is acceptable; the difference is minimal compared to half-up.

No, significant figure count must be at least 1. A value with 0 sig figs is meaningless. Our minimum is 1.

Scientific notation clearly indicates the number of significant figures without ambiguity, especially for very large or small numbers. The calculator also provides a plain decimal version where the magnitude allows a clean representation.

Yes, it conforms to standard significant figure rules used in academic and professional settings. However, always double-check with your instructor’s or journal’s specific guidelines for final reporting.