Triple Voltage Divider- Circuit Design and Calculations
What Is a Triple Voltage Divider?
A triple voltage divider is a resistor network that splits a single input voltage into three separate output voltages. Instead of using three individual divider circuits, you chain resistors together and tap off voltage at two intermediate points.
This is useful when you need multiple voltage rails from one power source—like powering a microcontroller, sensor, and display from a single 12V supply.
How It Works
The math is the same as a standard voltage divider. You have three resistors in series between your input voltage and ground. Each tap point gives you a different voltage.
Voltage drops across each resistor according to Ohm's Law. The current flowing through all resistors is identical because they're in series.
The Basic Circuit
Input voltage → R1 → Vout1 (tap 1) → R2 → Vout2 (tap 2) → R3 → Ground
You get three output voltages: the input, plus two intermediate taps. That's it. Nothing fancy.
The Calculations
Voltage at Each Tap
For a divider with three resistors:
Current through all resistors:
I = Vin / (R1 + R2 + R3)
Voltage at tap 1 (between R1 and R2):
V1 = Vin × (R2 + R3) / (R1 + R2 + R3)
Voltage at tap 2 (between R2 and R3):
V2 = Vin × R3 / (R1 + R2 + R3)
Quick Example
Input: 12V
R1 = 10kΩ, R2 = 10kΩ, R3 = 10kΩ
Total resistance = 30kΩ
Current = 12V / 30kΩ = 0.4mA
V1 = 12V × 20kΩ / 30kΩ = 8V
V2 = 12V × 10kΩ / 30kΩ = 4V
You now have 12V, 8V, 4V, and 0V (ground) available.
Design Considerations
Load Current Matters
Voltage dividers are terrible at powering loads. The moment you draw current from a tap, the voltage drops because you're effectively changing the divider ratio.
If you need stable voltages under load, either use:
- Resistors small enough that load current is negligible compared to divider current
- Voltage regulators after each tap
- Op-amp buffers for each output
Rule of thumb: divider current should be at least 10× the maximum load current for acceptable regulation.
Power Dissipation
Each resistor dissipates power as heat:
P = I² × R
Using the 12V example above with 10kΩ resistors:
P = (0.4mA)² × 10,000 = 1.6mW per resistor
That's fine. Scale down resistances for higher currents and you need to watch this number.
Choosing Resistor Values
Lower resistance = more current = better load regulation = more power wasted
Higher resistance = less current = poor load regulation = less power wasted
Common practice: use values in the 10kΩ to 100kΩ range for low-power applications. Drop to 1kΩ-10kΩ if you need decent load handling.
Triple Voltage Divider vs Alternatives
| Method | Load Handling | Complexity | Cost | Best For |
|---|---|---|---|---|
| Triple Resistor Divider | Poor | Low | Low | Signal conditioning, biasing |
| Resistor Divider + Regulators | Good | Medium | Medium | Multiple clean voltage rails |
| Multi-Output DC-DC Converter | Excellent | High | High | Powering actual loads |
| LM317 Adjustable | Good | Medium | Medium | Variable voltage, moderate current |
Voltage dividers are fine for signals and bias voltages. They're not for powering anything that actually draws current.
Getting Started: Building a Triple Voltage Divider
What You Need
- Three resistors (calculate values based on your needs)
- Breadboard or PCB
- Input voltage source
- Multimeter for verification
Step-by-Step
1. Define your requirements
Input voltage: ___V
Desired V1: ___V
Desired V2: ___V
2. Calculate resistor ratios
Work backwards from your desired voltages. If you want V1 at 66% of input and V2 at 33%:
R1 : R2 : R3 = (V1 - V2) : V2 : Vremaining
3. Choose actual values
Pick standard resistor values close to your calculated ratios. Common values: 10k, 22k, 47k, 100k.
4. Build and test
Connect in series. Measure each tap with your multimeter. Compare to calculated values. Adjust if needed.
Troubleshooting
Output voltages wrong? Check your resistor values with a multimeter—color codes are easy to misread.
Voltages droop under load? Your load current is too high. Reduce your resistor values or use a buffer.
Voltages unstable? You might have a wiring issue or your input voltage source is noisy.
Practical Applications
Battery monitoring: Create reference voltages for measuring battery levels with ADC inputs.
Level shifting: Convert a signal to different voltage ranges for various components.
Biasing transistor circuits: Set operating points for amplifier stages.
Sensor arrays: Power multiple sensors at different voltages from one supply.
The Bottom Line
Triple voltage dividers are simple and cheap. They work fine for signal conditioning, reference voltages, and anywhere you need multiple voltage points without drawing significant current.
They fail fast when you try to use them as power supplies. Know the limitation and use the right tool for the job. If you need actual power delivery, add regulators or use a different architecture entirely.