Thevenin voltage ($V_{th}$) is the open-circuit voltage measured across two specific terminals of a complex linear circuit when the load is removed.
If you are designing a sensor interface, sizing a battery bank, or debugging a sagging power rail, you rarely care about every individual resistor and source upstream. You care about how the circuit behaves at the exact two pins where your load connects. Thevenin's theorem changes how you analyze these systems by allowing you to replace an entire messy web of linear components with a single ideal voltage source ($V_{th}$) in series with a single equivalent resistor ($R_{th}$). Once you have those two values, calculating current, voltage drop, or maximum power transfer for any attached load becomes basic Ohm's law.
The most common mistake hobbyists make is confusing Thevenin voltage with the loaded terminal voltage. $V_{th}$ is strictly the potential difference when no current is flowing (open-circuit). As soon as you attach a load and current flows, the voltage at the terminals will drop due to $R_{th}$.
The Core Concept: Simplifying the Mess
Imagine you have a 12V battery, a length of 18 AWG wire, a fuse, and a voltage divider network, all feeding a microcontroller pin. Solving Kirchhoff's mesh equations every time you want to test a different load resistor is tedious. Thevenin's theorem lets you collapse everything upstream of the load into a simple equivalent circuit.
Think of $V_{th}$ as the static water pressure at a tap when the valve is completely closed. $R_{th}$ represents the friction of the pipes leading to that tap. When you open the valve (attach a load), water flows, and the pipe friction causes the actual pressure at the nozzle to drop below the static $V_{th}$ measurement.
According to foundational circuit theory documented by resources like All About Circuits, any linear bilateral network can be reduced this way. 'Linear' means the components obey Ohm's law (resistors, ideal sources) and don't change their behavior based on voltage or current, which excludes diodes and transistors from the Thevenin equivalent directly.
Worked Example: Calculating Thevenin Voltage for a Loaded Sensor
Let's look at a real-world scenario: You are building a custom fuel level sensor. You have a 12.0V DC power supply. To drop the voltage to a safe range for an analog input, you use a voltage divider consisting of $R_1$ (100Ω) in series and $R_2$ (200Ω) to ground. You want to connect a 100Ω relay coil across $R_2$ to trigger an indicator.
Step 1: Find the Thevenin Voltage ($V_{th}$)
Remove the load (the relay coil). You now have a simple series circuit with the 12V source, $R_1$, and $R_2$. The open-circuit voltage across the terminals where the relay used to be is just the voltage drop across $R_2$.
- $V_{th} = V_{source} \times [R_2 / (R_1 + R_2)]$
- $V_{th} = 12V \times [200 / (100 + 200)]$
- $V_{th} = 12V \times (2/3) = $ 8.0V
Step 2: Find the Thevenin Resistance ($R_{th}$)
Turn off the independent sources (replace the 12V battery with a short wire). Look back into the terminals. $R_1$ and $R_2$ are now in parallel.
- $R_{th} = (R_1 \times R_2) / (R_1 + R_2)$
- $R_{th} = (100 \times 200) / 300 = $ 66.67Ω
Step 3: Analyze the Loaded Circuit
Now, reattach the 100Ω relay coil. Your entire complex upstream circuit is now just an 8.0V battery in series with a 66.67Ω resistor, feeding the 100Ω load.
- $I_{load} = V_{th} / (R_{th} + R_{load}) = 8.0V / (66.67Ω + 100Ω) = 8.0 / 166.67 = $ 48mA
- $V_{loaded} = I_{load} \times R_{load} = 0.048A \times 100Ω = $ 4.8V
Notice the massive voltage sag. The open-circuit $V_{th}$ was 8.0V, but the actual voltage driving the relay is only 4.8V. If you had ignored $R_{th}$ and assumed the relay was getting 8.0V, your circuit would fail to pull in the relay contacts. For deeper mathematical proofs on source transformations, HyperPhysics at Georgia State University provides excellent foundational derivations.
Where You Meet Thevenin Equivalents in Practice
You might think Thevenin's theorem is just an academic exercise for passing college circuit analysis, but it dictates the success or failure of several common DIY and prosumer builds.
| Application | Thevenin Voltage ($V_{th}$) | Thevenin Resistance ($R_{th}$) | Practical Consequence |
|---|---|---|---|
| Battery Modeling | Open-Circuit Voltage (OCV) | Equivalent Series Resistance (ESR) | A 12V LiFePO4 battery might read 13.6V at rest ($V_{th}$), but if the ESR ($R_{th}$) is high due to cold temps, a 50A inverter draw will cause the terminal voltage to collapse below the low-voltage disconnect threshold. |
| Microcontroller ADCs | Sensor Output Voltage | Output Impedance of Divider | The ESP32 ADC has a relatively low input impedance (often ~100kΩ to 1MΩ depending on attenuation). If your voltage divider uses 1MΩ resistors to save power, the $R_{th}$ is too high, and the ADC will read inaccurately low due to loading. |
| Audio Amplifiers | Amplifier Output Signal | Output Impedance | High $R_{th}$ in a tube amp results in a low damping factor. The frequency response will change depending on whether you plug in 32Ω IEMs or 300Ω studio headphones. |
Step-by-Step Derivation Cheat Sheet
Keep this sequence on your bench when troubleshooting a stubborn voltage drop:
- Identify the Terminals: Pick the two nodes (A and B) where your load connects.
- Remove the Load: Physically or mentally disconnect the load component.
- Calculate $V_{th}$: Find the voltage difference between A and B using standard DC analysis (nodal, mesh, or simple voltage dividers). This is your open-circuit voltage.
- Kill the Sources: Replace all independent voltage sources with short circuits (wires) and all independent current sources with open circuits (broken wires). Do not touch dependent sources.
- Calculate $R_{th}$: Find the equivalent resistance looking into terminals A and B. Combine series and parallel resistors until you have a single value.
- Rebuild and Solve: Draw a new circuit with $V_{th}$ in series with $R_{th}$ and your load. Apply Ohm's law.
Frequently Asked Questions
What is the difference between Thevenin voltage and Norton current?
Thevenin and Norton are two sides of the same coin, representing source transformations. Thevenin models the network as a voltage source ($V_{th}$) in series with a resistor ($R_{th}$). Norton models the exact same network as a current source ($I_{n}$) in parallel with that same resistor ($R_{n} = R_{th}$). You find Norton current by short-circuiting the output terminals and measuring the current flow ($I_{n} = V_{th} / R_{th}$). Use Thevenin when analyzing series loads; use Norton when analyzing parallel loads.
How do you find Thevenin voltage with multiple sources?
When a circuit has multiple independent batteries or current sources, you use the Superposition Theorem to find $V_{th}$. Turn on one source at a time (shorting the other voltage sources and opening the other current sources), calculate the voltage across the open terminals for each, and then algebraically sum the results. Alternatively, you can use mesh or nodal analysis to solve the entire open-circuit network simultaneously.
Can Thevenin's theorem be used for AC circuits?
Yes, but the math shifts from simple scalars to complex numbers. In AC circuits, $V_{th}$ becomes a phasor voltage (magnitude and phase angle), and $R_{th}$ becomes Thevenin Impedance ($Z_{th}$), which includes resistance, capacitive reactance, and inductive reactance. The procedure is identical, but you must use complex arithmetic to combine the impedances and calculate the final AC load current.
Why is my measured voltage lower than the calculated Thevenin voltage?
If your multimeter reads a lower voltage than your calculated $V_{th}$ when nothing is supposedly connected, you are experiencing meter loading. Digital multimeters (DMMs) typically have an input impedance of 10MΩ. If your circuit's $R_{th}$ is very high (e.g., a voltage divider made of 5MΩ resistors), the 10MΩ DMM acts as a load resistor. The meter forms a voltage divider with your $R_{th}$, dragging the measured voltage down. To fix this, use a DMM with a >10GΩ input impedance or buffer the signal with an op-amp voltage follower.






