Math

Scientific Notation Converter

Convert between decimal and scientific notation, including engineering notation and significant figures.

Need this done properly for your business?

Radiatus delivers secure cloud, DevOps & compliance engineering.

Book a free consult

The form and why it exists

Scientific notation writes a number as a coefficient between 1 and 10 multiplied by a power of ten. 0.00000000015 becomes 1.5 × 10⁻¹⁰. Beyond compactness, the form makes magnitude immediately readable — comparing 10⁻¹⁰ with 10⁻⁷ is instant, while comparing the decimal forms means counting zeros, which is where errors enter.

The exponent counts places, and its sign says direction

Positive exponents move the decimal point right and mean numbers greater than 10; negative move it left and mean numbers below 1. 3.2 × 10⁴ is 32,000 and 3.2 × 10⁻⁴ is 0.00032. A number already between 1 and 10 has an exponent of 0, and the most common slip is being off by one because the count starts from the original position, not from the first digit.

Engineering notation restricts the exponent

Engineering notation is the same idea with exponents constrained to multiples of three, so the coefficient runs from 1 to 1000. This exists because SI prefixes step in thousands: 47,000 ohms is 47 × 10³ in engineering notation, which reads directly as 47 kilohms. Scientific notation would give 4.7 × 10⁴, which maps onto no prefix at all. Electronics and mechanical work use engineering notation for exactly this reason.

Significant figures are preserved, and that is the point

1.20 × 10³ and 1.2 × 10³ are the same value with different precision claims — three significant figures against two. Decimal form cannot express this distinction: 1200 is ambiguous about whether the trailing zeros are measured or placeholders. This is why scientific work uses the notation even for numbers of ordinary size. When multiplying, the result carries the significant figures of the least precise input; when adding, it carries the decimal places of the least precise.

E notation is the same thing for computers

1.5e-10 is how programming languages and spreadsheets write it, since superscripts are not available in plain text. Spreadsheets switch to it automatically above about 11 digits, which is why long identifiers such as order numbers and barcodes get mangled on import — the value is converted to a float and the trailing digits are lost permanently. Formatting the column as text before pasting is the fix.

Floating point is scientific notation in binary

A double stores a sign, a binary exponent and a 53-bit significand — the same structure with base 2. This is why floating-point numbers have roughly constant relative precision rather than constant absolute precision, and why 0.1 has no exact representation.

Frequently Asked Questions

Privacy & Security

All processing happens locally in your browser — nothing is uploaded.

Data: None
Client-side-Side
Active
v1.0

How to Use

Type a number (e.g. 0.00042 or 4.2e8) to convert between decimal and scientific notation.

Disclaimer: This tool is provided "as is" without warranty of any kind. Results are for educational and utility purposes.