Thevenin resistance is the equivalent resistance looking back into a linear circuit's two terminals after all independent voltage sources are replaced with short circuits and independent current sources are replaced with open circuits. In a real circuit or installation, this value dictates how much your output voltage will sag when you connect a load, directly determining maximum power transfer and signal integrity. Beginners commonly confuse Thevenin resistance with a battery's internal resistance or Norton resistance. While a battery's internal resistance is its Thevenin resistance, $R_{th}$ applies to any complex two-terminal network (like a bridge of resistors), and Norton resistance is just the exact same numerical value used in a parallel current-source model.
The Step-by-Step Method for Finding Thevenin Resistance
To find the Thevenin resistance ($R_{th}$) of any linear network, follow this strict sequence. Skipping step 2 or 3 is the most common reason students and hobbyists get the wrong answer on the bench.
- Identify the Terminals: Define the two nodes (usually labeled A and B) across which you want to find the equivalent resistance. This is typically where a load component connects.
- Remove the Load: Physically or mathematically disconnect the load resistor ($R_L$) or component from terminals A and B. You are analyzing the source network, not the load.
- Zero Out Independent Sources:
- Replace all independent voltage sources with a short circuit (a wire, 0Ω).
- Replace all independent current sources with an open circuit (a broken connection, ∞Ω).
- Calculate Equivalent Resistance: Look back into terminals A and B. Combine the remaining resistors using standard series and parallel formulas until you have a single equivalent resistance value.
If your circuit contains dependent sources (like a transistor model or an op-amp equivalent circuit), you cannot simply zero them out. Instead, you must use the Test Source Method: apply a 1V test voltage or 1A test current at terminals A-B, calculate the resulting current or voltage, and use Ohm's law ($R_{th} = V_{test} / I_{test}$).
Worked Numeric Example: Voltage Divider Driving an ESP32 ADC
Let's apply this to a practical scenario. You have a 12V DC source connected to a voltage divider made of $R_1 = 4\text{ k}\Omega$ (series) and $R_2 = 6\text{ k}\Omega$ (to ground). You want to feed the node between them into a microcontroller's Analog-to-Digital Converter (ADC). Terminals A and B are across $R_2$.
Step 1 & 2: Terminals A and B are across $R_2$. We remove the microcontroller (the load) from the circuit.
Step 3: We short the 12V independent voltage source to ground.
Step 4: Looking back from A-B, $R_1$ is now connected to ground (because the 12V source is shorted). Therefore, $R_1$ and $R_2$ are in parallel.
$$R_{th} = \frac{R_1 \times R_2}{R_1 + R_2} = \frac{4\text{k} \times 6\text{k}}{4\text{k} + 6\text{k}} = \frac{24}{10} = 2.4\text{ k}\Omega$$
Why this matters: The open-circuit voltage ($V_{th}$) at this node is $12\text{V} \times (6 / 10) = 7.2\text{V}$. But if your microcontroller's ADC input acts as a load of $2.4\text{ k}\Omega$ during its sampling phase, the voltage will instantly sag to exactly half: $3.6\text{V}$. By knowing $R_{th}$, you can predict this sag and add a buffer op-amp if necessary.
Where You Meet Thevenin Resistance in Practice
Theory is useless if it doesn't map to physical hardware. Here is where $R_{th}$ dictates success or failure in real-world builds:
1. Microcontroller ADC Input Impedance
The ESP32 and Arduino ADCs do not have infinite input impedance. Internally, they use a sampling capacitor (typically 10pF to 12pF) that must charge to the input voltage during a tiny acquisition window (often < 2µs). If your source's Thevenin resistance is too high, the capacitor won't charge in time, resulting in low, erratic readings. Espressif's hardware design guidelines explicitly recommend keeping the source output impedance (which is the Thevenin resistance of your sensor network) below 10 kΩ, and practically below 1 kΩ for fast multiplexed sampling.
2. Audio Signal Interfacing
When connecting a passive electric guitar pickup to an amplifier pedal, the pickup has a high Thevenin resistance (often 8kΩ to 15kΩ). If the pedal's input impedance (the load) is not at least 10 times higher (e.g., 1MΩ), the high-frequency harmonics are shunted to ground through the parasitic capacitance of the cable, resulting in a 'muddy' tone. This is impedance bridging in action.
3. Solar Panel and Battery IV Curves
A solar panel's Thevenin resistance is not static; it changes dynamically with irradiance and temperature. Maximum Power Point Tracking (MPPT) charge controllers constantly dither the load to find the exact point where the load resistance equals the panel's dynamic Thevenin resistance, ensuring maximum wattage extraction.
Frequently Asked Questions
How do I find Thevenin resistance when the circuit has dependent sources?
You cannot zero out dependent sources (diamond-shaped symbols in schematics) because their value depends on another voltage or current in the circuit. Instead, use the Test Source Method. Turn off all independent sources. Then, apply a known test voltage ($V_{test} = 1\text{V}$) across terminals A-B. Calculate the current ($I_{test}$) that flows out of your test source into the circuit using nodal or mesh analysis. The Thevenin resistance is simply $R_{th} = 1\text{V} / I_{test}$. Alternatively, you can find the open-circuit voltage ($V_{oc}$) and the short-circuit current ($I_{sc}$) of the original active circuit, and calculate $R_{th} = V_{oc} / I_{sc}$.
Is Thevenin resistance exactly the same as internal resistance?
Conceptually, they describe the same physical phenomenon (voltage sag under load), but they apply to different scopes. 'Internal resistance' usually refers specifically to the physical chemical and metallic resistance inside a single component like a battery, cell, or generator. 'Thevenin resistance' is a broader mathematical abstraction that applies to any two-terminal network, no matter how complex. A voltage divider made of five discrete resistors has a Thevenin resistance, but it does not have an 'internal resistance' in the traditional physical sense.
How can I physically measure Thevenin resistance on a breadboard without an ohmmeter?
You can use the Half-Voltage Method. First, measure the open-circuit voltage ($V_{oc}$) across terminals A-B with a high-impedance multimeter. Next, connect a precision potentiometer across A-B to act as a variable load. Adjust the potentiometer while monitoring the voltage until the voltage drops to exactly half of your original $V_{oc}$ reading. At this exact moment, the resistance of your potentiometer equals the Thevenin resistance of the circuit. Remove the potentiometer and measure its resistance with your meter. This relies on the maximum power transfer theorem and is a classic bench trick when diagnosing live circuits where you cannot safely power down to measure resistance directly.
Why do we short voltage sources and open current sources during the calculation?
This step models the ideal internal resistance of the sources themselves. An ideal independent voltage source maintains its voltage regardless of the current drawn, which implies it has zero internal resistance (0Ω). Replacing it with a short circuit mathematically reflects this 0Ω path. Conversely, an ideal independent current source maintains its current regardless of the voltage across it, which implies it has infinite internal resistance (∞Ω). Replacing it with an open circuit mathematically reflects this infinite resistance path. For a deeper dive into source transformations, All About Circuits provides excellent visual breakdowns of these ideal models.






