This tool converts numbers between scientific notation (a × 10n) and standard decimal notation, working in both directions so you can move freely between forms used across science, engineering and computing to handle very large or very small values without writing long strings of zeros. Two tabs cover each direction. On the Scientific to Decimal tab, you enter a coefficient (the number before × 10) and an exponent (the power of 10, which can be negative), and it returns the scientific notation entered, the decimal result, whether the exponent is positive or negative, how many places the decimal point moves and in which direction, and the final standard decimal form, with a step-by-step working line. On the Decimal to Scientific tab, you enter any decimal number and choose how many significant figures to keep in the coefficient, from two up to full precision, and it returns the coefficient, the exponent, the places moved, and the resulting scientific notation, again with working shown. Results update live as you type, and a worked example using the default inputs sits below the calculator so you can check the method. The converter handles numbers within JavaScript's safe integer range precisely; for exponents beyond about 20 the decimal result shows in exponential form rather than hundreds of digits, so for critical work, double-check results with your institution's preferred calculator.
Enter the number in the form a × 10n.
Input: 2.5 × 104
Step 1: 104 = 10,000
Step 2: 2.5 × 10,000 = 25,000
Step 3: Move the decimal point 4 places to the right in 2.5 to get 25,000
Result: 25,000
Enter any positive or negative decimal number to convert to scientific notation.
Scientific notation is a compact way of writing very large or very small numbers. Any number is expressed as a coefficient multiplied by a power of ten: a × 10n. The coefficient a has exactly one non-zero digit before the decimal point (so 1 is less than or equal to |a| which is less than 10). The exponent n is an integer that can be positive, negative, or zero.
Scientific notation is standard in science, engineering, astronomy, chemistry, and computing because it makes very large and very small numbers much easier to read and compare. For example, the distance from the Earth to the Sun (approximately 150,000,000,000 metres) is written as 1.5 × 1011 m, and the diameter of a hydrogen atom (approximately 0.0000000001 metres) is written as 1 × 10-10 m.
To convert a × 10n to a decimal number:
To convert a decimal number to scientific notation:
| Scientific Notation | Decimal Notation | Description |
|---|---|---|
| 2.5 × 104 | 25,000 | Move decimal 4 places right |
| 1.0 × 100 | 1 | Any number to the power zero is 1 |
| 6.022 × 1023 | 602,200,000,000,000,000,000,000 | Avogadro's number |
| 3.0 × 108 | 300,000,000 | Speed of light (m/s, approx) |
| 1.6 × 10-19 | 0.00000000000000000016 | Charge of an electron (C) |
| 9.8 × 10-3 | 0.0098 | Move decimal 3 places left |
| 4.8 × 104 | 48,000 | Move decimal 4 places right |
Scientific notation is used whenever numbers span many orders of magnitude:
Standard (normalised) scientific notation requires the coefficient to satisfy 1 ≤ |a| < 10. For example, 25,000 in normalised scientific notation is 2.5 × 104, not 25 × 103. This converter uses normalised form when converting decimal to scientific notation. When converting scientific to decimal, any coefficient value is accepted (including non-standard forms such as 25 × 103).
Method: Conversion formula: decimal = a × 10n. For scientific to decimal, the result is computed as coefficient multiplied by Math.pow(10, exponent). For decimal to scientific, the exponent is floor(log10(|x|)) and the coefficient is x divided by 10^exponent. Large integer results are formatted without floating-point rounding errors by using string manipulation for whole-number exponents.
This converter handles numbers within JavaScript's safe integer range accurately. For very large exponents (above 20) the decimal result is displayed in exponential form, as writing out hundreds of digits is not practical. For scientific work, always verify results using your institution's preferred tool or a scientific calculator.