terican

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

12345 mantissa =12.345Engineering Notation Component

Equivalents

Precision: 6 dp · Notation: Decimal · 2 units

Coefficient

Mantissamantissa12.345

Power of 10

Exponentexponent3

Common pairings

1 mantissaequals0 exponent
1 exponentequals1 mantissa

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:

  • 1012tera (T): 2.4 × 1012 Hz = 2.4 THz (fiber-optic data rate)
  • 109giga (G): 3.1 × 109 Hz = 3.1 GHz (CPU clock speed)
  • 106mega (M): 100 × 106 Ω = 100 MΩ (insulation-resistance test)
  • 103kilo (k): 4.7 × 103 Ω = 4.7 kΩ (standard resistor value)
  • 100 → (no prefix): 330 Ω (resistor color-band notation)
  • 10−3milli (m): 47 × 10−3 A = 47 mA (LED forward current)
  • 10−6micro (μ): 8.25 × 10−6 F = 8.25 μF (filter capacitor)
  • 10−9nano (n): 10 × 10−9 s = 10 ns (signal propagation delay)
  • 10−12pico (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

Frequently asked questions

What is the difference between engineering notation and scientific notation?
Both formats express numbers as m times 10 to the power n, but scientific notation requires the mantissa to fall between 1 and 10, while engineering notation requires the exponent to be a multiple of 3. For example, 47,500 in scientific notation is 4.75 x 10^4, but in engineering notation it becomes 47.5 x 10^3, because the exponent 4 is not a multiple of 3. Engineering notation aligns with SI prefixes like kilo, mega, and giga, making it significantly more practical in electronics, physics lab work, and technical documentation.
Why must the exponent in engineering notation always be a multiple of 3?
The SI prefix system advances in steps of 10^3: milli (10^-3), kilo (10^3), mega (10^6), giga (10^9), and so on. By constraining the engineering exponent to multiples of 3, every result maps directly to a named SI prefix without extra conversion. A calculated value of 6.8 x 10^-6 immediately reads as 6.8 microfarads or 6.8 microamps depending on context, which dramatically speeds up circuit analysis, component selection, and measurement reporting in engineering workflows.
How do you convert a negative number to engineering notation?
Apply the exponent formula using the absolute value: compute n = 3 times the floor of log10(|x|) divided by 3. Then calculate the mantissa as m = x divided by 10^n, preserving the original sign of x in the result. For x = -0.0056, the absolute value is 0.0056, log10(0.0056) is approximately -2.252, the floor of (-2.252 / 3) is -1, so n = -3 and m = -0.0056 / 10^-3 = -5.6. The final result is -5.6 x 10^-3, equivalent to -5.6 mA in a circuit diagram.
What is the valid mantissa range in engineering notation?
In engineering notation, the mantissa (coefficient) m falls in the half-open interval from 1 to 1000 for positive numbers, meaning it can equal 1 or any value up to but not including 1000. This range is much wider than scientific notation, which restricts the mantissa to the interval from 1 to 10. The broader range is what allows the exponent to remain fixed at a multiple of 3. For instance, 999.5 x 10^6 is perfectly valid engineering notation, whereas scientific notation would write the same quantity as 9.995 x 10^8.
How does engineering notation relate to SI unit prefixes?
Engineering notation and SI prefixes share exactly the same exponent ladder: pico (10^-12), nano (10^-9), micro (10^-6), milli (10^-3), no prefix (10^0), kilo (10^3), mega (10^6), giga (10^9), and tera (10^12). Once a number is expressed in engineering notation, the SI prefix corresponding to that exponent can be applied immediately. For example, 22 x 10^-12 F converts directly to 22 pF on a capacitor datasheet, and 3.3 x 10^3 Hz converts to 3.3 kHz with no intermediate arithmetic required.
Can the engineering notation converter handle numbers between 0 and 1?
Yes. Numbers between 0 and 1 produce negative exponents that are multiples of 3, such as -3, -6, -9, or -12. For example, 0.0000047 converts to 4.7 x 10^-6 because log10(0.0000047) is approximately -5.328, the floor of (-5.328 / 3) equals -2, and n = -6 with mantissa m = 4.7. This result maps to 4.7 microunits, whether the context involves microfarads, microamps, micrometers, or microseconds, making the converter equally useful for very small physical quantities.