Math

Scientific Notation Calculator

Convert between standard and scientific notation, and perform arithmetic.

CALCULATOR

Enter your numbers

Instant results

THE NUMORIX GUIDE

How to use the Scientific Notation Calculator

Last reviewed September 14, 2026

What this calculator does

Parse each input into coefficient * 10^exponent, convert both to ordinary numbers, perform the selected operation, and normalize the result so the coefficient has one nonzero digit before the decimal.

Formula and method

Parse each input into coefficient * 10^exponent, convert both to ordinary numbers, perform the selected operation, and normalize the result so the coefficient has one nonzero digit before the decimal.

Variables and inputs

Number A and Number B default to 3.5e8 and 2.1e3 and accept ordinary decimals, e notation, or forms such as 3.5 x 10^8. The default operation is multiply; add, subtract, multiply, and divide are available.

Worked example

For 3.5e8 * 2.1e3: multiply coefficients 3.5 * 2.1 = 7.35 and add exponents 8 + 3 = 11, giving 7.35e11 = 735,000,000,000.

How to interpret the result

The exponent communicates scale while the coefficient communicates the measured digits. Normalized scientific notation has a coefficient from 1 through less than 10 for nonzero values.

Common mistakes to avoid

Add exponents only for multiplication, not addition. Align powers or convert to ordinary numbers before adding or subtracting, and do not confuse e notation with Euler's number in this input field.

Assumptions and limitations

The engine converts inputs to JavaScript Number values before calculating, so very large or very small values can lose precision. Division by zero returns a zero result by implementation choice.

Practical use and checks

Scientific notation is useful when values span many orders of magnitude, such as laboratory measurements, distances, or file sizes. Enter 3.5e8 and 2.1e3 and choose multiplication as a check. The coefficients multiply to 7.35 and the exponents add to 11, so the result should be 7.35e11, or 735,000,000,000. For addition, first align powers of ten: 3e4 plus 2e3 is 3e4 plus 0.2e4, giving 3.2e4 rather than simply adding the exponents. The normalized coefficient communicates the measured digits while the exponent communicates scale. A negative exponent moves the decimal left, which is useful for concentrations or microscopic dimensions. Do not confuse e notation in an input such as 2e5 with Euler's number, and do not combine exponents for addition or subtraction. The engine converts through JavaScript Number, so extremely large or tiny values may lose precision, and division by zero follows an implementation fallback rather than ordinary mathematical meaning. Significant figures are not inferred from the display; 3.50e4 and 3.5e4 may represent different measurement precision even though they have the same numeric value. Use the notation as a check on scale before trusting a rounded result.

Sources and references

COMMON QUESTIONS

Frequently asked questions

How should I add numbers with different exponents?

Rewrite one number with the same power of ten as the other, add coefficients, then normalize the result.

What does 3.5e8 mean?

It means 3.5 multiplied by 10 to the eighth power, or 350,000,000.