Scientific Notation Converter
123,400 in scientific notation is 1.234 x 10^5, and 0.00056 is 5.6 x 10^-4. This scientific notation converter rewrites a finite standard number as a coefficient multiplied by a power of ten. It reports the coefficient, the integer exponent, the full scientific-notation form, and the equivalent E-notation used by calculators and software. Scientific notation makes very large and very small numbers easier to read, compare, and enter without long runs of zeros. The exponent records how far the decimal point moves. A positive exponent moves the decimal to the right when reconstructing the standard number. A negative exponent moves it to the left. The sign of a negative input remains attached to the coefficient. Enter the complete value rather than a partially converted expression. The tool accepts zero, positive numbers, negative numbers, and decimals. It uses JavaScript number precision, so it is best suited to values that fit ordinary floating-point arithmetic. If every recorded digit matters, keep the original text and its stated significant figures alongside the converted result.
Quick answer
Scientific notation writes a number as a coefficient times a power of ten.
What this tells you
- •Scientific notation writes a number as a coefficient times a power of ten.
- •The coefficient is always 1 or more but less than 10.
- •A positive exponent means a large number, and a negative exponent means a small decimal.
- •E-notation is the same value written with the letter e, such as 1.234e+5.
- •Negative values keep a negative coefficient, while the exponent still depends on the number's magnitude.
- •Zero is a special case and is displayed as 0 x 10^0 with coefficient 0 and exponent 0.
- •The converter preserves the stored numeric value, but floating-point input can round digits before the result is formatted.
How to Use
- 1Enter the number you want to convert in standard form.
- 2Use a negative sign for negative numbers and a decimal point for decimals.
- 3Click Calculate to get the scientific notation, coefficient, exponent, and E-notation.
- 4Check that the coefficient's absolute value is at least 1 and less than 10, unless the input is zero.
- 5Use the exponent sign to check direction. Values with magnitude 10 or greater have positive exponents, while nonzero values with magnitude below 1 have negative exponents.
- 6Copy the E-notation result when entering the value into software that accepts forms such as 1.234e+5.
- 7Retain any required significant-figure information separately because the converter receives a numeric value rather than a measurement record.
How It Works
Formula
value = coefficient x 10^exponent, where 1 <= |coefficient| < 10For a nonzero value, move the decimal point until the coefficient has one nonzero digit to the left of the point. Count the places moved. Moving the point left while converting a large standard number gives a positive exponent. Moving it right while converting a small decimal gives a negative exponent. For 123,400, move the point five places left to get 1.234, so the result is 1.234 x 10^5. Multiplying 1.234 by 100,000 reconstructs 123,400. For 0.00056, move the point four places right to get 5.6, so the exponent is -4. Multiplying 5.6 by 0.0001 reconstructs 0.00056. The code obtains the coefficient and exponent from JavaScript's exponential representation. Zero needs a separate convention because no power of ten can normalize its coefficient into the usual nonzero range.
Calculation note: values are processed in the order shown above, using the current input units.
Worked Examples
Convert 123,400 to scientific notation
Move the decimal point 5 places to the left so one digit stays in front, giving a coefficient of 1.234 and an exponent of 5.
Convert a small decimal, 0.00056
Move the decimal point 4 places to the right to get a coefficient of 5.6. Moving right makes the exponent negative, so the result is 5.6 x 10^-4.
Convert a negative number, -4,500
The magnitude 4,500 requires moving the decimal point three places left. The negative sign stays on the coefficient, giving -4.5 x 10^3 and E-notation -4.5e+3.
Convert 0.072
Move the point two places right to make 7.2. The negative exponent reverses that movement because 10^-2 equals 0.01, and 7.2 x 0.01 = 0.072.
Convert zero
The implementation uses coefficient 0 and exponent 0 as a practical display convention. Since 0 multiplied by 10 raised to any finite power is still 0, zero does not have a unique normalized exponent.
Standard Numbers in Scientific Notation
Common values converted to scientific notation.
| Standard Number | Scientific Notation |
|---|---|
| 123,400 | 1.234 x 10^5 |
| 0.00056 | 5.6 x 10^-4 |
| 6,022,000,000 | 6.022 x 10^9 |
| -4,500 | -4.5 x 10^3 |
| 72 | 7.2 x 10^1 |
| 0.072 | 7.2 x 10^-2 |
| 0 | 0 x 10^0 |
The exponent changes sign between 72 and 0.072 because the decimal point moves in opposite directions during conversion.
Reading coefficients, exponents, and E-notation
The coefficient carries the meaningful digits and the sign. In normalized base-ten scientific notation, its absolute value is at least 1 and less than 10. A coefficient of 12.3 is not normalized because it can be rewritten as 1.23 x 10^1 before applying the rest of the exponent.
The exponent tells you the scale. An exponent of 5 means multiply by 100,000, while an exponent of -4 means multiply by 0.0001. It does not tell you how many significant figures the original value had. For example, a numeric input cannot distinguish a measured 1,200 with two significant figures from an exact count of 1,200 items.
E-notation is a compact keyboard form of the same expression. The letter e means multiplied by ten raised to the following exponent. Thus 6.022e+9 means 6.022 x 10^9. It does not use Euler's number in this context. Many spreadsheets, programming languages, and calculators display large or small values this way.
Common mistakes
- Leaving a coefficient of 10 or more. The coefficient must be at least 1 and less than 10, so 12 x 10^4 should be written as 1.2 x 10^5.
- Getting the exponent sign backward. Large numbers use a positive exponent and small decimals use a negative exponent.
- Counting decimal places in the wrong direction. Moving the point left raises the exponent, while moving it right lowers it.
- Dropping the negative sign from the coefficient. A negative standard number must remain negative after conversion.
- Treating E-notation as multiplication by Euler's number. In numeric entry, e+5 means times 10 to the fifth power.
- Adding or removing meaningful trailing zeros without considering significant figures. Scientific notation can show precision, but a numeric input may already have lost that context.
- Writing 0 with a normalized nonzero coefficient. Zero is a special case because it cannot satisfy the usual 1 <= |coefficient| < 10 rule.
- Assuming every long integer is represented exactly. Standard floating-point numbers have finite precision and can round very large integers.
Embed this calculator on your site
Drop this single line where you want the calculator to appear. It is responsive, mobile-friendly, resizes automatically, and is free to use with attribution.
<script src="https://calctide.com/embed.js" data-tool="scientific-notation-converter" async></script>Preview the embed at /embed/scientific-notation-converter/.