How this instrument works
Multiplying two numbers written in scientific notation splits into two independent jobs rather than one messy multiplication. Write each number as a mantissa between 1 and 10 times a power of ten, m₁ × 10^e1 and m₂ × 10^e2, and the product regroups by the commutative property into (m₁ × m₂) × (10^e1 × 10^e2). That second piece collapses by the ordinary product rule for exponents, since 10^e1 × 10^e2 = 10^(e1+e2) whenever the base is shared, so multiplying two powers of ten becomes nothing more than adding their exponents. The real arithmetic shrinks down to a single small multiplication, m₁ × m₂.
That raw mantissa product does not always stay inside the one-to-ten window scientific notation requires, and this is where a hand calculation most often goes wrong. Because each input mantissa is itself confined to under 10, their product is confined to under 100 — never larger — so at most one digit ever needs to shift back across the decimal point, never two. When m₁ × m₂ reaches 10 or more, dividing that raw product by 10 and adding exactly 1 to the exponent restores a properly normalized answer without changing the number's actual value.
The boundary case is worth sitting with: a raw product of exactly 10 renormalizes to a mantissa of precisely 1 with the exponent bumped up by one, since 10 × 10^n and 1 × 10^(n+1) are the identical value written two different ways, and only the second spelling counts as normalized scientific notation. Keeping a number's order of magnitude separate from its handful of significant digits is the whole reason the notation exists — it lets a chemist compare a mole of atoms against the mass of a single electron without carrying long strings of zeros through the arithmetic.
- Enter the first number's leading digits into Mantissa 1, a value from 1 up to just under 10, and its power of ten into Exponent 1.
- Enter the second number's leading digits into Mantissa 2 and its power of ten into Exponent 2, the same way.
- Check Raw product mantissa: it is simply Mantissa 1 times Mantissa 2, reported before any renormalization is applied.
- Read Result mantissa (normalized) and Result exponent together — they report the final answer already adjusted back into proper 1-to-10 form.
- If Raw product mantissa reads 10 or higher, compare it against Result mantissa to watch the renormalization happen: the sheet divides by 10 and adds 1 to Result exponent.
Worked example — combining 2×10³ and 3×10⁴
Enter Mantissa 1 = 2 and Exponent 1 = 3 for the first number, 2×10³, then Mantissa 2 = 3 and Exponent 2 = 4 for the second, 3×10⁴. Raw product mantissa reports 6.0, the plain product of 2 and 3, and because 6 already sits inside the required one-to-ten range, no renormalization triggers. Result mantissa (normalized) agrees with Raw product mantissa at 6.0, and Result exponent reads 7.0, the sum of the two exponents 3 and 4 with nothing added on top.
That pair of small facts stands in for a much larger multiplication. Written out in full, 2×10³ is 2,000 and 3×10⁴ is 30,000, and 2,000 × 30,000 comes to 60,000,000 by long multiplication — the identical value as 6×10⁷, reached here without ever touching a five-digit or six-digit number directly. Only the two leading digits and the two small exponents ever needed handling.
Questions
How do you multiply numbers in scientific notation?
Multiply the mantissas and add the exponents: (m₁×10^e1) × (m₂×10^e2) = (m₁×m₂) × 10^(e1+e2). This works because multiplication can be freely regrouped, and 10^e1 × 10^e2 collapses to 10^(e1+e2) by the ordinary product rule for exponents — same base, so the powers combine by addition rather than by a second multiplication.
Why does the exponent sometimes gain an extra 1?
Because the raw mantissa product can spill past 10, and proper scientific notation requires a mantissa between 1 and 10. Take (5×10²) × (4×10³): the mantissas multiply to 20, so the result renormalizes to 2×10⁶, borrowing one power of ten from the mantissa and handing it to the exponent. The underlying value, 2,000,000, stays identical either way — only its notation changes. Skipping this step is the single most common mistake done by hand.
Why must a mantissa stay between 1 and 10?
That range is what makes scientific notation useful in the first place: every number gets exactly one correct representation, and the exponent alone tells you its order of magnitude at a glance. Allow mantissas outside that range and the same number could be written many different ways — 65×10⁴ and 6.5×10⁵ are numerically equal, but only the second counts as standard, normalized form.
How large can the raw mantissa product get before renormalizing?
Never larger than just under 100. Each input mantissa is individually confined to under 10, so their product is confined to under 100 — meaning at most one power of ten ever needs to move from the mantissa into the exponent, never two. That bound is exactly why renormalization here is a single conditional shift, not a loop that could repeat.
What happens with negative exponents?
The same addition rule applies with a negative sign attached, since e1+e2 works identically whether the exponents are positive or negative. Multiplying 4×10⁻³ by 2×10⁻², for instance, still gives a mantissa product of 8 and an exponent sum of −5, so the result is 8×10⁻⁵ — no separate rule is needed for very small numbers.
Is multiplying scientific notation the same process as adding it?
No — adding two numbers in scientific notation requires matching the exponents first, since only like place values can be summed directly, while multiplying needs no such matching: the mantissas multiply and the exponents simply add, regardless of whether e1 and e2 started out equal. That structural difference is why multiplication in this notation is often the easier of the two operations to carry out by hand.