Scientific Notation: Making Big Numbers Small

How to read, write, and calculate with scientific notation — with examples from astronomy, biology, chemistry, and national debt

5 min read · 1008 words

When Regular Numbers Become Unmanageable

The diameter of a hydrogen atom is 0.0000000001 meters. The US national debt is approximately $35,000,000,000,000. The number of stars in the observable universe is approximately 200,000,000,000,000,000,000,000. Working with numbers like these in standard form is error-prone and mentally taxing. Scientific notation provides a compact, unambiguous, and arithmetically convenient alternative.

Percentage

The Standard Form of Scientific Notation

Scientific notation expresses any number as:

N × 10^p

Where: - N (the coefficient or mantissa) is a number with exactly one non-zero digit to the left of the decimal point: 1 ≤ |N| < 10 - p (the exponent) is any integer (positive, negative, or zero)

Converting to scientific notation: 1. Move the decimal point so that only one non-zero digit remains to its left 2. Count how many places you moved the decimal; this is the exponent 3. If you moved left (number was large), the exponent is positive 4. If you moved right (number was small), the exponent is negative

Standard form Scientific notation Steps
35,000,000,000,000 3.5 × 10¹³ Moved decimal 13 places left
0.0000000001 1 × 10⁻¹⁰ Moved decimal 10 places right
6,022,000,000,000,000,000,000,000 6.022 × 10²³ Moved decimal 23 places left
0.000000000000000000001602 1.602 × 10⁻¹⁹ Moved decimal 19 places right

Arithmetic with Scientific Notation

Multiplication: Multiply the coefficients, add the exponents.

(3 × 10⁴) × (2 × 10⁵) = 6 × 10⁹

(2.5 × 10³) × (4 × 10⁻²) = 10 × 10¹ = 1 × 10²

Division: Divide the coefficients, subtract the exponents.

(9 × 10⁸) ÷ (3 × 10³) = 3 × 10⁵

(6 × 10⁻⁴) ÷ (2 × 10⁻⁷) = 3 × 10³

Addition/Subtraction: First adjust so both numbers have the same exponent, then operate on coefficients.

3 × 10⁴ + 5 × 10³ = 3 × 10⁴ + 0.5 × 10⁴ = 3.5 × 10⁴

Error Percentage

Real-World Applications by Scale

Astronomy — the very large: - Distance from Earth to the Sun: 1.496 × 10¹¹ meters (1 Astronomical Unit) - Distance to the nearest star (Proxima Centauri): 4.01 × 10¹⁶ meters - Diameter of the observable universe: ~8.8 × 10²⁶ meters

Without scientific notation, the difference between these distances — separated by factors of millions to billions — is impossible to parse from a string of zeros.

Biology — the very small: - A typical bacterium: ~2 × 10⁻⁶ meters (2 micrometers) - A typical virus: ~1 × 10⁻⁷ meters (100 nanometers) - Diameter of an atom: ~1 × 10⁻¹⁰ meters (1 Ångström) - Diameter of a proton: ~1.7 × 10⁻¹⁵ meters (1.7 femtometers)

A proton is about 60,000 times smaller than an atom, which is about 100,000 times smaller than a bacterium — these ratios are immediately visible in the exponents (−15 vs −10 vs −6).

Chemistry — Avogadro's Number: The mole, chemistry's fundamental counting unit, contains 6.022 × 10²³ particles (Avogadro's Number). This number is so large that if you had one mole of grains of rice, they would cover every continent to a depth of 1 kilometer. Scientific notation is the only practical way to work with such quantities in stoichiometry calculations.

Computer science — storage: - 1 byte = 8 bits - 1 gigabyte = 10⁹ bytes = 1,000,000,000 bytes - 1 terabyte = 10¹² bytes - 1 petabyte = 10¹⁵ bytes - A modern data center might store 10¹⁹ bytes (10 exabytes) — this is a human-scale context where scientific notation compresses what would otherwise be unwieldy strings.

SI Prefixes: Scientific Notation Encoded in Words

The International System of Units (SI) provides prefixes that represent specific powers of ten:

Prefix Symbol Power Example
tera- T 10¹² 1 TB = 10¹² bytes
giga- G 10⁹ 1 GHz = 10⁹ cycles/second
mega- M 10⁶ 1 MW = 10⁶ watts
kilo- k 10³ 1 km = 10³ meters
milli- m 10⁻³ 1 mm = 10⁻³ meters
micro- μ 10⁻⁶ 1 μm = 10⁻⁶ meters
nano- n 10⁻⁹ 1 nm = 10⁻⁹ meters
pico- p 10⁻¹² 1 pm = 10⁻¹² meters

These prefixes are scientific notation compressed into readable word-scale units. A 5-nanometer chip process is 5 × 10⁻⁹ meters — about 25 silicon atoms wide.

Reading Numbers in Media and Finance

National statistics regularly use numbers that benefit from scientific notation context: - US GDP (2024): ~$28 trillion = 2.8 × 10¹³ dollars - US federal debt: ~$35 trillion = 3.5 × 10¹³ dollars - Global daily forex trading volume: ~$7.5 trillion = 7.5 × 10¹² dollars

A practical habit: when reading news stories about "billions" and "trillions," mentally convert to scientific notation to maintain a sense of relative scale. $100 billion (10¹¹) is exactly 1% of $10 trillion (10¹³) — a fact that is obvious in exponential notation but easy to lose in word form.

Order of Magnitude Estimation

Scientific notation enables order of magnitude estimation — a powerful technique where you aim not for exact answers but for the nearest power of ten.

The Fermi estimation method: Question: How many piano tuners are there in Chicago? - Population of Chicago: ~3 × 10⁶ people - People per household: ~2.5 → ~1.2 × 10⁶ households - Fraction with pianos: ~1/20 → ~6 × 10⁴ pianos - Tunings per piano per year: ~1 - Tunings per piano tuner per year: ~1,000 (4/day × 250 days) - Piano tuners needed: 6 × 10⁴ / 10³ = ~60 piano tuners

Actual answer: roughly 50–100. Fermi's method, using scientific notation, got within a factor of 2 using only rough estimates. This approach — breaking complex questions into estimable components — is used by engineers, scientists, and business analysts daily.