The Direct Answer: What Is 'e' on Your Calculator?
When you see e on a scientific calculator (like a TI-84 or Casio fx-115), it represents Euler's number, an irrational constant approximately equal to 2.718281828. In electrical engineering, it is the mathematical base used to model continuous exponential growth and decay, making it the core of RC (resistor-capacitor) and RL (resistor-inductor) transient circuit analysis.
Do not confuse the mathematical constant e (accessed via a dedicated button) with the scientific notation E or e shown on the calculator's display screen. If your screen reads
1.5e-6, that means $1.5 \times 10^{-6}$ (1.5 micro-units). The mathematical constant $e$ is accessed via the e^x or ln functions.
It is also critical not to confuse Euler's number with the physics constant for elementary charge (the charge of a single electron), which is also denoted as $e$ but equals $1.602 \times 10^{-19}$ Coulombs (NIST CODATA). When you are calculating how long a capacitor takes to charge, you are strictly using Euler's number.
The Core Formula: Capacitor Charging and Euler's Number
Euler's number appears in circuit math because the rate at which a capacitor charges is directly proportional to the voltage difference remaining between the source and the capacitor. This differential relationship resolves into an exponential function based on $e$.
The standard formula for a charging capacitor in a series RC circuit is:
$V(t) = V_s (1 - e^{-t/RC})$
| Symbol | Name | Standard Unit | Description |
|---|---|---|---|
| $V(t)$ | Instantaneous Voltage | Volts (V) | Voltage across the capacitor at time $t$. |
| $V_s$ | Source Voltage | Volts (V) | The DC supply voltage charging the circuit. |
| $e$ | Euler's Number | Dimensionless | Constant $\approx 2.71828$. Base of the natural logarithm. |
| $t$ | Time | Seconds (s) | Elapsed time since the charging voltage was applied. |
| $R$ | Resistance | Ohms ($\Omega$) | Series resistance limiting the current. |
| $C$ | Capacitance | Farads (F) | Capacitor value storing the charge. |
| $\tau$ | Time Constant | Seconds (s) | The product of $R \times C$. Represents time to reach 63.2% of $V_s$. |
Assumptions: This formula assumes an ideal step-input (voltage goes from 0V to $V_s$ instantly), an initially fully discharged capacitor ($V=0$ at $t=0$), and ideal components. In reality, a capacitor's Equivalent Series Resistance (ESR) and the wiring inductance will slightly alter the curve in the first few microseconds, but for hobbyist and standard PCB time constants (milliseconds to seconds), the ideal formula is perfectly accurate.
Rearranged Forms: Solving for Time, Voltage, and Resistance
On the bench, you rarely just solve for $V(t)$. Usually, you know the target voltage and need to find the required resistor, or you know the components and need to find the delay time. Here are the algebraically rearranged forms using the natural logarithm ($\ln$), which is the inverse of $e^x$.
- Solve for Time ($t$):
$t = -RC \cdot \ln\left(1 - \frac{V(t)}{V_s}\right)$ - Solve for Resistance ($R$):
$R = \frac{-t}{C \cdot \ln\left(1 - \frac{V(t)}{V_s}\right)}$ - Solve for Capacitance ($C$):
$C = \frac{-t}{R \cdot \ln\left(1 - \frac{V(t)}{V_s}\right)}$ - Solve for Source Voltage ($V_s$):
$V_s = \frac{V(t)}{1 - e^{-t/RC}}$
On a standard Texas Instruments TI-84, the $e^x$ function is accessed by pressing
2nd then LN. The natural log ($\ln$) is just the LN button. On a Casio fx-115ES, $e^x$ is accessed by pressing SHIFT then ln.
Worked Examples with Unit Tracking
Let's run two realistic scenarios. We are using a 12V DC source, a 10 k$\Omega$ resistor, and a 100 $\mu$F electrolytic capacitor.
Problem 1: Finding Voltage at a Specific Time
Question: What is the voltage across the capacitor exactly 0.5 seconds after the 12V source is connected?
- Convert to base units: $R = 10,000 \, \Omega$, $C = 100 \times 10^{-6} \, \text{F} = 0.0001 \, \text{F}$.
- Calculate the time constant ($\tau$): $\tau = R \times C = 10,000 \times 0.0001 = 1 \, \text{second}$.
- Substitute into the core formula:
$V(0.5) = 12 \cdot (1 - e^{-0.5 / 1})$ - Evaluate the exponent: $e^{-0.5} \approx 0.60653$.
- Final calculation: $V(0.5) = 12 \cdot (1 - 0.60653) = 12 \cdot 0.39347 = \mathbf{4.72 \, \text{V}}$.
Problem 2: Finding Time to Reach a Target Voltage
Question: How long will it take for the capacitor to charge to 10V?
- Use the rearranged time formula:
$t = -RC \cdot \ln\left(1 - \frac{V(t)}{V_s}\right)$ - Substitute knowns:
$t = -(1) \cdot \ln\left(1 - \frac{10}{12}\right)$ - Simplify the fraction: $10 / 12 = 0.8333$.
- Subtract from 1: $1 - 0.8333 = 0.1667$.
- Take the natural log: $\ln(0.1667) \approx -1.7917$.
- Final calculation: $t = -1 \cdot (-1.7917) = \mathbf{1.79 \, \text{seconds}}$.
Unit Mistakes That Break the Math
The number one reason hobbyists get 'Math Error' or wildly incorrect numbers (like 4,000 seconds for a 555 timer delay) is failing to convert prefixed units to base SI units before typing them into the calculator. Euler's number and the natural log function do not care about your units, but the $RC$ product strictly requires Farads, Ohms, and Seconds.
| Component Value | Wrong Entry (Breaks Math) | Correct Base SI Entry |
|---|---|---|
| 100 $\mu$F Capacitor | 100 | 0.0001 (or $100 \times 10^{-6}$) |
| 10 nF Capacitor | 10 | 0.00000001 (or $10 \times 10^{-9}$) |
| 4.7 k$\Omega$ Resistor | 4.7 | 4700 |
| 50 ms Time Delay | 50 | 0.050 |
If you mix milliseconds with microfarads, the $10^{-3}$ and $10^{-6}$ prefixes cancel out to $10^{-9}$, throwing your time constant off by a factor of a billion. Always convert to Farads, Ohms, and Seconds first.
Decision Path: Which Transient Formula to Use
Use this decision tree to select the correct mathematical arrangement for your specific design or troubleshooting task. Follow the 'If you know' column to find your exact formula.
| Design Goal | If you know... | Use this Formula | Concrete Pick / Default |
|---|---|---|---|
| Find delay time | $V_s$, Target $V$, $R$, $C$ | $t = -RC \cdot \ln(1 - V/V_s)$ | For MCU button debounce: $t \approx 5\text{ms}$ |
| Size the resistor | $V_s$, Target $V$, $t$, $C$ | $R = -t / (C \cdot \ln(1 - V/V_s))$ | Standard pull-up/pull-down: 10 k$\Omega$ |
| Size the capacitor | $V_s$, Target $V$, $t$, $R$ | $C = -t / (R \cdot \ln(1 - V/V_s))$ | Standard decoupling: 100 nF (0.1 $\mu$F) |
| Predict scope trace | $V_s$, $R$, $C$, elapsed $t$ | $V(t) = V_s(1 - e^{-t/RC})$ | Verify 63.2% of $V_s$ at $1\tau$ |
Default Recommendation: If you are designing a generic RC low-pass filter or debounce circuit for a 3.3V or 5V microcontroller GPIO pin and don't have strict timing requirements, stop calculating and use $R = 10 \, \text{k}\Omega$ and $C = 100 \, \text{nF}$. This yields a time constant ($\tau$) of exactly 1 millisecond, providing a solid 5ms settling time ($5\tau$) that easily eliminates mechanical switch bounce without introducing noticeable input lag.
Realistic Magnitudes and Bench Verification
How do you know if your calculator output is physically realistic? In standard hobbyist and consumer electronics, RC time constants typically range from 1 microsecond ($1 \mu$s) to 10 seconds. If your calculator spits out a delay of 450 seconds for a simple LED fade circuit, you forgot to convert microfarads to Farads.
When verifying on the bench with a digital multimeter (DMM) or oscilloscope, remember these hard rules of $e$ (All About Circuits):
- At $1\tau$ (one time constant): The capacitor reaches 63.2% of $V_s$.
- At $3\tau$: The capacitor reaches 95.0% of $V_s$.
- At $5\tau$: The capacitor reaches 99.3% of $V_s$ (considered fully charged for practical DC analysis).
If you are measuring a 5V circuit with a $1\tau$ of 1 second, set your DMM to log or watch your scope. You should see the trace cross 3.16V exactly at the 1-second mark. If it crosses 3.16V at 0.5 seconds, your actual capacitance is half of what the component label claims—a common reality with cheap, unbranded electrolytic capacitors that often exhibit a -20% tolerance right out of the bag.






