The "EE" (or "EXP") button on a scientific calculator stands for "Enter Exponent" and represents multiplication by a power of ten (× 10^x). When calculating electrical formulas involving micro (µ), nano (n), or pico (p) units, using the standard multiplication and caret keys (* 10 ^) instead of the dedicated EE button causes catastrophic order-of-magnitude errors due to the calculator's order of operations (PEMDAS). The EE button binds the base number and the exponent into a single, indivisible floating-point token, ensuring that squaring, dividing, or taking the square root applies to the entire value.
The Core Formula: LC Resonant Frequency
To demonstrate the critical nature of the EE button, we will use the formula for the resonant frequency of an ideal LC (inductor-capacitor) tank circuit. This formula is notorious for breaking when entered incorrectly because it nests a square root inside a denominator while juggling extremely small component values.
fr = 1 / (2π√(L × C))
| Symbol | Parameter | Standard Unit | Typical Magnitude & EE Entry |
|---|---|---|---|
| fr | Resonant Frequency | Hertz (Hz) | kHz to MHz (e.g., 14.2 MHz = 14.2 EE 6) |
| L | Inductance | Henrys (H) | µH to mH (e.g., 47 µH = 47 EE -6) |
| C | Capacitance | Farads (F) | pF to µF (e.g., 100 pF = 100 EE -12) |
| π | Pi (Constant) | Dimensionless | ~3.14159 (Use the dedicated π key) |
Assumptions and Realistic Magnitudes
This formula applies to an ideal, lossless LC circuit. It assumes the inductor has zero series resistance (ESR) and the capacitor has zero equivalent series inductance (ESL). In real-world RF design, parasitic elements will shift the actual self-resonant frequency (SRF) slightly lower than the calculated ideal value. A realistic answer magnitude for RF hobbyist circuits (like ham radio filters or Tesla coil drivers) falls between 1 MHz and 50 MHz. Audio-frequency LC crossovers will yield magnitudes between 20 Hz and 20 kHz.
Rearranged Forms for Component Selection
When designing a filter or oscillator, you rarely solve for frequency alone. Usually, you have a target frequency and one known component, and you need to calculate the missing component. Here are the algebraically rearranged forms. Note the parentheses, which are mandatory to prevent PEMDAS errors on your calculator.
- Solve for Inductance (L):
L = 1 / ((2 * π * f_r)^2 * C) - Solve for Capacitance (C):
C = 1 / ((2 * π * f_r)^2 * L)
Worked Examples with Unit Tracking
Below are two step-by-step derivations showing exactly how to use the EE button on a standard scientific calculator (like the Texas Instruments TI-36X Pro or Casio fx-991EX) to track units and avoid tokenization errors.
Problem 1: Finding Resonant Frequency
Given: An inductor of 47 µH and a capacitor of 100 pF.
Find: The resonant frequency (fr).
- Convert units to base SI using the EE button:
- L = 47 µH →
47 EE -6(Do not type47 * 10 ^ -6) - C = 100 pF →
100 EE -12(Pico is 10-12, per the NIST SI prefix guidelines)
- L = 47 µH →
- Calculate the product inside the square root (L × C):
- Keystrokes:
47 EE -6 * 100 EE -12 - Intermediate result:
4.7 × 10^-15
- Keystrokes:
- Apply the square root:
- Keystrokes:
√(4.7 EE -15) - Intermediate result:
6.85565 × 10^-8
- Keystrokes:
- Multiply by 2π to complete the denominator:
- Keystrokes:
2 * π * 6.85565 EE -8 - Intermediate result:
4.30753 × 10^-7
- Keystrokes:
- Divide 1 by the denominator:
- Keystrokes:
1 / 4.30753 EE -7 - Final result:
2,321,515 Hzor 2.32 MHz
- Keystrokes:
Problem 2: Finding Required Capacitance
Given: A target frequency of 14.2 MHz (20-meter ham radio band) and a 2.2 µH inductor.
Find: The required capacitance (C) in picofarads.
- Convert knowns to base SI:
- fr = 14.2 MHz →
14.2 EE 6 - L = 2.2 µH →
2.2 EE -6
- fr = 14.2 MHz →
- Calculate the angular frequency (2πfr):
- Keystrokes:
2 * π * 14.2 EE 6 - Intermediate result:
89.221 × 10^6(or8.9221 × 10^7)
- Keystrokes:
- Square the angular frequency:
- Keystrokes:
(8.9221 EE 7)^2 - Intermediate result:
7.9604 × 10^15
- Keystrokes:
- Multiply by L to get the full denominator:
- Keystrokes:
7.9604 EE 15 * 2.2 EE -6 - Intermediate result:
1.7512 × 10^10
- Keystrokes:
- Divide 1 by the denominator to find C:
- Keystrokes:
1 / 1.7512 EE 10 - Final result in Farads:
5.7103 × 10^-11 F - Convert to pF (multiply by 1012): 57.1 pF
- Keystrokes:
Critical Unit Mistakes That Break the Math
If you type
1 / 2 * π * f_r without parentheses, the calculator evaluates left-to-right: it divides 1 by 2 (yielding 0.5), and then multiplies by π and fr. Your answer will be off by a factor of 4π2 (roughly 39.4). Always wrap the entire denominator in parentheses: 1 / (2 * π * ... ).
The "Times Ten" Tokenization Error
The most common reason electrical engineering students fail calculator-based exams is typing 5 * 10 ^ -6 instead of 5 EE -6. If you attempt to square that value by appending ^ 2 at the end of the expression, the calculator's order of operations will often square only the 10^-6 portion, or misinterpret the negative sign, rather than squaring the entire 5 × 10^-6 token. The EE button creates a single numerical object. (5 EE -6)^2 cleanly and predictably yields 2.5 × 10^-11.
Prefix Confusion: Milli vs. Micro
In electronics, the jump from milli (m, 10-3) to micro (µ, 10-6) is a factor of 1,000. Because the EE button requires you to manually type the exponent, a simple typo (entering EE -3 instead of EE -6) will shift your resonant frequency calculation by a factor of √1000 (approx 31.6). Always double-check your exponent against the standard SI prefix table before hitting equals.
FAQ: Calculator EE Button in Electrical Math
What does the EE button do on a scientific calculator?
The EE (Enter Exponent) or EXP button allows you to input numbers in scientific or engineering notation directly. Pressing 5 EE 3 tells the calculator to treat "5 × 103" as a single, unified numerical token (5,000) rather than a sequence of multiplication and exponentiation operations. This ensures that subsequent operations like squaring or square roots apply to the entire value correctly.
Why does my calculator give the wrong answer when I use *10^-6?
When you type * 10 ^ -6, you are giving the calculator three separate instructions: multiply, raise 10 to a power, and subtract. Due to PEMDAS (order of operations), if you append another operator like a square (^2) or a division slash, the calculator will apply that new operator only to the 10^-6 part or the 6 part, depending on the model. Using the EE button bypasses this by locking the base and exponent together into one floating-point number before any further math occurs.
How do I enter pico and micro units using the EE button?
You must translate the SI prefix into its base-10 exponent. For micro (µ), the exponent is -6, so 47 µF is entered as 47 EE -6. For nano (n), the exponent is -9. For pico (p), the exponent is -12, so 100 pF is entered as 100 EE -12. Never type the letter "p" or "u" unless you are using a high-end graphing calculator with a dedicated SI prefix menu.
What is the difference between the EE and EXP buttons?
Functionally, there is no difference; they perform the exact same tokenization task. The naming convention depends on the manufacturer. Texas Instruments typically labels it "EE" (Enter Exponent), while Casio and Sharp often label it "EXP" (Exponent). Both serve to bind a base number to a power of ten for scientific notation entry.






