A voltage divider is a circuit that obtains a fraction of the input voltage by means of two impedances connected in series.
For example, you might have a 9V or 12V signal that a 5V or 3.3V input cannot directly accept. For a low-power signal, two resistors provide a simple way to reduce it.
What it is and how it works
A voltage divider is a simple linear circuit that uses Ohm’s Law and Kirchhoff’s Law to distribute the input voltage between two components.
Physically, it is nothing more than two resistors connected in SERIES between the voltage (
We take the output signal (
The voltage divider formula
You don’t need to memorize it if you understand the logic, but you’ll use it so often it will become second nature.
The formula is:
Where:
: Input Voltage (Total). : Output Voltage (At the midpoint). : Upper resistor (connected to ). : Lower resistor (connected to GND).
Where this formula comes from
It’s pure Ohm’s Law + Kirchhoff:
- Calculate the total circuit current:
- Calculate the voltage drop across the lower resistor (
), which is our output:
- Substitute the current into this equation and we obtain the voltage divider formula.
Common practical cases
The exact midpoint ( )
If you place two EQUAL resistors (
- Example:
and . - Input: 10V → Output: 5V.
The car sensor (12V to 5V)
You want to read the state of a car light (12V) with an Arduino (max 5V).
We need
Using the formula:
If we choose
Perfect! It’s a safe logic “1” and we don’t burn the Arduino.
In a vehicle, the nominal 12V can include transients and overvoltages. A divider calculates the normal level, but a real input may need additional filtering and protection.
The load trap
Here comes the most important part of the article. If the voltage divider is so great… Why don’t we use it to power things?
You have a 12V source. You have a motor that runs on 6V.
You think: “Easy! I put two equal
Result: The motor doesn’t move and the voltage drops to almost 0V.
Why does it fail? Because the ideal formula
The moment you connect a “Load” (the motor,
Voltage dividers are used for signals and low-power references, not for powering motors, power LEDs, or chargers.
To step down voltage with power, you need DC-DC converters or linear regulators.