Engineering Notation & SI Prefixes — GetCalcMaster
How to read engineering notation and SI prefixes (k, M, µ, n) and avoid 1000× mistakes. Includes practical sanity checks.
Engineering notation prevents 1000× mistakes
Engineering work lives on scales: microamps, millivolts, kilohms, gigahertz. The fastest way to make a serious error is to misread a prefix or an exponent.
Engineering notation represents numbers with exponents that are multiples of 3, so the exponent aligns with SI prefixes:
4.7×10^3= 4.7 k2.2×10^-6= 2.2 µ
Scientific vs engineering notation
- Scientific notation allows any exponent:
3.2×10^4. - Engineering notation snaps the exponent to multiples of 3:
32×10^3(32 k).
Both represent the same value. Engineering notation is often easier to read when you’re thinking in prefixes.
SI prefixes you should know cold
| Prefix | Symbol | Factor | Example |
|---|---|---|---|
| kilo | k | 10^3 | 4.7 kΩ = 4.7×10^3 Ω |
| mega | M | 10^6 | 1.2 MW = 1.2×10^6 W |
| giga | G | 10^9 | 2.4 GHz = 2.4×10^9 Hz |
| milli | m | 10^-3 | 5 mA = 5×10^-3 A |
| micro | µ | 10^-6 | 10 µF = 10×10^-6 F |
| nano | n | 10^-9 | 3 nF = 3×10^-9 F |
Watch the traps: m (milli) vs M (mega) is a million-fold difference. µ (micro) is 10^-6, not “small m”.
Reading scientific notation reliably
1e3means 1 × 10^3 = 1000.1e-3means 1 × 10^-3 = 0.001.4700=4.7e3(engineering-friendly form).
Try it in GetCalcMaster
Open Engineering Calculator and test common engineering magnitudes:
- 47e3 (47 k)
- 10e-6 (10 µ)
- (47e3)/(10e-6) (watch the exponent)
Practical circuit sanity checks
- Ohm’s law current: 12 V across 4.7 kΩ → 12/(4.7e3) A (should be a few mA).
- RC time constant: R=47 kΩ, C=10 µF → 47e3*10e-6 s (should be ~0.47 s).
Format vs value: don’t confuse display with math
Engineering mode lets you switch display formats (STD/ENG/SI). A correct calculator changes only the representation, not the underlying value.
If switching formats changes the numeric meaning, that’s a bug.
A simple prefix checklist
- Does the prefix match the exponent I expect? (k=10^3, µ=10^-6, n=10^-9)
- Does the order-of-magnitude match my intuition? (mA vs A vs µA)
- Did I accidentally swap m and M?
- Did I write the unit next to the value?
FAQ
Is “k” always 1000?
In SI prefixes, yes: k = 10^3. In some contexts (like memory), people use 1024, but that’s a different convention and should be labeled (KiB, MiB).
Why is micro written as “µ”?
It’s the SI symbol for 10^-6. If you can’t type it, many tools accept “u” as a substitute informally, but label it clearly to avoid confusion.
What’s the safest way to avoid prefix mistakes?
Write values in scientific notation (e.g., 4.7e3) in your notebook and include units. Then convert to SI-prefix form for presentation if needed.