Scientific Notation Arithmetic: Add, Subtract, Multiply, Divide

Two Different Rule Sets

Scientific notation arithmetic splits into two groups with different rules: multiplication/division follow simple exponent rules, while addition/subtraction require an extra alignment step first. Mixing these up is the single most common error people make by hand — this guide covers both, with the algebra behind each.

Multiplication: Combine Mantissas, Add Exponents

Multiplying two numbers in scientific notation relies on the exponent rule 10ᵃ × 10ᵇ = 10^(a+b):

(A × 10ᵃ) × (B × 10ᵇ) = (A × B) × 10^(a+b)

Worked example: (3.4 × 10⁵) × (2 × 10³)

Mantissas: 3.4 × 2 = 6.8
Exponents: 5 + 3 = 8
Result: 6.8 × 10⁸

If multiplying the mantissas produces a result of 10 or greater, you have to renormalize — for example, (5 × 10⁴) × (4 × 10³) gives mantissa 20, which isn’t valid scientific notation. Shift the decimal: 20 × 10⁷ becomes 2.0 × 10⁸.

Division: Combine Mantissas, Subtract Exponents

Division uses the reciprocal exponent rule, 10ᵃ ÷ 10ᵇ = 10^(a−b):

(A × 10ᵃ) ÷ (B × 10ᵇ) = (A ÷ B) × 10^(a−b)

Worked example: (8.4 × 10⁷) ÷ (2 × 10³)

Mantissas: 8.4 ÷ 2 = 4.2
Exponents: 7 − 3 = 4
Result: 4.2 × 10⁴

Addition and Subtraction: Match Exponents First

This is where scientific notation arithmetic differs fundamentally from multiplication and division. You cannot add or subtract mantissas directly unless their exponents already match — 3 × 10⁵ and 3 × 10⁶ aren’t in the same “units,” the same way you can’t add 3 feet and 3 yards without converting one to match the other first.

Worked example: (5 × 10⁶) + (3 × 10⁵)

Step 1 — Rewrite one term so exponents match:
3 × 10⁵ = 0.3 × 10⁶

Step 2 — Add mantissas directly, keep the shared exponent:
5 × 10⁶ + 0.3 × 10⁶ = 5.3 × 10⁶

Result: 5.3 × 10⁶

You can convert either term to match the other’s exponent — converting the smaller exponent up (as above) or the larger exponent down both work, as long as both terms end up sharing one exponent before adding.

Subtraction example: (9 × 10⁴) − (2.5 × 10³)

2.5 × 10³ = 0.25 × 10⁴
9 × 10⁴ − 0.25 × 10⁴ = 8.75 × 10⁴

Why Multiplication/Division and Addition/Subtraction Differ

Multiplication and division are fundamentally about combining powers of 10, which is exactly what exponent rules are built for — no alignment needed. Addition and subtraction, by contrast, are about combining actual quantities, and two quantities can only be combined directly once they’re expressed on the same scale. This is the same underlying reason you convert units before adding measurements in any other context, like adding a length in meters to one in centimeters.

A Common Pitfall: Renormalizing After Every Operation

After any operation, check whether the result’s mantissa is still between 1 and 10. Both the mantissa-below-1 case (mantissa 0.3 after a subtraction) and the mantissa-10-or-above case (mantissa 20 after a multiplication) need a final adjustment step to be valid scientific notation. See common mistakes people make with scientific notation for exactly how these renormalization slips happen.

Practice and Verification

Working these by hand is good for understanding, but for real inputs — especially ones with several decimal places — verify your answer with the scientific notation calculator, which runs all four operations automatically and shows the decimal equivalent alongside the scientific notation result. For the reverse direction, converting a raw decimal into scientific notation before you can even start arithmetic on it, see how to convert decimal numbers to scientific notation.

References & Sources

  1. [1] Khan Academy — Multiplying and Dividing in Scientific Notation (opens in new tab)
  2. [2] NIST — SI Prefixes and Powers of 10 (opens in new tab)