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⁻⁵.
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
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.
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.
Multiply astronomical scales
(5.972 × 10²⁴ kg) × (6.674 × 10⁻¹¹) = 3.99 × 10¹⁴ — the calculator handles 35 orders of magnitude without losing precision.
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.
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).
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
Related Calculators
Pair the scientific notation calculator with other math tools for arithmetic, rounding, error reporting, and number-system conversions.
- Scientific CalculatorAdvanced trig, log, exponent, root, factorial, and memory functions.
- Rounding CalculatorRound to decimals, significant figures, nearest 5/10/100, or any custom precision.
- Percent Error CalculatorPercent error, relative error, absolute error, accuracy, and full experimental analysis with step-by-step solutions.
- Root CalculatorSquare root, cube root, and any nth root with step-by-step simplification.
- Common Factor CalculatorGreatest common factor (GCF, HCF, GCD) with step-by-step prime factorization.
- Percentage CalculatorCalculate % of a number, percentage change, and reverse percentages.