When you look for e on scientific calculator keypads, you are looking for Euler's number (e ≈ 2.7182818), the base of the natural logarithm. In electrical engineering and bench electronics, you rarely use the standalone e constant. Instead, you rely on the exponential function ex (often labeled as exp or accessed via SHIFT + ln). This function is mandatory for calculating voltage and current transients in RC/RL circuits, semiconductor diode currents (Shockley equation), and AC phasor math. The direct answer to finding ex on most modern scientific calculators (like the Casio fx-115ES Plus or TI-36X Pro) is to press the ln button—which has ex printed above it in yellow or green—after inputting your exponent, or to use the dedicated ex key if your model has one.

The Universal DC Transient Formula & Symbol Definitions

To calculate the voltage or current in a circuit with energy-storing components (capacitors or inductors) responding to a DC step input, we use the universal transient response formula. This equation models the exact exponential curve you see on an oscilloscope when a square wave hits an RC low-pass filter.

V(t) = Vf + (Vi - Vf)e-t

Symbol Definition Standard Unit
V(t) Voltage at specific time t Volts (V)
Vf Final steady-state voltage (target) Volts (V)
Vi Initial voltage at t = 0 Volts (V)
e Euler's number (≈ 2.71828) Dimensionless
t Elapsed time Seconds (s)
τ Time constant (R × C or L/R) Seconds (s)

When It Applies and Core Assumptions

This formula applies to first-order linear circuits (one equivalent resistor and one equivalent energy-storage component) subjected to a constant DC source or a step-function switch event. It assumes ideal lumped components: the capacitor has no equivalent series resistance (ESR), the resistor has no parasitic capacitance, and the DC voltage source has zero internal impedance. If you are analyzing high-frequency switching or physical wiring with significant inductance, this first-order model breaks down and requires second-order differential equations.

Rearranged Forms: Solving for Every Variable

On the bench, you rarely just solve for V(t). More often, you need to know how long a capacitor takes to charge to a specific logic threshold, or you need to select a resistor to hit a specific timing delay. Here are the algebraically rearranged forms using the natural logarithm (ln), which is the inverse of ex.

  • Solve for time (t):
    t = -τ × ln( (V(t) - Vf) / (Vi - Vf) )
  • Solve for time constant (τ):
    τ = -t / ln( (V(t) - Vf) / (Vi - Vf) )
  • Solve for initial voltage (Vi):
    Vi = Vf + ( (V(t) - Vf) / e-t )
  • Solve for final voltage (Vf):
    Vf = ( V(t) - Vie-t ) / ( 1 - e-t )

Calculator Keystrokes, Unit Mistakes, and Magnitudes

Before punching numbers into your calculator, you must understand the decay factor e-t. This term is strictly dimensionless. For any positive time t, the exponent is negative, meaning e-t will always yield a decimal between 0 and 1. At t = 0, it equals 1. At t = τ, it equals e-1 ≈ 0.368. At t = 5τ, it equals e-5 ≈ 0.0067 (effectively zero, which is why we say a circuit reaches steady state at 5τ). If your calculator outputs a number greater than 1 for the decay factor, you missed a negative sign in the exponent.

⚠ Unit Mistakes That Break the Math

The most common reason a transient calculation fails is unit mismatch in the time constant τ. The formula demands base SI units: Ohms (Ω), Farads (F), and Seconds (s). Hobbyists frequently plug in microfarads (μF) and milliseconds (ms) directly without conversion.

Example of failure: If R = 10 kΩ and C = 100 μF, τ is not 1,000. It is (10 × 103) × (100 × 10-6) = 1.0 second. If you feed '100' and '10000' directly into the calculator without the scientific notation multipliers, your time constant will be off by a factor of one billion, and your calculated voltage will be completely wrong.

For detailed component theory, the RC Time Constant guide on Electronics Tutorials provides excellent baseline derivations. For calculator-specific syntax, refer to the TI-36X Pro official support documentation to ensure you are using the correct order of operations for exponential stacks.

Worked Examples with Unit Tracking

Let's apply the formula to real bench scenarios. We will track units through every step to ensure dimensional consistency.

Problem 1: Calculating Voltage at a Specific Time (Charging)

Scenario: A 555 timer circuit uses a 100 μF capacitor charging through a 10 kΩ resistor from a 12V DC supply. The capacitor starts fully discharged. What is the voltage across the capacitor exactly 2 seconds after power is applied?

  1. Identify variables and convert to base SI units:
    Vi = 0 V
    Vf = 12 V
    R = 10,000 Ω
    C = 0.0001 F
    t = 2 s
  2. Calculate τ:
    τ = R × C = 10,000 [Ω] × 0.0001 [F] = 1 [s]
  3. Calculate the exponent:
    -t / τ = -2 [s] / 1 [s] = -2 (dimensionless)
  4. Calculate the decay factor using ex:
    e-2 ≈ 0.135335
  5. Plug into the universal formula:
    V(2) = 12 [V] + (0 [V] - 12 [V]) × 0.135335
    V(2) = 12 [V] + (-12 [V] × 0.135335)
    V(2) = 12 [V] - 1.624 [V] = 10.376 V

Problem 2: Calculating Time to Reach a Threshold (Discharging)

Scenario: A microcontroller brownout detection circuit monitors a 100 μF capacitor discharging through a 10 kΩ bleeder resistor. The capacitor was charged to 12V. The microcontroller resets when the voltage drops to 3V. How long does the reset take?

  1. Identify variables:
    Vi = 12 V
    Vf = 0 V (discharging to ground)
    V(t) = 3 V
    τ = 1 s (from previous calculation)
  2. Use the rearranged formula for t:
    t = -τ × ln( (V(t) - Vf) / (Vi - Vf) )
  3. Substitute values:
    t = -1 [s] × ln( (3 [V] - 0 [V]) / (12 [V] - 0 [V]) )
    t = -1 [s] × ln( 3 / 12 )
    t = -1 [s] × ln( 0.25 )
  4. Calculate natural log:
    ln(0.25) ≈ -1.38629
  5. Final multiplication:
    t = -1 [s] × -1.38629 = 1.386 seconds

Frequently Asked Questions

Why does my calculator show an error when I type 'e' for scientific notation?

This is a syntax confusion between Euler's number and scientific notation. If you are trying to enter a value like 5 × 10-6 (5 microfarads), you should not use the ex button. On a Casio, you use the ×10x button (often labeled with a standalone 'E' or 'EXP' near the bottom right). If you type 5 SHIFT ln -6, the calculator attempts to compute 5 × e-6, which equals 0.012, entirely ruining your unit conversion. Always use the dedicated scientific notation key for component values, and reserve the ex key strictly for the transient formula's exponent.

How do I calculate AC phase angles using Euler's identity on a scientific calculator?

In AC circuit analysis, Euler's identity (e = cos(θ) + jsin(θ)) is used to convert between exponential and rectangular phasor forms. Most standard scientific calculators do not have a native complex number exponential function that outputs rectangular coordinates directly from e. Instead, you must use the calculator's polar-to-rectangular conversion functions (usually labeled P→R or accessed via the CMPLX menu). You input the magnitude and the angle θ (in degrees or radians, matching your calculator's mode), and the calculator applies the Euler identity internally to output the real (cosine) and imaginary (sine) components.

What is the difference between the 'e' button and the 'EXP' button on my Casio?

On Casio Natural V.P.A.M. calculators (like the fx-115ES Plus), the terminology can be misleading. The button labeled ln has ex printed above it; this is Euler's number raised to a power, used for RC transients and natural logs. However, there is often a separate button labeled ×10x or a dedicated EXP button on older models. The EXP button is strictly for base-10 scientific notation (e.g., entering 103). Pressing EXP does not invoke Euler's number. If your formula requires e-t, you must use the SHIFT + ln sequence, never the EXP button.