Scientific Notation Converter

Convert decimal, scientific, and E notation while preserving reported trailing zeros and showing engineering notation.

Use decimal, e, or x10^ notation, for example 3.45e-6.

Keeps zeros after a decimal input, such as 5.600 x 10^-3.

Output style

Scientific notation

Enter a number

Normalized coefficient with a power of ten.

Equivalent forms
FormatValueNote
Export

scientific notation uses 1 <= absolute value of coefficient < 10 How?

How this is calculated

The parser keeps the typed digits and decimal position as strings. For a nonzero number, it finds the first nonzero digit, shifts the decimal point to make the coefficient at least 1 and less than 10, and records the shift as the exponent.

Engineering notation uses an exponent that is a multiple of 3. Zero is displayed by convention because any exponent multiplied by zero still gives zero.

Formula: scientific notation uses 1 <= absolute value of coefficient < 10

Sources

  1. Wikipedia, Scientific notation. Wikipedia. Retrieved .

Method last reviewed