Voltage Divider Calculator and Formula
This interactive voltage divider calculator allows you to obtain the output voltage () of a passive voltage divider circuit immediately. Below, we explain the physical and mathematical theory behind this fundamental circuit.
What is a Voltage Divider?
A voltage divider (or potential divider) is a simple passive linear circuit that reduces an input voltage () to a fraction of it as output voltage ().
It typically consists of two resistors in series ( and ) connected to an input power supply. Voltage dividers are widely used in electronics to:
- Adapt signal levels for microcontrollers (such as ADC pins on Arduino or ESP32)
- Bias active components like BJT transistors and operational amplifiers
- Create stable reference voltages
- Interface 5V sensors with 3.3V microcontrollers
Voltage Divider Formula
The physical principle of a voltage divider is based on Ohm's Law and Kirchhoff's voltage laws. Since the same current flows through both resistors in series, the general formula is:
Where:
- — Output voltage at the midpoint between the two resistors (V)
- — Input supply voltage (V)
- — Top resistor (connected to ), in ohms (Ω)
- — Bottom resistor (connected to GND), in ohms (Ω)
Current through the divider:
Solving for R1 given a target Vout:
Step-by-Step Example: 5V Sensor to 3.3V ADC
A common real-world problem: you have an ultrasonic sensor (HC-SR04) that outputs 5V signals, but you want to read it on an ESP32 ADC pin that is limited to 3.3V.
Given: , , choose .
Find R1:
Use the nearest standard value: 10 kΩ (E12 series).
Verify:
Current through the divider: — negligible.
Common Voltage Divider Pairs Quick Reference
| 5 V | 3.3 V | 10 kΩ | 20 kΩ |
| 5 V | 2.5 V | 10 kΩ | 10 kΩ |
| 12 V | 5 V | 14 kΩ (15 kΩ std) | 10 kΩ |
| 12 V | 3.3 V | 26 kΩ (27 kΩ std) | 10 kΩ |
| 9 V | 3.3 V | 17 kΩ (18 kΩ std) | 10 kΩ |
| 3.3 V | 1.65 V | 10 kΩ | 10 kΩ |
Always verify by plugging your chosen standard values back into the formula, since the nearest E12/E24 resistor may shift by a few percent.
Loading Effect
When you connect a load resistance in parallel with , the effective bottom resistance becomes:
And the actual drops to:
Rule of thumb: To minimize loading error to less than 10%, choose . For a microcontroller ADC pin (typically 100 kΩ–1 MΩ input impedance), a divider using 10 kΩ–20 kΩ resistors experiences negligible loading.
Power Dissipation
The power dissipated by the divider resistors as heat:
For a 5V–to–3.3V divider with 10 kΩ + 20 kΩ:
This is tiny — standard 1/8W resistors are more than adequate. However, for 12V systems with low-value resistors (e.g., 1 kΩ + 2 kΩ), power reaches 48 mW — still fine for 1/4W resistors, but worth checking.
Frequently Asked Questions
How does load resistance affect the voltage divider output?
When a load () is connected in parallel with , it reduces the effective bottom resistance and pulls lower than the unloaded value. To keep the output stable, the divider's source resistance () must be much smaller than the load — ideally 10× or more. If the load impedance varies widely, consider a buffered divider using an op-amp voltage follower.
Can I use a voltage divider to power a motor or LED strip?
No. A resistive voltage divider is only suitable as a signal-level shifter or reference bias, not as a power supply. The output voltage collapses under load, and the power wasted in the resistors scales with current. Use a switching regulator (buck converter) or LDO regulator to step down voltage for power delivery.
What is the difference between a voltage divider and a Zener regulator?
A voltage divider produces an output that varies with load and input voltage. A Zener diode placed across clamps to a fixed reference voltage as long as the current through the circuit exceeds the Zener's minimum holding current. Zener regulators are still inefficient under heavy loads; for precision references, use a dedicated voltage reference IC (e.g., LM4040, TL431).
Why do I get a different voltage than the formula predicts?
The three most common causes: (1) the load draws enough current to change the divider ratio (loading effect), (2) you are measuring with a cheap multimeter whose internal resistance (~10 MΩ) participates in the divider at very high source impedances, or (3) the actual resistor values differ from nominal due to tolerance — check values with a multimeter.