Enter a number
Paste a decimal (like 5300000000), a scientific form (like 5.3 × 10^9), or “e” notation (like 5.3e9). Choose your output and hit Convert.
Convert any number into scientific notation (a × 10n) or convert scientific notation back into standard form. Built for speed, screenshots, and fewer zero-mistakes.
Paste a decimal (like 5300000000), a scientific form (like 5.3 × 10^9), or “e” notation (like 5.3e9). Choose your output and hit Convert.
Scientific notation is a compact way to write very large or very small numbers without a long trail of zeros. Instead of writing 0.0000000047 or 5,300,000,000, you write the same value as a mantissa (also called the coefficient) multiplied by a power of ten:
Scientific notation form: a × 10n
This page gives you a fast, shareable Scientific Notation Calculator for homework, labs, coding, finance spreadsheets, and anytime you want fewer zeros and fewer mistakes. It converts:
It’s one of those “tiny math tools” that shows up everywhere: science class, engineering, statistics, finance growth models, and even social media (“how big is 109 seconds?”). People share these conversions because they make numbers feel real and readable. Converting huge values into a quick “a × 10n” format is also a cheat code for mental math: you can compare magnitudes instantly.
To convert any non‑zero number x into normalized scientific notation, you pick an integer exponent n so that dividing by 10n leaves a mantissa a between 1 and 10 (in absolute value):
x = a × 10n with 1 ≤ |a| < 10
A fast way to find the exponent is:
Example: x = 5300000000. |x| = 5.3 × 109. log10(|x|) is a bit more than 9, so n = 9. Then a = 5300000000 / 109 = 5.3. Done.
Most real‑world uses of scientific notation include rounding to a chosen number of significant figures (sig figs). Significant figures are the digits that carry meaning based on measurement precision. For example:
In this calculator, you can choose a “Sig figs” setting. We round the mantissa to that many significant digits. If rounding pushes the mantissa to 10.0 (for example 9.99 → 10.0), we shift it back into the normalized range by dividing by 10 and increasing the exponent by 1.
Why negative? Because the original number is smaller than 1. Moving the decimal to the right made it bigger, so you “undo” that by multiplying by 10 raised to a negative power.
If you already have a × 10n, convert back by shifting the decimal in a:
Example: 4.7 × 10−9. Move the decimal 9 places left: 0.0000000047.
When you click “Convert”, the calculator reads your input in one of three forms:
It then parses that into a single numeric value and produces:
For extremely large exponents, plain decimals can get very long. To keep the page fast and readable, we format standard output in a “safe” way (not scientific) when it’s reasonable, and otherwise we show a clean string representation that still matches the value.
Scientific notation uses any integer exponent and keeps the mantissa between 1 and 10. Engineering notation forces the exponent to be a multiple of 3 (… −6, −3, 0, 3, 6 …) so it pairs nicely with metric prefixes (micro, milli, kilo, mega, etc.).
Because you move the decimal to the right to get a mantissa between 1 and 10. Moving right makes the number bigger, so you compensate by multiplying by 10 raised to a negative power.
In many lab and measurement contexts, yes: 5.0 has two significant figures while 5 has one. That “extra” zero can communicate precision. In pure math, both represent 5000 exactly.
Yes. 1.23E4 means 1.23 × 104. It’s just a compact computer-friendly format.
Absolutely. Multiply the mantissas and add the exponents: (a × 10m)(b × 10n) = (ab) × 10m+n. Divide the mantissas and subtract the exponents: (a × 10m)/(b × 10n) = (a/b) × 10m−n. Then re-normalize if needed.
Zero is a special case. It doesn’t have a meaningful exponent because 0 divided by any power of ten is still 0. We simply show “0” and “0 × 100”.
Computers store many decimals using binary floating‑point, which can create tiny rounding artifacts (like 0.1 + 0.2 = 0.30000000000000004). This calculator formats outputs to be clean and human-friendly while keeping the underlying value consistent.
Tip: If you’re doing homework, also try the Significant Figures Calculator and the Rounding Numbers Calculator to keep your final answers in the right format.
Use these fast rules to catch mistakes in seconds:
If you’re working with measurements, your final step is often rounding to the correct significant figures.
Pulled from the Math category list for strong internal linking.
Engineering notation uses exponents in multiples of 3 to match these prefixes.