Scientific Notation Converter
Convert any number to scientific notation (M × 10^E) or decode it back to standard decimal. Works for very large and very small numbers.
What is scientific notation?
Scientific notation is a way of writing numbers that are very large or very small in a compact, unambiguous form. Instead of writing 0.00000000167 or 602,000,000,000,000,000,000,000, you write 1.67 × 10⁻⁹ and 6.02 × 10²³. This converter handles both directions: decimal to scientific notation, and scientific notation back to decimal.
The format: M × 10^E
Scientific notation expresses every non-zero number as a product of two parts:
Number=M×10E- M (mantissa): a value satisfying — exactly one non-zero digit to the left of the decimal point
- E (exponent): an integer — positive for large numbers, negative for small numbers
The mantissa carries the significant digits; the exponent encodes the magnitude (scale). Changing E by 1 moves the decimal point one place.
Converting standard → scientific notation
Step 1: Find the exponent. It equals the number of places the decimal point must move to leave a mantissa between 1 and 10. Moving left gives a positive exponent; moving right gives a negative exponent.
E=⌊log10∣x∣⌋Here ⌊·⌋ is the floor function — rounds down to the nearest integer (towards negative infinity).
Step 2: Compute the mantissa.
M=10ExExample: 12,345,000
- , so $E = 7$
- Result:
Example: 0.0000456
- , so $E = -5$ (floor of −4.34)
- Result:
Converting scientific → standard notation
Multiply the mantissa by . Positive E: move the decimal point right by E places. Negative E: move it left by |E| places, padding with zeros.
Example:
- Move decimal 4 places right: 37,000
Example:
- Move decimal 3 places left: 0.0021
Significant figures and precision
The mantissa in scientific notation makes the number of significant figures explicit. has four significant figures (the trailing zeros in the mantissa are meaningful). The equivalent "1200" in standard notation is ambiguous — it could have two, three, or four significant figures.
This clarity is one of the key reasons scientific notation is the default in lab reports, engineering specifications, and measurement science: it eliminates ambiguity about which zeros are meaningful and which are merely placeholders.
Where scientific notation is used
Physics and chemistry — nearly all fundamental constants and atomic-scale quantities are expressed in scientific notation because the numbers span dozens of orders of magnitude:
| Quantity | Value |
|---|---|
| Speed of light | m/s |
| Avogadro's number | mol⁻¹ |
| Electron mass | kg |
| Proton radius | m |
Astronomy — distances in space span inconveniently large ranges. The distance from Earth to the Sun is about meters. The observable universe has a radius of about meters. Standard notation for these values would require counting dozens of zeros.
Engineering and electronics — component values in circuits span many orders of magnitude. Capacitances run from picofarads ( F) to farads; resistances from milliohms to megaohms. Scientific notation keeps the values compact and the prefixes (pico, nano, micro, milli, kilo, mega, giga) directly correspond to exponents of three.
Computer science — floating-point numbers in computers are stored in a binary analog of scientific notation: a mantissa and an exponent. Understanding the format helps explain floating-point precision limits ( for 64-bit doubles).
Finance and macroeconomics — national debts, global GDP, and market capitalizations reach values where standard notation is unwieldy. The US national debt ( as of 2025) is easier to compare across countries in this form.
Common notation variants
Standard scientific notation uses × 10^E. Several equivalent notations appear in practice:
- E notation (used by calculators and programming languages):
1.23E4or1.23e4means . The letter E stands for "exponent." - Engineering notation: a variant where the exponent is always a multiple of 3, so the mantissa can range from 1 to 999. This aligns with SI prefixes (kilo = 10³, mega = 10⁶, giga = 10⁹).
- Normalized form: strictly requires the mantissa to satisfy . Some contexts allow ("unnormalized" scientific notation); this calculator uses the normalized standard form.
Frequently Asked Questions (FAQ)
What is scientific notation?
Scientific notation expresses a number as M × 10^E, where M (the mantissa) is a value between 1 and 10, and E (the exponent) is an integer. For example, 12,345 = 1.2345 × 10⁴ and 0.00056 = 5.6 × 10⁻⁴. It is used to write very large or very small numbers compactly.
How do I find the mantissa and exponent?
To convert a number x to scientific notation: the exponent E = floor(log₁₀|x|), and the mantissa M = x ÷ 10^E. For x = 0.0045: E = floor(log₁₀(0.0045)) = floor(−2.35) = −3, so M = 0.0045 ÷ 10⁻³ = 4.5, giving 4.5 × 10⁻³.
When should I use scientific notation?
Scientific notation is standard in science and engineering when dealing with very large numbers (e.g., the speed of light: 3 × 10⁸ m/s) or very small numbers (e.g., a proton's mass: 1.67 × 10⁻²⁷ kg). It makes calculations easier and reduces the risk of misreading zeros.
Recommended Next
Percentage Calculator
Calculate percentages three ways: find P% of a number, find what percent one number is of another, or find the whole from a part and a percentage.