Formula and Method for Engineering Notation
Engineering notation writes a number as a mantissa multiplied by a power of ten, m × 10ⁿ, with one restriction that makes it different from ordinary scientific notation: the exponent n must be a multiple of 3 (…, -9, -6, -3, 0, 3, 6, 9, 12, …), and the mantissa is allowed to range from 1 up to (but not including) 1000, so 1 ≤ |m| < 1000. Restricting the exponent to multiples of 3 means every engineering-notation value lines up with a metric/SI prefix — 10³ is kilo, 10⁶ is mega, 10⁻³ is milli, 10⁻⁶ is micro — which is why the format is the default in electronics, engineering, and unit-heavy science.
How the conversion works
Enter the number to convert. The calculator finds its order of magnitude in ordinary scientific notation (the exponent such that 1 ≤ |value| < 10), then rounds that exponent down to the nearest multiple of 3 to get the engineering exponent n. Dividing the original number by 10ⁿ gives the mantissa. For example, 47,300 has a scientific exponent of 4 (4.73 × 10⁴); rounding 4 down to the nearest multiple of 3 gives 3, so the engineering form is 47.3 × 10³. For small numbers the same rule applies with negative exponents: 0.000018 has a scientific exponent of -5 (1.8 × 10⁻⁵); rounding -5 down to the nearest multiple of 3 gives -6, so the engineering form is 18 × 10⁻⁶. The calculator also reports the matching SI prefix (kilo, micro, and so on) and the standard scientific-notation form for comparison.
Common mistakes
- Confusing engineering and scientific notation: scientific notation always keeps the mantissa under 10 (4.73 × 10⁴), while engineering notation allows it up to 1000 (47.3 × 10³) so the exponent stays a multiple of 3.
- Rounding the exponent instead of flooring it: for negative orders of magnitude you round the exponent down (more negative), not toward zero — -5 rounds down to -6, not up to -3.
- Losing track of the sign: a negative input keeps its sign in the mantissa (e.g. -47,300 becomes -47.3 × 10³); only the magnitude determines the exponent.
Real-world applications
- Electronics and circuit design read component values directly in engineering form: 4,700 Ω is 4.7 kΩ, and 0.000015 F is 15 µF.
- Engineering and physics reports use engineering notation so exponents map straight onto SI unit prefixes without extra conversion.
- Calculators, spreadsheets, and programming languages that display "E notation" (like 4.73E4) often default to engineering-style grouping for readability on datasheets and schematics.