BusinessMarch 29, 2026

Scientific Notation Guide: Convert, Multiply & Divide Big Numbers

By The hakaru Team·Last updated March 2026

Quick Answer

  • *Scientific notation writes any number as a × 10^n where 1 ≤ a < 10 — the standard format used by NIST, NASA, and IUPAC worldwide.
  • *To convert: move the decimal until one digit sits left of it, count the moves — that count is the exponent. Left move = positive exponent; right move = negative.
  • *To multiply: multiply the coefficients and add the exponents. To divide: divide the coefficients and subtract the exponents.
  • *E-notation (3.0E8) is the calculator and programming equivalent of 3.0 × 10^8 — same math, different notation.

What Is Scientific Notation?

Scientific notation is a compact way to write numbers that are extremely large or extremely small. Instead of writing 300,000,000, you write 3 × 10^8. Instead of 0.000000000000000085, you write 8.5 × 10^-17.

The format is always a × 10^n, where:

  • a is the coefficient — a number where 1 ≤ a < 10
  • n is an integer exponent (positive, negative, or zero)

According to the National Institute of Standards and Technology (NIST), scientific notation is the recommended format for expressing physical quantities across all scientific disciplines. The International Union of Pure and Applied Chemistry (IUPAC) mandates it in chemistry publications. NASA uses it for every astronomical measurement, from orbital radii to spacecraft velocities, because the alternative — writing out raw digits — introduces transcription errors and is essentially unreadable at scale.

Why Scientists Use Scientific Notation

The practical reasons come down to precision and error prevention. Consider Avogadro's number: 6.022 × 10^23 particles per mole. Writing it as 602,200,000,000,000,000,000,000 creates a 24-digit string where a single misplaced zero changes the result by a factor of 10. Transcription errors like that have real consequences in chemistry and pharmaceutical dosing.

There's also the issue of significant figures. 6.022 × 10^23 immediately signals 4 significant figures. The raw integer form gives no such signal — you can't tell precision from trailing zeros alone.

How to Convert a Number to Scientific Notation

The conversion process has two steps:

  1. Move the decimal point until exactly one non-zero digit sits to the left of it.
  2. Count how many places you moved. That count becomes the exponent. Moving left gives a positive exponent; moving right gives a negative exponent.

Converting Large Numbers (Positive Exponents)

Large numbers have positive exponents because you move the decimal to the left:

  • 45,000 → move decimal 4 places left → 4.5 × 10^4
  • 300,000,000 → move 8 places left → 3 × 10^8
  • 1,496,000,000,000 → move 12 places left → 1.496 × 10^12

Converting Small Numbers (Negative Exponents)

Small decimals have negative exponents because you move the decimal to the right:

  • 0.00045 → move decimal 4 places right → 4.5 × 10^-4
  • 0.00007 → move 5 places right → 7 × 10^-5
  • 0.00000000000000085 → move 16 places right → 8.5 × 10^-16

Familiar Quantities in Scientific Notation

Seeing real-world numbers in both forms makes the notation click:

QuantityStandard FormScientific Notation
Speed of light300,000,000 m/s3 × 10^8 m/s
Earth–Sun distance149,600,000,000 meters1.496 × 10^11 m
Avogadro's number602,200,000,000,000,000,000,0006.022 × 10^23 particles/mol
US national debt (2024)~$36,000,000,000,000~3.6 × 10^13 dollars
Human hair width0.00007 meters7 × 10^-5 m
Proton diameter0.00000000000000085 meters8.5 × 10^-16 m

The Earth–Sun distance (1.496 × 10^11 m) is sourced from NASA's Jet Propulsion Laboratory. The US national debt figure reflects the US Treasury's 2024 fiscal year data.

Operations in Scientific Notation

Multiplication: Multiply Coefficients, Add Exponents

Multiply the coefficients normally, then add the exponents:

(3 × 10^4) × (2 × 10^3) = (3 × 2) × 10^(4+3) = 6 × 10^7

If the result has a coefficient ≥ 10, normalize it by shifting the decimal left and increasing the exponent:

(5 × 10^3) × (4 × 10^2) = 20 × 10^5 = 2 × 10^6

Division: Divide Coefficients, Subtract Exponents

Divide the coefficients, then subtract the exponents:

(8 × 10^9) ÷ (2 × 10^4) = (8 ÷ 2) × 10^(9-4) = 4 × 10^5

Addition and Subtraction: Align Exponents First

You can only add or subtract when both numbers share the same power of 10. Convert one number so the exponents match, then add or subtract the coefficients:

(3.5 × 10^6) + (2 × 10^5) → convert the second: (3.5 × 10^6) + (0.2 × 10^6) = 3.7 × 10^6

This is the one operation where scientific notation requires an extra step. Multiplication and division are actually easier in scientific notation than in standard form.

E-Notation: The Calculator and Programming Standard

E-notation replaces “× 10^” with the letter E:

  • 3.0E8 = 3.0 × 10^8
  • 4.5E-4 = 4.5 × 10^-4
  • 6.022E23 = 6.022 × 10^23

Every scientific calculator and most programming languages (Python, JavaScript, C, Java) use this format. When Python prints 1.5e-09, it means 1.5 × 10^-9. When a spreadsheet shows 1.23E+10, it means 1.23 × 10^10. The math is identical — E-notation is purely a display convention.

Scientific Notation vs Standard Form: Comparison Table

Standard FormScientific NotationE-NotationExponent Sign
1,0001 × 10^31E3Positive
5,280,0005.28 × 10^65.28E6Positive
0.0011 × 10^-31E-3Negative
0.0000000757.5 × 10^-87.5E-8Negative
602,200,000,000,000,000,000,0006.022 × 10^236.022E23Positive

5 Fields Where Scientific Notation Is Essential

  • Astronomy:NASA measures distances in light-years and AU. The distance to the nearest star (Proxima Centauri) is 4.0 × 10^16 meters — writing that in standard form would require 17 digits.
  • Chemistry:IUPAC standards require scientific notation for atomic masses, molar concentrations, and reaction rate constants. Avogadro's number (6.022 × 10^23) is the most famous example.
  • Physics:Planck's constant is 6.626 × 10^-34 J·s. Elementary charge is 1.602 × 10^-19 coulombs. These constants appear in every quantum mechanics calculation.
  • Finance and economics:The US GDP (~2.9 × 10^13 dollars), the US national debt (~3.6 × 10^13 dollars), and global derivatives markets (~7 × 10^14 dollars) are all expressed in scientific notation in academic research.
  • Computer science:Memory sizes, processing speeds, and cryptographic key lengths span many orders of magnitude. A 256-bit RSA key space has roughly 1.16 × 10^77 possible values.

Convert any number instantly

Use our free Scientific Notation Calculator →

Working with rounding? Try our Significant Figures Guide

Common Mistakes to Avoid

Coefficient Outside the 1–10 Range

A number like 45 × 10^3 is not in proper scientific notation because 45 is not between 1 and 10. The correct form is 4.5 × 10^4. Always check that your coefficient satisfies 1 ≤ a < 10.

Forgetting to Adjust After Multiplication

When multiplying, your intermediate coefficient might land outside the 1–10 range. For example, 5 × 4 = 20. Write it as 20 × 10^5, then normalize: 2.0 × 10^6. Skipping this normalization step is the most common error students make.

Adding Exponents Without Aligning

You cannot directly add 3 × 10^5 and 4 × 10^3 by adding the coefficients. The exponents must match first. Convert the smaller one: 4 × 10^3 = 0.04 × 10^5. Then add: (3 + 0.04) × 10^5 = 3.04 × 10^5.

Sign Confusion on Small Numbers

A negative exponent does not mean the number is negative — it means the number is a small fraction less than 1. The number 3 × 10^-4 = 0.0003, which is positive. A negative number in scientific notation would be –3 × 10^-4 = –0.0003.

For related math concepts, see our guides on significant figures and how to use a scientific calculator.

Frequently Asked Questions

What is scientific notation?

Scientific notation is a way of expressing very large or very small numbers as a product of a coefficient and a power of 10. The format is a × 10^n, where 1 ≤ a < 10 and n is any integer. For example, 300,000,000 written in scientific notation is 3 × 10^8. It is the international standard used in science, engineering, and finance to avoid writing out dozens of zeros.

How do you convert a number to scientific notation?

Move the decimal point until only one non-zero digit sits to the left of it. Count how many places you moved — that count is the exponent. If you moved the decimal left (large number), the exponent is positive. If you moved it right (small decimal), the exponent is negative. Example: 45,000 → move 4 places left → 4.5 × 10^4. Example: 0.00045 → move 4 places right → 4.5 × 10^-4.

What does E mean in scientific notation?

E-notation is a shorthand used on calculators and in programming languages where the letter E replaces “× 10^”. So 3.0E8 means 3.0 × 10^8, and 4.5E-4 means 4.5 × 10^-4. Both are equivalent to standard scientific notation — E-notation is simply easier to type on a keyboard or display on a screen with limited character support.

How do you multiply in scientific notation?

Multiply the coefficients together and add the exponents. For example: (3 × 10^4) × (2 × 10^3) = (3 × 2) × 10^(4+3) = 6 × 10^7. If the resulting coefficient is 10 or greater, normalize: 12 × 10^5 = 1.2 × 10^6. Division works the same way in reverse: divide the coefficients and subtract the exponents.

What is 0.00045 in scientific notation?

0.00045 in scientific notation is 4.5 × 10^-4. To convert, move the decimal point 4 places to the right until one non-zero digit sits to the left: 0.00045 → 4.5. Because you moved right (original number less than 1), the exponent is negative: −4. In E-notation this is written as 4.5E-4.