Scientific Notation Calculator

Convert numbers to scientific notation and perform arithmetic operations using scientific notation with high precision.

Scientific Notation Converter

Enter any number, scientific notation value, E-notation value, or engineering notation value to instantly convert between formats.

Accepts 1568938, 4.72e8, 8.5 × 10^12, 0.00000034, 7.91 × 10⁻⁵.

Try:

What Is Scientific Notation?

Scientific notation writes a number as a mantissa (a value with magnitude between 1 and 10) multiplied by a power of 10. That single change makes numbers like 0.000047256 readable as 4.7256 × 10⁻⁵ and numbers like 1,568,938 as 1.568938 × 10⁶ — both with exactly the same precision, but with the order of magnitude visible at a glance. Physicists, chemists, engineers, astronomers, and statisticians use it as their working notation because it scales identically from atoms (~10⁻¹⁰ m) to galaxies (~10²¹ m).

This page combines two tools. The Scientific Notation Converter takes any input — plain decimal, E-notation (4.72e8), or scientific form (8.5 × 10¹²) — and returns the canonical scientific, E-notation, engineering, expanded-decimal, and order-of-magnitude forms together with significant-figure counts. The Scientific Notation Math Calculator performs addition, subtraction, multiplication, division, power, square root, reciprocal, log₁₀, and ln operations directly on mantissa-and-exponent pairs, with a precision control and a step-by-step explanation of every result. Pair it with the scientific calculator for trig, factorial, and memory functions; the rounding calculator when reporting to a target precision; and the percent error calculator for accuracy reporting.

How the Calculator Works

Parse any input form

Plain numbers (1568938), E-notation (4.72e8), and scientific notation (8.5 × 10¹², 3.5×10^-12) all parse to the same internal { mantissa, exponent } pair. Unicode superscripts are accepted.

Normalise the mantissa

Every result is normalised so |mantissa| sits in [1, 10) and the exponent absorbs the rest. 47.256 × 10⁻⁶ becomes 4.7256 × 10⁻⁵; 0.0047 × 10² becomes 4.7 × 10⁻¹.

Operate on the parts

Multiplication multiplies mantissas and adds exponents. Division divides mantissas and subtracts exponents. Addition first aligns exponents, then combines mantissas. Powers go through log₁₀ to stay numerically stable.

Output every notation

Each result is rendered in scientific, engineering (exponent multiple of 3), E-notation, expanded decimal, and order-of-magnitude form so you can copy whichever your tool, paper, or spec demands.

6 Ways to Use This Calculator

1

Compact very large numbers

Convert 12,000,000,000 to 1.2 × 10¹⁰ — same value, four orders of magnitude easier to read, write, and compare.

2

Expand very small numbers

Read 4.7256e-5 instantly as 0.000047256. The Converter shows the expanded decimal alongside the scientific form for sanity-checking.

3

Multiply astronomical scales

(5.972 × 10²⁴ kg) × (6.674 × 10⁻¹¹) = 3.99 × 10¹⁴ — the calculator handles 35 orders of magnitude without losing precision.

4

Divide subatomic by macroscopic

Divide a hydrogen atom radius (5.29 × 10⁻¹¹ m) by Earth's radius (6.371 × 10⁶ m) → 8.3 × 10⁻¹⁸ — useful for ratios spanning many decades.

5

Engineering exponents

Switch to engineering notation to align with SI prefixes — 47.256 × 10⁻⁶ pairs with the µ (micro) prefix; 6.4 × 10⁹ becomes 6.4 G (giga).

6

Powers and roots fast

(1.5 × 10⁻¹⁰)² = 2.25 × 10⁻²⁰ and √(6.4 × 10⁹) ≈ 8.0 × 10⁴. Useful for physics homework, chemistry concentrations, and signal-processing math.

Best Practices

Keep one digit before the decimal in the mantissa. Canonical scientific notation requires the mantissa to satisfy 1 ≤ |m| < 10. So 47 × 10² isn't scientific — it's 4.7 × 10³. The Converter and Calculator both normalise automatically; trust the output and avoid manual renormalisation.

Report only as many significant figures as you measured. If your meter resolves to 3 sig figs, don't report 7 sig figs after multiplying — multiplication of scientific values inherits the smaller sig-fig count. The Converter reports the sig-fig count on every input so you can apply that rule.

Switch to engineering form for unit prefixes. Engineering notation rounds the exponent to a multiple of 3 so it aligns with the SI prefix ladder — k, M, G, T, P upward, m, µ, n, p, f downward. Useful in electronics, SI-unit reporting, and any setting where the prefix needs to match the exponent.

Why Scientific Notation Matters

Education

Scientific notation is taught in every science and math curriculum from middle school onward. Mastery underwrites every physics formula, every chemistry concentration, every astronomy distance.

Engineering & finance

Engineering notation aligns with SI prefixes; financial reporting often uses scientific form for very large or very small monetary values to keep significant figures explicit.

Science & research

Avogadro's number (6.022 × 10²³), Planck's constant (6.626 × 10⁻³⁴ J·s), and the speed of light (3 × 10⁸ m/s) are all reported in scientific notation — the working notation of every science paper.

Computing

IEEE 754 floating-point — the format behind every JavaScript number, every C double, every NumPy array — is internally a base-2 mantissa-and-exponent pair, the binary cousin of scientific notation.

Tricky Cases

Adding mismatched exponents

You can't just add the mantissas of 1.2 × 10⁵ and 3.4 × 10². First align: 3.4 × 10² = 0.0034 × 10⁵, then add to get 1.2034 × 10⁵. The calculator does this alignment in the steps shown beside the result.

Engineering vs scientific

Engineering form requires the exponent be a multiple of 3, so the mantissa range stretches to [1, 1000). 4.7256 × 10⁻⁵ in scientific becomes 47.256 × 10⁻⁶ in engineering — both are the same number, but engineering aligns with the SI prefix µ (micro).

E-notation parsing

4.72e8 means 4.72 × 10⁸. The lowercase e is purely shorthand — no relationship to Euler's e (~2.718). The calculator accepts both lower- and uppercase E, and both with and without the explicit '+' sign.

Floating-point limits

JavaScript's Number maxes out around 10³⁰⁸ and underflows below 10⁻³²⁴. The calculator routes powers through log₁₀ to stay accurate well past those limits, and reports 'out of range' when the result genuinely can't be expressed.

Core Formulas

Scientific form

x = m × 10ⁿ, 1 ≤ |m| < 10, n ∈ ℤ

The canonical decomposition. Every non-zero real number has exactly one scientific form once you fix the sign convention for m.

Multiplication

(a × 10ᵖ)(b × 10ᵠ) = (a·b) × 10ᵖ⁺ᵠ

Mantissas multiply directly, exponents add. Re-normalise if a·b ≥ 10 by shifting one decimal.

Division

(a × 10ᵖ) ÷ (b × 10ᵠ) = (a/b) × 10ᵖ⁻ᵠ

Mantissas divide, exponents subtract. Re-normalise if a/b drops below 1.

Addition / Subtraction

(a × 10ᵖ) ± (b × 10ᵠ) → align to max(p,q), add/subtract mantissas

You can't combine mantissas until the exponents match. The calculator shifts the smaller-exponent value up before combining.

Power

(m × 10ⁿ)^y = 10^(y · (log₁₀ m + n))

Powers go through logs to avoid overflowing JS Number for huge exponents — the mantissa-and-exponent pair is rebuilt from the log.

Square root

√(m × 10ⁿ) = √m × 10^(n/2)

Easiest when n is even. For odd n, multiply m by 10 and reduce n by 1 first so the exponent halves cleanly.

Common Mistakes

Writing 47 × 10² in 'scientific' form

That's engineering — the mantissa exceeds 10. Canonical scientific is 4.7 × 10³. The Converter snaps any input to the canonical form automatically.

Adding exponents without aligning

1.2 × 10⁵ + 3.4 × 10² ≠ 4.6 × 10⁷. You must align exponents first; the right answer is 1.2034 × 10⁵.

Confusing scientific and E-notation

4.72e8 and 4.72 × 10⁸ are exactly the same number; the 'e' is a typographic convenience, not the mathematical constant. Don't double-multiply.

Truncating sig figs after multiplying

Multiplication propagates the smaller sig-fig count, so (3.1 × 10²)(4.567 × 10¹) ≈ 1.4 × 10⁴ — not 1.41577 × 10⁴. Round to the smaller input precision after the math, not before.

Built for science and engineering students, physicists and chemists doing back-of-envelope arithmetic, programmers debugging floating-point edge cases, and anyone who'd rather see Avogadro's number as 6.022 × 10²³ than 602,200,000,000,000,000,000,000. Every conversion shows scientific, engineering, E-notation, expanded decimal, and order-of-magnitude in parallel; every calculation shows the alignment and arithmetic steps in plain language alongside the final answer.

Scientific Notation Calculator FAQs

Scientific notation writes a number as a mantissa (a value whose magnitude sits between 1 and 10) multiplied by an integer power of 10. The number 1,568,938 becomes 1.568938 × 10⁶, and 0.000047256 becomes 4.7256 × 10⁻⁵. Both forms preserve every significant digit of the original, but they make the order of magnitude visible at a glance and make arithmetic across many decades of size practical. Scientific notation is the working notation of physics, chemistry, astronomy, engineering, and computing — anywhere numbers vary across many orders of magnitude.

Scientific notation requires the mantissa to satisfy 1 ≤ |m| < 10 — so 4.7256 × 10⁻⁵ is canonical, and 47.256 × 10⁻⁶ is not. Engineering notation relaxes the mantissa to 1 ≤ |m| < 1000 in exchange for forcing the exponent to be a multiple of 3, which makes it align cleanly with the SI prefix ladder (k = 10³, M = 10⁶, G = 10⁹, … m = 10⁻³, µ = 10⁻⁶, n = 10⁻⁹). The same number, 0.000047256, is 4.7256 × 10⁻⁵ in scientific and 47.256 × 10⁻⁶ in engineering. Engineering form is what electronics, mechanical engineering, and SI reporting use; scientific form is what mathematical writing and physics papers use.

Count how many places you need to move the decimal point so that the mantissa lands between 1 and 10. The number of places you moved becomes the exponent — positive if you moved left (the original was large), negative if you moved right (the original was small). 1,568,938 → move the decimal 6 places left → 1.568938 × 10⁶. 0.000047256 → move 5 places right → 4.7256 × 10⁻⁵. This calculator's Converter does the move automatically and reports the exponent, mantissa, sig-fig count, and all five notation forms in a single click.

Yes — E-notation is just typographic shorthand for the same scientific number. 4.72e8 means 4.72 × 10⁸, and 1.5e-7 means 1.5 × 10⁻⁷. The lowercase 'e' (and uppercase 'E') is purely a calculator convention; it has no relationship to Euler's e (~2.71828). The converter accepts both lower- and uppercase E, with or without the explicit '+' sign on positive exponents, and returns the result in canonical scientific form together with the engineering, expanded, and order-of-magnitude variants.

Multiply the mantissas, then add the exponents. (3 × 10⁴) × (2 × 10⁵) = (3 × 2) × 10^(4+5) = 6 × 10⁹. If the new mantissa lands outside [1, 10) — say (5 × 10⁴) × (3 × 10⁵) = 15 × 10⁹ — re-normalise by shifting one decimal place: 15 × 10⁹ → 1.5 × 10¹⁰. The Math Calculator handles the re-normalisation automatically and shows the alignment in the step-by-step solution.

Divide the mantissas, then subtract the exponents. (8 × 10⁹) ÷ (2 × 10³) = (8/2) × 10^(9−3) = 4 × 10⁶. If the new mantissa drops below 1 — say (2 × 10⁴) ÷ (4 × 10²) = 0.5 × 10² — re-normalise by shifting one decimal place: 0.5 × 10² → 5 × 10¹. The Math Calculator does this normalisation step automatically and renders the result in canonical scientific, engineering, and E-notation forms simultaneously.

Every scientific-notation number is built from two parts: the mantissa (also called the coefficient or significand) is the leading number that carries the significant digits; the exponent is the integer power of 10 that shifts the decimal to the correct order of magnitude. In 4.7256 × 10⁻⁵, the mantissa is 4.7256 and the exponent is −5. The mantissa's sign matches the number's sign; the exponent is always an integer. The same vocabulary applies to IEEE 754 floating-point internally — every JavaScript Number is a base-2 mantissa-and-exponent pair.

Three reasons. First, it makes the order of magnitude visible — Avogadro's number (6.022 × 10²³) is instantly recognisable as 'around 10²³', whereas 602,200,000,000,000,000,000,000 isn't. Second, it preserves significant figures explicitly — 6.022 × 10²³ has 4 sig figs; writing it as 602,200,000,000,000,000,000,000 hides whether all those zeros are measured or just placeholders. Third, arithmetic across many decades stays tractable — multiplying or dividing requires only mantissa arithmetic plus exponent addition/subtraction, no long-multiplication of unwieldy digit strings.