Scientific Notation Calculator

Scientific notation writes a number as one digit, a decimal point, and a power of ten. The compactness is convenient, but it is not the reason the notation exists. The reason is that 1200 is ambiguous. It might be two significant figures, or three, or four — the written form cannot say, because the...

1200 might be two significant figures, or three, or four. Written plainly there is no way to tell, and that ambiguity is the actual reason scientific notation exists — 1.2 × 10³ is unmistakably two, and 1.200 × 10³ is four. This page keeps every digit you type rather than parsing to a decimal, so a trailing zero survives instead of quietly disappearing.

THE NUMBER

SCIENTIFIC NOTATION

2.99792458 × 108

9 significant figures, and standard form shows all of them.

E NOTATION

2.99792458e8

what calculators and code use

ENGINEERING

299.792458 × 10^6

the mega range

WRITTEN OUT

299,792,458

every digit, no exponent

SIGNIFICANT FIGURES

9

unambiguous

WHAT IS HAPPENING

THE POINT MOVES, AND THE EXPONENT COUNTS THE MOVES299792458.grey digits are leading zeros — they locate the point and are never significant

The exponent is a count, not a size. It records how many places the point moved to leave exactly one non-zero digit in front. Moving left gives a positive exponent and moving right a negative one, which is why a negative exponent means a small number rather than a negative one.

WHICH DIGITS ARE SIGNIFICANT2green counts · grey is a leading zero, which never countswriting it in standard form removes every ambiguity of this kind
THE EXPONENT IS THE ORDER OF MAGNITUDEevery step is a factor of ten — the labelled ones are the SI prefixes10-12pico10-9nano10-6micro10-3milli100103kilo106mega109giga1012terain engineering form this is the mega range

Read from your digits directly · no floating point anywhere

Created with❤️byeaglecalculator.com

HOW TO USE

  1. 1

    Type the number exactly as you have it, including any trailing zeros. Those zeros carry the precision, and this page keeps them rather than parsing them away.

  2. 2

    Read the significant figure count alongside the answer. If it comes back as a range, the number is ambiguous as written and standard form is what resolves it.

  3. 3

    Switch to arithmetic for calculations. The page applies the correct rounding rule for the operation and shows you what the other rule would have given, since mixing them up is the usual error.

  4. 4

    Use engineering notation when the answer needs a unit prefix. Its exponent is always a multiple of three, which is exactly how kilo, mega, milli and micro are spaced.

REFERENCE FORMULAS

RuleFormulaWhat it is for
Standard forma × 10ⁿ with 1 ≤ |a| < 10Exactly one non-zero digit before the point. This is what makes it standard.
Moving the pointleft n places → ×10ⁿ; right → ×10⁻ⁿThe exponent counts the moves. Bigger number, bigger exponent.
E notation1.5e3 means 1.5 × 10³What calculators and code use. The e is not Euler’s number.
Engineering formexponent a multiple of 3Matches the SI prefixes, so 45,000 is 45 × 10³ — forty-five kilo-something.
Multiply(a×10ᵐ)(b×10ⁿ) = ab × 10ᵐ⁺ⁿMultiply the fronts, add the exponents, then renormalise if needed.
Divide(a×10ᵐ)÷(b×10ⁿ) = a/b × 10ᵐ⁻ⁿDivide the fronts, subtract the exponents.
Add or subtractmatch the exponents firstYou cannot add the fronts directly. 1.5×10³ + 2.0×10² needs converting first.
Sig figs: × ÷keep the fewest significant figuresThree sig figs times two sig figs gives two.
Sig figs: + −keep the fewest decimal placesA different rule. Using the sig-fig one here discards measured digits.
Leading zerosnever significant0.00123 has three. They only locate the point.
Trailing zerossignificant after a decimal point1.200 has four. Without a point, 1200 is ambiguous.
Zero itselfhas no standard formNo choice of exponent gives a mantissa between 1 and 10.
Negativesthe sign sits on the mantissa−1.5 × 10³. A negative exponent means small, not negative.
Order of magnitudethe exponent aloneTwo numbers three exponents apart differ by a factor of a thousand.

FREQUENTLY ASKED QUESTIONS

RELATED CALCULATORS

MORE ALGEBRA CALCULATORS

Was this calculator helpful?

Last updated: August 4, 2026 · Every digit you type is kept — no parseFloat anywhere · Multiply keeps the fewest significant figures; add keeps the fewest decimal places.