Scientific Notation

Mathematics

Convert numbers between standard decimal format, scientific notation (m × 10ⁿ), and engineering E-notation. Easily compute significant digits and orders of magnitude for physics and astronomy.

Calculated Result
3.2 × 10^-4

E-notation 3.200000e+0

Formula: x = m × 10ⁿ, 1 ≤ |m| < 10

About this calculator

In physics, chemistry, and astronomical modeling, values range from the mass of an electron (9.1 × 10⁻³¹ kg) to the mass of the Sun (1.989 × 10³⁰ kg). Expressing these numbers with trailing or leading zeros is tedious and prone to transcription errors.

This tool instantly decomposes any positive or negative real number into its normalized mantissa (where 1 ≤ |m| < 10) and integer power of ten. It also generates engineering notation (where the exponent is a multiple of three) and standard E-notation used in programming languages.

How It Works & Formula

Formulax = m × 10ⁿ with 1 ≤ |m| < 10

The number's base-10 logarithm determines the characteristic exponent n = floor(log10(|x|)). The mantissa is then evaluated as m = x / 10ⁿ. Special checks handle zero, negative inputs, and subnormal floating-point quantities.