Scientific to Decimal Notation Converter

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.

Calculate.co.nz is proud to be partnered with realtor.co.nz, a trusted resource for navigating the New Zealand property market. Their Helpful Articles section offers clear, well-structured insights across buying, selling, and building, making complex real estate topics more accessible. With a focus on up-to-date guidance and practical knowledge, they empower Kiwis to move forward with clarity and confidence in a constantly evolving property landscape.
Calculate.co.nz partner: realtor.co.nz
Standard formula  Scientific notation conversion: decimal = a × 10n. Exact arithmetic for integers; floating-point for large decimals.

1. Enter Scientific Notation

Enter the number in the form a × 10n.

2.5 × 104
Please enter valid numbers for the coefficient and exponent.

2. Result

Scientific notation2.5 × 104
Decimal result25,000
Exponent directionPositive (move decimal right)
Decimal places moved4 places right
Standard decimal form25,000

Conversion Result

Decimal Notation
25,000
Standard decimal form
Step-by-step
2.5 × 10,000 = 25,000
Calculation working

Worked Example (default inputs)

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

1. Enter Decimal Number

Enter any positive or negative decimal number to convert to scientific notation.

Please enter a valid number.

2. Result

Decimal input25,000
Coefficient (a)2.5
Exponent (n)4
Decimal places moved4 places left
Scientific notation2.5 × 104

Conversion Result

Scientific Notation
2.5 × 104
Standard scientific form
Step-by-step
25,000 ÷ 10,000 = 2.5
Calculation working

What is 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.

How to Convert Scientific Notation to Decimal

To convert a × 10n to a decimal number:

  1. Write out the coefficient a.
  2. If n is positive, move the decimal point n places to the right (towards larger numbers), filling in zeros where needed.
  3. If n is negative, move the decimal point |n| places to the left (towards smaller numbers), filling in leading zeros where needed.
  4. If n is zero, the number equals the coefficient exactly (since 100 = 1).

How to Convert Decimal to Scientific Notation

To convert a decimal number to scientific notation:

  1. Move the decimal point until there is exactly one non-zero digit to its left.
  2. Count the number of places you moved the decimal point. This is the exponent n.
  3. If you moved the decimal left, n is positive. If you moved it right, n is negative.
  4. Write the result as a × 10n.

Examples

Scientific NotationDecimal NotationDescription
2.5 × 10425,000Move decimal 4 places right
1.0 × 1001Any number to the power zero is 1
6.022 × 1023602,200,000,000,000,000,000,000Avogadro's number
3.0 × 108300,000,000Speed of light (m/s, approx)
1.6 × 10-190.00000000000000000016Charge of an electron (C)
9.8 × 10-30.0098Move decimal 3 places left
4.8 × 10448,000Move decimal 4 places right

Common Uses

Scientific notation is used whenever numbers span many orders of magnitude:

Normalised vs Non-Normalised Scientific Notation

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).

Related Calculators

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.