ToolHub
Guides

How to read scientific notation (what 1.5e12 means)

What the e in a number like 1.5e12 means, how to read positive and negative exponents, and how to convert scientific notation to a plain number and back, with a reference table.

ToolHub TeamJuly 13, 20268 min read

Punch a big multiplication into your phone and the answer sometimes comes back looking strange: 1.5e12instead of a long row of digits. Calculators, spreadsheets, and programming languages all do this. When a number has too many digits to show comfortably, or is a tiny fraction with a long string of zeros, the screen switches to a compact shorthand called scientific notation, also known as E notation. It is not an error and it is not a new kind of number. It is the same value written in a way that fits. Once you know the one rule behind it, "1.5e12" reads instantly as 1.5 trillion, and you will never be thrown by it again.

Free tool

Open the Scientific Calculator

Trig, logs, powers, factorial - with keyboard input and history

What the "e" actually means

The estands for "times ten to the power of." Whatever number sits after the e is the exponent, the power of ten you multiply by. So 1.5e12 means 1.5 times 10 to the power 12. Ten to the power 12 is a 1 followed by twelve zeros, which is one trillion, so 1.5 of those is 1,500,000,000,000. Read out loud that is one and a half trillion.

The part before the e is called the coefficient (or mantissa), and it is usually written as a single digit, a decimal point, and the rest of the digits. The part after the e is the exponent. Put simply:

1.5e12 = 1.5 × 10^12 = 1,500,000,000,000

That is the whole idea. Every E-notation number is just a coefficient multiplied by a power of ten, and the exponent tells you how big or small that power is.

This e is not the mathematical constant e

The e in 1.5e12has nothing to do with Euler's number (about 2.718) that you may have met in logarithms and calculus. Here the e is purely a display shortcut for "times ten to the power of." Same letter, completely different meaning.

Reading a positive exponent: move the decimal right

A positive exponent means a large number. The exponent tells you how many places to move the decimal point to the right. Start with the coefficient, then slide the decimal that many spots, adding zeros as you run out of digits.

Take 1.5e12. The decimal in 1.5 moves 12 places to the right. There is already one digit (the 5) after the decimal, so the first move uses it and the remaining 11 moves each add a zero: 15 followed by eleven zeros, which is 1,500,000,000,000.

  • 1e3 means 1 × 10^3, so move the decimal 3 places right: 1,000 (one thousand).
  • 1.5e6 means 1.5 × 10^6, move 6 places right: 1,500,000 (1.5 million).
  • 6.022e23 means 6.022 × 10^23, move 23 places right: a 6 followed by 23 more digits.

A quick shortcut for whole coefficients: 1e12 is simply a 1 with 12 zeros after it. When the coefficient has a decimal like 1.5, count the digit after the point as one of your moves so you do not add an extra zero.

Reading a negative exponent: move the decimal left

A negative exponent means a small number, a value between zero and one. Now the decimal point moves to the left instead of the right, and the exponent tells you how many places. This is how tiny measurements get written without a long string of leading zeros.

Take 2.5e-6. That means 2.5 times 10 to the power of negative 6, so move the decimal 6 places left: 0.0000025. Counting from the decimal point, there are six digits before you reach the 25, which matches the exponent of 6.

  • 1e-3 means 1 × 10^-3, move 3 places left: 0.001 (one thousandth).
  • 2.5e-6 means 2.5 × 10^-6, move 6 places left: 0.0000025.
  • The minus sign only flips the direction. The digit after it is still just a place count.

Positive is big, negative is small

A fast sanity check: a positive exponent always gives a number bigger than the coefficient, and a negative exponent always gives a number smaller than one. If you moved the decimal the wrong way, your answer will be wildly off in size, which makes the mistake easy to spot.

Converting to a plain number and back

Going from E notation to a plain number is just the decimal move you saw above. Going the other way, from a plain number into scientific notation, follows the reverse steps: slide the decimal until only one non-zero digit sits in front of it, then count how far you moved.

4.7e5 = 4.7 × 10^5 = 470,000

To convert 470,000 back, move the decimal left until it sits after the first digit: 4.7. You moved it 5 places, so the exponent is 5, giving 4.7e5. For a small number the count goes the other way:

0.00089 = 8.9 × 10^-4 = 8.9e-4

Here you move the decimal right 4 places to get 8.9, so the exponent is negative 4. The rule of thumb: moving the decimal left gives a positive exponent, moving it right gives a negative one, and the number of places is the size of the exponent.

Let the calculator switch formats for you

Type a value into the Scientific Calculator and it will show both the plain number and the E-notation form, so you can check your decimal counting instantly instead of miscounting zeros by hand.

Common values at a glance

The table below maps E-notation values you will actually run into onto their plain-number form, with a short label for scale. Keep it handy as a reference until reading these becomes automatic.

Plain numberWhat it is
1e31,000One thousand
1.5e61,500,0001.5 million
1.5e121,500,000,000,0001.5 trillion
6.022e23602,200,000,000,000,000,000,000Avogadro's number
1e-30.001One thousandth
2.5e-60.00000252.5 millionths

Notice the pattern: the exponent is the count of zeros for whole powers of ten, and for small numbers it is the position of the first significant digit after the decimal point.

Why scientists and computers use it

Scientific notation earns its name because science deals with numbers at extreme scales. The number of molecules in a small sample runs to 23 digits, and the size of an atom runs to many leading zeros. Writing either in full is error prone, since a single missing zero changes the value by a factor of ten. Compressing them to 6.022e23 or 1e-10 keeps them readable and makes it easy to compare magnitudes at a glance.

Computers reach for the same shorthand for a practical reason: screen space and storage. A calculator display or a spreadsheet cell can only show so many characters, so once a result grows past that limit the software falls back to E notation rather than truncating digits or overflowing the box. Programming languages print floating-point numbers this way too, which is why you will see 1.5e12 in code output, JSON, and log files.

  • It keeps very large and very small numbers short and readable.
  • It makes the scale of a number obvious from the exponent alone.
  • It avoids miscounting long runs of zeros.
  • It fits inside fixed-width displays and data formats.

Frequently asked questions

What is 1.5e12 in numbers?

It is 1,500,000,000,000, or 1.5 trillion. The e12 means times 10 to the power 12, so you move the decimal point in 1.5 twelve places to the right, which gives a 15 followed by eleven zeros.

What does 1.5e12 mean?

It means 1.5 times 10 to the power 12. The e is short for "times ten to the power of," and 12 is the exponent. Multiplying 1.5 by a one with twelve zeros gives one and a half trillion.

What does the e mean in a number?

In a number like 1.5e12 or 2.5e-6, the e stands for "times ten to the power of." The value after it is the exponent, telling you how many places to move the decimal point, right for a positive exponent and left for a negative one. It is not the mathematical constant e.

How do I read scientific notation?

Read the number before the e as the starting value and the number after it as the power of ten. A positive exponent moves the decimal right and makes the number larger, while a negative exponent moves it left and makes the number smaller. So 4.7e5 is 470,000 and 4.7e-5 is 0.000047.

Is E notation the same as scientific notation?

Yes. E notation is just the way calculators and computers type scientific notation, using the letter e in place of the "times ten to the power of" symbol. 1.5e12 and 1.5 × 10^12 are two ways of writing the exact same value.

Related tools

Keep reading