BIPM-ratified constants · v1.0
Converter
Engineering, notation calculator.
Convert numbers to engineering notation (m x 10^n, exponent a multiple of 3) for direct alignment with SI prefixes like kilo, mega, micro, and nano.
From
mantissa
mantissa
Equivalents
Coefficient
Power of 10
Common pairings
The conversion
How the value
is computed.
Engineering Notation: Formula, Variables, and Complete Guide
Engineering notation expresses any real number as m × 10n, where n is always a multiple of 3. This single constraint aligns every result with the International System of Units (SI) prefix system, making the engineering notation converter the standard representation in electrical engineering, RF design, semiconductor physics, and applied technical mathematics worldwide.
The Core Formula
Three sequential steps transform any real number x into engineering notation:
Step 1 — Determine the Exponent n
Apply the floor-based formula: n = 3 ⌊log10|x| ÷ 3⌋. The floor function (⌊⌋) rounds the quotient down to the nearest integer before multiplying by 3, guaranteeing n lands on a multiple of 3. For x = 47,500: log10(47,500) ≈ 4.677 → 4.677 ÷ 3 ≈ 1.559 → ⌊1.559⌋ = 1 → n = 3 × 1 = 3.
Step 2 — Calculate the Mantissa m
Divide the original value by 10n: m = x ÷ 10n. For the example: m = 47,500 ÷ 103 = 47.5. The full engineering notation result is 47.5 × 103. Unlike scientific notation — where the mantissa must fall strictly between 1 and 10 — engineering notation allows m to occupy the half-open interval [1, 1000), which keeps the exponent anchored to multiples of 3.
Variable Definitions
- x (Number to Convert) — The original numeric value. Accepts positive numbers, negative numbers, and decimals of any magnitude. The formula evaluates log10|x| during exponent calculation, using the absolute value to handle negative inputs, and restores the original sign through m.
- n (Engineering Exponent) — Always a multiple of 3. Valid values: … −12, −9, −6, −3, 0, 3, 6, 9, 12 … This ladder matches the SI prefix scale exactly, which is the defining feature of engineering notation over standard scientific notation.
- m (Mantissa / Coefficient) — Falls in [1, 1000) for positive inputs; preserves the sign of x for negative inputs. The product m × 10n reconstructs the original value exactly.
- Output Component — Selects whether the calculator returns the mantissa m or the exponent n, useful when feeding individual components into downstream formulas or spreadsheet cells.
SI Prefix Correspondence
The primary advantage of engineering notation is its one-to-one mapping to named SI prefixes, enabling direct unit labeling without extra conversion steps:
- 1012 → tera (T): 2.4 × 1012 Hz = 2.4 THz (fiber-optic data rate)
- 109 → giga (G): 3.1 × 109 Hz = 3.1 GHz (CPU clock speed)
- 106 → mega (M): 100 × 106 Ω = 100 MΩ (insulation-resistance test)
- 103 → kilo (k): 4.7 × 103 Ω = 4.7 kΩ (standard resistor value)
- 100 → (no prefix): 330 Ω (resistor color-band notation)
- 10−3 → milli (m): 47 × 10−3 A = 47 mA (LED forward current)
- 10−6 → micro (μ): 8.25 × 10−6 F = 8.25 μF (filter capacitor)
- 10−9 → nano (n): 10 × 10−9 s = 10 ns (signal propagation delay)
- 10−12 → pico (p): 22 × 10−12 F = 22 pF (ceramic bypass capacitor)
Worked Examples
Example 1 — Small decimal: Convert 0.00000825. log10(0.00000825) ≈ −5.084 → ⌊−5.084 ÷ 3⌋ = ⌊−1.695⌋ = −2 → n = −6. Mantissa: 0.00000825 ÷ 10−6 = 8.25. Result: 8.25 × 10−6, instantly readable as 8.25 μA or 8.25 μF.
Example 2 — Resistor value: Convert 4,700 Ω. log10(4,700) ≈ 3.672 → ⌊3.672 ÷ 3⌋ = ⌊1.224⌋ = 1 → n = 3. Mantissa: 4,700 ÷ 1,000 = 4.7. Result: 4.7 × 103 Ω = 4.7 kΩ (matches the standard resistor datasheet value).
Example 3 — Negative number: Convert −0.0056 A. |x| = 0.0056; log10(0.0056) ≈ −2.252 → ⌊−2.252 ÷ 3⌋ = ⌊−0.751⌋ = −1 → n = −3. Mantissa: −0.0056 ÷ 10−3 = −5.6. Result: −5.6 × 10−3 A = −5.6 mA.
Methodology and Sources
The floor-based exponent algorithm matches the engineering notation display mode on physical scientific calculators, as documented in the TI-30XS MultiView Scientific Calculator Guide. The formal definitions of the mantissa range [1, 1000) and the multiple-of-3 exponent constraint are drawn from the GNU Emacs Calc Manual — Engineering Notation, which implements the same algorithm in software. SI prefix definitions follow the International Bureau of Weights and Measures (BIPM) specification, ensuring results are compatible with IEEE and IEC technical documents.
Reference