Mathscientific notationstandard formexponent

Scientific Notation Calculator

Convert any number to scientific notation (a × 10ⁿ) or convert scientific notation back to a standard decimal number. Essential for working with very large or very small values.

Advertisement

Calculator

See your Scientific Notation Calculator results

Enter your email to unlock results — free forever.

or

No spam, ever. Unsubscribe at any time.

Advertisement

Formula

x = a × 10ⁿ where 1 ≤ |a| < 10

The exponent n is the floor of log₁₀(|x|). The coefficient a is x divided by 10ⁿ. The coefficient must satisfy 1 ≤ |a| < 10 — this is what makes scientific notation normalized (standard form).

How to use the Scientific Notation Calculator

  1. 1

    Enter your number

  2. 2

    Read your results instantly

    Results update in real time as you type.

Advertisement

When and why to use scientific notation

Scientific notation is the universal standard for expressing very large or very small numbers in science and engineering. The distance from Earth to the Sun is 1.496×10¹¹ meters — far clearer than 149,600,000,000 meters. The mass of an electron is 9.109×10⁻³¹ kg — far clearer than 0.0000000000000000000000000000009109 kg.

Beyond clarity, scientific notation makes arithmetic on extreme values manageable. Multiplying large numbers becomes adding exponents; division becomes subtracting exponents.

Scientific notation arithmetic

Multiplication: (a × 10ⁿ) × (b × 10ᵐ) = (a×b) × 10^(n+m). If the product a×b ≥ 10, adjust: shift the coefficient and increment the exponent. Division works symmetrically: divide coefficients, subtract exponents.

Addition/subtraction: first align exponents (choose the same power of 10), then add/subtract coefficients. Example: 3.2×10⁴ + 1.5×10³ = 3.2×10⁴ + 0.15×10⁴ = 3.35×10⁴.

Advertisement

Scientific notation in computing

Computers use a binary version of scientific notation called floating-point representation. A 64-bit double-precision float stores the coefficient in 52 bits and the exponent in 11 bits. This gives a range from about 5×10⁻³²⁴ to 1.8×10³⁰⁸.

This is why division by zero produces 'Infinity' in many programming languages (the exponent overflows), and very small calculations can hit 'Underflow' (becoming zero due to exponent limitations). Understanding floating-point is essential for scientific computing.

Tips & Insights

Orders of magnitude for intuition

Knowing common powers of 10 builds number sense: 10³ = thousand, 10⁶ = million, 10⁹ = billion, 10¹² = trillion. A million seconds is 11.6 days; a billion seconds is 31.7 years.

E notation in calculators and code

Most calculators and programming languages represent 3.5×10⁶ as '3.5E6' or '3.5e6'. In Python/JavaScript: 3.5e6 = 3500000. This is compact scientific notation without the ×10 symbol.

Worked Examples

Speed of light

Number: 299792458 (meters per second)

Scientific notation: 2.99792458×10⁸ m/s. Coefficient: 2.998 (4 sig figs). Exponent: 8.

Virus size

Number: 0.0000001 meters (100nm)

Scientific notation: 1.0×10⁻⁷ m. Coefficient: 1.0. Exponent: −7. SARS-CoV-2 is approximately 1×10⁻⁷ meters in diameter.

Advertisement

Frequently Asked Questions

What is scientific notation?

Scientific notation expresses numbers as a × 10ⁿ, where 1 ≤ a < 10. It makes very large or very small numbers easier to work with and compare.

How do I convert to scientific notation?

Move the decimal point until you have a number between 1 and 10. Count the moves — that's your exponent. Moves left = positive exponent; moves right = negative. Example: 45000 = 4.5×10⁴.

What is E notation?

E notation is a compact way to write scientific notation: '4.5E4' means 4.5×10⁴. It's used in calculators, spreadsheets, and programming languages.

Advertisement

Related Calculators