Skip to content
Popular Calculators
Browse Math calculators

Scientific Notation Calculator

Convert between ordinary numbers and scientific notation, or multiply and divide two numbers written in it.

What do you want to work out?

About the Scientific Notation Calculator

Some numbers are the wrong shape to write down. The distance to the sun is 149,600,000 km. The mass of an electron is 0.000000000000000000000000000000911 kg. Written out, both are unreadable, and counting the zeros is an invitation to get one wrong.

Scientific notation fixes this by separating the digits that carry information from the zeros that only say how big the number is. The sun sits at 1.496 × 10⁸ km. The electron weighs 9.11 × 10⁻³¹ kg. Three or four meaningful digits, and a power of ten doing all the scaling.

It has a second job that is just as useful: it makes precision explicit. Written plainly, 1200 might be good to two figures or four. Written as 1.2 × 10³, it is definitely two.

This calculator converts in both directions, multiplies and divides values already written in the notation, and gives engineering notation alongside — the variant that actually matches the prefixes on components and datasheets.

How to Use the Scientific Notation Calculator

Three modes.

Number to scientific notation takes an ordinary number, however long, and normalises it. It accepts thousands separators and values already in E-notation, so you can paste from almost anywhere.

Scientific notation to number takes a coefficient and a power of ten and writes the value out in full.

Multiply or divide two values takes two complete values in the notation and combines them, showing the exponent arithmetic step by step.

Every mode returns three forms: proper scientific notation, engineering notation, and E-notation, which is what spreadsheets and programming languages use.

How Scientific Notation Is Calculated

Converting to it means moving the decimal point until exactly one non-zero digit sits in front of it, then recording how far it moved.

Moving the point left makes the coefficient smaller, so the exponent is positive to compensate. Moving it right makes the coefficient larger, so the exponent is negative. 149,600,000 needs the point moved eight places left, giving 1.496 × 10⁸. 0.00042 needs it moved four places right, giving 4.2 × 10⁻⁴.

The rule for a valid coefficient is 1 ≤ |a| < 10. Exactly one digit before the point. Writing 42 × 10³ is the right value and the wrong notation; it should be 4.2 × 10⁴.

Converting back reverses it. A positive exponent moves the point right and the number grows; a negative exponent moves it left and the number shrinks.

Multiplying is where the notation earns its keep. Multiply the coefficients and add the exponents. Dividing means dividing the coefficients and subtracting the exponents. This works because of the exponent law 10^m × 10^n = 10^(m+n), and it converts arithmetic on gigantic numbers into arithmetic on small ones plus a bit of addition.

There is usually a tidying step afterwards. Multiplying 5 × 4 gives 20, which is outside the 1-to-10 range, so 20 × 10⁵ shifts to 2 × 10⁶.

Scientific Notation Formula

Scientific notation:
  a x 10^n,   with 1 <= |a| < 10

Multiplication:
  (a x 10^m) x (b x 10^n) = (a x b) x 10^(m+n)

Division:
  (a x 10^m) / (b x 10^n) = (a / b) x 10^(m-n)

Engineering notation:
  a x 10^n,   with n a multiple of 3 and 1 <= |a| < 1000

Engineering notation exists because the SI prefixes come in steps of a thousand: kilo is 10³, mega 10⁶, giga 10⁹, milli 10⁻³, micro 10⁻⁶, nano 10⁻⁹. Forcing the exponent to a multiple of three means the result reads straight off as a prefix. A resistance of 47 × 10³ ohms is 47 kilohms, which is what the component is labelled. In proper scientific notation the same value is 4.7 × 10⁴, which is correct and matches nothing on the shelf.

Step-by-Step Example

Convert 0.00042 to scientific notation.

Step 1 — move the point. Shift it right until one non-zero digit sits in front: 0.00042 → 4.2. That took four moves.

Step 2 — record the direction. Moving right means a negative exponent, so the answer is 4.2 × 10⁻⁴.

Step 3 — check. 4.2 × 10⁻⁴ is 4.2 ÷ 10,000 = 0.00042. Correct.

Now a multiplication, the case the notation is built for. Multiply 3 × 10⁸ by 2 × 10⁵.

Step 1: multiply the coefficients   3 x 2 = 6
Step 2: add the exponents           8 + 5 = 13
Step 3: assemble                    6 x 10^13

Three seconds. Written out in full that sum is 300,000,000 × 200,000, and doing that by hand means tracking thirteen zeros without dropping one.

One more, where the tidying step matters. Multiply 5 × 10³ by 4 × 10².

Step 1: 5 x 4 = 20
Step 2: 3 + 2 = 5        ->  20 x 10^5
Step 3: 20 is outside 1 to 10, so shift  ->  2 x 10^6

That last step is the one most often forgotten, and it leaves an answer that is numerically right but not in proper form — which in an exam usually costs a mark.

Understanding Your Result

The headline is proper scientific notation, with the coefficient between 1 and 10.

Engineering notation is the version to use with SI prefixes — electronics, signal processing, anything measured in kilo, mega, milli or micro. The coefficient runs from 1 to 1000, which is why 0.00042 appears as 420 × 10⁻⁶ rather than 4.2 × 10⁻⁴: 10⁻⁶ is micro, so that reads as 420 micro-units.

E-notation is the plain-text form. 4.2E-4 means exactly 4.2 × 10⁻⁴. This is what you type into a spreadsheet or a programming language, and what a calculator display shows when a result will not fit.

The number of digits in the coefficient is the number of significant figures, and that is deliberate. If your measurement was good to three figures, write three — 1.50 × 10³, not 1.5 × 10³ — because the notation is telling the reader how much you know.

When Should You Use This Calculator?

Physics and chemistry. Avogadro's number, Planck's constant, the speed of light, atomic masses — the constants of science are unusable in decimal form.

Astronomy and cosmology. Distances, masses and timescales that span dozens of orders of magnitude.

Electronics. Resistance, capacitance and frequency, where engineering notation maps directly onto component markings.

Computing. File sizes, data rates and floating-point limits, all of which appear in E-notation in real output.

Very small measurements. Concentrations, tolerances, wavelengths, probability values that run to many leading zeros.

Removing ambiguity in a report. Whenever a whole number's trailing zeros leave its precision unclear, scientific notation settles it.

Common Mistakes

A coefficient outside 1 to 10. 42 × 10³ and 0.42 × 10⁵ are both numerically correct and neither is proper scientific notation. Only 4.2 × 10⁴ is.

Getting the sign of the exponent backwards. Numbers smaller than one always take a negative exponent. If you converted 0.00042 and got 10⁴, the point moved the other way.

Multiplying the exponents. You add them when multiplying, not multiply them. 10³ × 10² is 10⁵, not 10⁶.

Forgetting to renormalise. After multiplying, check the coefficient is still between 1 and 10. Leaving 20 × 10⁵ is the most common slip in this topic.

Confusing E-notation with the constant e. In 4.2E-4 the E means exponent. It has nothing to do with Euler's number, 2.718.

Losing significant figures. Writing 1.5 × 10³ when you measured to four figures throws away information. Keep the digits you actually have.

Adding without matching exponents. Multiplication and division are easy; addition is not. To add 3 × 10⁸ and 2 × 10⁵ you must first rewrite them over the same power of ten. There is no shortcut for addition, which is precisely why this calculator offers only multiplication and division.

Frequently Asked Questions

What makes notation properly scientific?

The coefficient must be at least one and less than ten, so there is exactly one non-zero digit before the decimal point. Writing 42 times ten cubed is the correct value but not correct scientific notation; it should be 4.2 times ten to the fourth.

What is engineering notation?

The same idea with the exponent restricted to multiples of three, so the coefficient can run from one up to a thousand. This matches the SI prefixes: kilo, mega, giga, milli, micro. A value of 47 times ten cubed reads directly as 47 kilohms, which is how components are actually labelled.

Why do calculators write 4.2E-4?

It is the same number, written where a superscript is not available. E stands for exponent, so 4.2E-4 means 4.2 times ten to the power of negative four. Spreadsheets and programming languages use this form because it is plain text.

How do I multiply numbers in scientific notation?

Multiply the coefficients and add the exponents, then adjust so the coefficient is back between one and ten. Dividing works the same way with subtraction. This is the main practical reason the notation exists, since it turns awkward multiplication into addition.

Does scientific notation show significant figures?

Yes, and unambiguously, which is one of its main advantages. Written plainly, 1200 could be two, three or four significant figures. Written as 1.2 times ten cubed it is definitely two, and as 1.200 times ten cubed it is definitely four.

Last reviewed September 17, 2026 by the CalculatorPeak editorial team.