If you type e or EXP on a scientific calculator, you will get one of two things: the constant 2.718281828 or an E appended to your current number. For electrical engineers and hobbyists, understanding what is e in a calculator means distinguishing between two completely different mathematical concepts that share a single letter. On the workbench, this distinction is the difference between correctly calculating an RC delay and accidentally ordering the wrong capacitor by a factor of a million.

In electronics, Euler’s number (e) is the base of the natural logarithm and the mathematical engine behind every capacitor charging curve, inductor decay, and filter response you build. Conversely, the scientific notation E simply means "times ten to the power of" (e.g., 5E-6 means $5 \times 10^{-6}$). According to Wolfram MathWorld, Euler's number is an irrational constant that naturally describes continuous growth and decay, making it unavoidable in transient circuit analysis.

The Core RC Transient Formula and Symbol Definitions

When you are designing a soft-start circuit, a debounce filter, or a 555-timer delay, you are relying on Euler's number to model how voltage changes over time. The foundational formula for a capacitor charging through a resistor from a constant DC source is:

V(t) = V_s * (1 - e^(-t / (R * C)))

Every symbol in this equation represents a physical property on your breadboard. If you misidentify a symbol or ignore its units, the math will yield physical impossibilities.

Symbol Definition Standard Unit Realistic Bench Magnitude
V(t) Voltage across the capacitor at time t Volts (V) 0V to 5V (logic) or 0V to 12V (power)
V_s Source voltage (the asymptote the cap charges toward) Volts (V) 3.3V, 5V, 12V, 24V
e Euler's number (mathematical constant) Dimensionless ~2.71828
t Time elapsed since the step voltage was applied Seconds (s) μs to seconds
R Resistance of the charging path Ohms (Ω) 1kΩ to 1MΩ
C Capacitance of the storage element Farads (F) pF to mF (note: 1 μF = 1E-6 F)
τ (tau) Time constant, where τ = R * C Seconds (s) μs to seconds

Rearranged Forms: Solving for Any Variable

On the bench, you rarely know exactly what you need to solve for upfront. You might have a fixed 10kΩ resistor and need to find the capacitor that triggers a logic gate at 50ms. Here are the algebraic rearrangements of the core formula, solving for each variable. Note the introduction of the natural logarithm (ln), which is the inverse operation of e.

  • Solve for Time (t): t = -R * C * ln(1 - (V(t) / V_s))
  • Solve for Resistance (R): R = -t / (C * ln(1 - (V(t) / V_s)))
  • Solve for Capacitance (C): C = -t / (R * ln(1 - (V(t) / V_s)))
  • Solve for Source Voltage (V_s): V_s = V(t) / (1 - e^(-t / (R * C)))

When the Formula Applies (and Which Unit Mistakes Break It)

This formula is not a universal law; it is a model built on strict assumptions. It applies only when a capacitor is charging through a linear resistor from a constant DC voltage source, starting from a fully discharged state (0V). If your capacitor starts with a residual charge, or if your source is a decaying battery, this exact formula fails.

The Unit Mistakes That Break the Math

The most common reason this formula yields garbage on a calculator is the "micro-Farad trap." Calculators do not know what a μF or a kΩ is; they only understand base SI units. If you plug R = 10 (for 10kΩ) and C = 100 (for 100μF) into the equation, your calculator assumes 10 Ohms and 100 Farads. Your calculated time constant will be off by a factor of 10,000. You must always convert to base units:

  • kΩ to Ω: Multiply by $10^3$ (e.g., $10 \text{ k}\Omega = 10,000 \text{ }\Omega$)
  • μF to F: Multiply by $10^{-6}$ (e.g., $100 \text{ }\mu\text{F} = 0.0001 \text{ F}$)
  • ms to s: Multiply by $10^{-3}$ (e.g., $50 \text{ ms} = 0.05 \text{ s}$)

What a Realistic Answer Magnitude Looks Like

If your calculator spits out V(t) = 15.4V on a 5V rail, or t = -4.2 seconds, stop. V(t) must always be strictly between 0 and V_s, and time t must be positive. A realistic time constant (τ) for hobbyist logic delays is between 1 millisecond and 5 seconds. If your τ calculates to 4,000 seconds, you forgot to convert μF to Farads.

Solved Problems with Strict Unit Tracking

Let’s run two common bench scenarios, tracking every unit conversion to ensure the calculator inputs match physical reality.

Problem 1: Finding Voltage at a Specific Time

Scenario: You have a 5V rail charging a 10μF ceramic capacitor through a 47kΩ resistor. What is the voltage across the capacitor at exactly 200ms?

  1. Convert to base SI units:
    V_s = 5 V
    R = 47,000 Ω
    C = 0.00001 F (10 * 10^-6)
    t = 0.2 s (200 * 10^-3)
  2. Calculate the time constant (τ):
    τ = R * C = 47,000 * 0.00001 = 0.47 seconds
  3. Calculate the exponent:
    -t / τ = -0.2 / 0.47 = -0.4255
  4. Apply Euler's number:
    e^(-0.4255) = 0.6534
  5. Final calculation:
    V(t) = 5 * (1 - 0.6534) = 5 * 0.3466 = 1.733 V

Result: At 200ms, the capacitor has reached 1.733 Volts.

Problem 2: Finding Time to Reach a Logic Threshold

Scenario: You are designing a reset delay for an ESP32-WROOM-32. The EN (enable) pin requires a logic HIGH, which the Espressif ESP32 Datasheet defines as $0.75 \times V_{DD}$. With a 3.3V rail, the threshold is 2.475V. Your RC network uses a 100kΩ resistor and a 4.7μF capacitor. How long until the ESP32 boots?

  1. Identify knowns in base units:
    V_s = 3.3 V
    V(t) = 2.475 V
    R = 100,000 Ω
    C = 0.0000047 F
  2. Select the rearranged formula for time:
    t = -R * C * ln(1 - (V(t) / V_s))
  3. Calculate the voltage ratio:
    V(t) / V_s = 2.475 / 3.3 = 0.75
  4. Calculate the natural log:
    ln(1 - 0.75) = ln(0.25) = -1.3863
  5. Multiply by -RC:
    t = -(100,000 * 0.0000047) * -1.3863
    t = -0.47 * -1.3863 = 0.6515 seconds

Result: The ESP32 will exit reset and begin booting after 651.5 milliseconds.

Real-World Bench Scenario: The 555 Timer Delay That Failed

Math on a calculator assumes ideal components. The physical workbench does not. Here is a narrative walkthrough of a real-world failure where Euler's number gave the "right" answer, but the circuit still failed.

The Setup

I needed a 10-second power-on delay for a 12V relay using a classic Texas Instruments NE555 timer in monostable mode. The 555 triggers when the threshold pin (Pin 6) reaches $\frac{2}{3} V_{CC}$ (which is 8V on a 12V rail). Using the formula t = 1.1 * R * C (a derivative of the natural log charging equation specific to the 555's internal comparators), I selected a 1MΩ resistor and a 10μF capacitor. 1.1 * 1,000,000 * 0.00001 = 11 seconds. Perfect.

The Numbers and Outcome

I breadboarded the circuit using a standard off-the-shelf 10μF aluminum electrolytic capacitor. I applied 12V and started a stopwatch. The voltage on Pin 6 climbed: 2V... 4V... 6V... and then it stalled. It hovered around 7.2V. It never reached the 8V threshold. The 555 never triggered. The relay never engaged.

What Went Wrong (The Leakage Current Variable)

The formula V(t) = V_s(1 - e^(-t/RC)) assumes the capacitor has infinite internal resistance. In reality, aluminum electrolytic capacitors have significant leakage current. This leakage acts as a hidden, parallel internal resistor ($R_{leak}$) that constantly drains the capacitor.

At high resistance values (like my 1MΩ charging resistor), the charging current drops to microamps as the capacitor voltage rises. Eventually, the charging current from the 1MΩ resistor exactly equaled the leakage current draining through the capacitor's internal dielectric. The capacitor reached a false equilibrium at 7.2V, completely breaking the exponential curve predicted by Euler's number.

The Fix: I swapped the 1MΩ resistor and 10μF capacitor for a 100kΩ resistor and a 100μF low-leakage tantalum capacitor. The time constant remained identical (10 seconds), but the higher charging current easily overpowered the tantalum's minimal leakage, allowing Pin 6 to hit 8V and trigger the relay precisely at the 11-second mark. When designing RC networks with time constants greater than 1 second, always prioritize capacitor dielectric chemistry (C0G/NP0 or Tantalum) over cheap electrolytics, or the math on your calculator will remain purely theoretical.