FreeCircuitSim
April 20266 min readBeginner

Voltage Divider Calculator and Guide

A voltage divider uses two resistors to produce an output voltage that is a fraction of the input voltage. It is one of the most frequently used circuits in electronics — appearing in sensor interfaces, biasing circuits, ADC inputs, and level shifters.

Open Voltage Divider Simulator
Advertisement
Guided Simulation
Ready to build this yourself?
Follow our step-by-step simulation guide with diagrams, calculations, and common mistakes.
🔧 Build a Voltage Divider — Step by Step →

Voltage Divider Diagram

graph TD VIN["Vin"] --> R1["R1 (top)"] R1 --> MID["Output node — Vout = Vin × R2/(R1+R2)"] MID --> R2["R2 (bottom)"] R2 --> GND["GND"] style VIN fill:#1a3a4a,stroke:#00e5ff,color:#00e5ff style MID fill:#1a3a2a,stroke:#00ff88,color:#00ff88 style GND fill:#161b1f,stroke:#5a7080,color:#5a7080

The Voltage Divider Formula

Connect R1 from the input voltage to the output node, and R2 from the output node to ground. The output voltage is:

Vout = Vin × R2 / (R1 + R2)
Vout is always between 0V and Vin. Larger R2 = higher Vout.

Example 1: Vin = 12V, R1 = 10kΩ, R2 = 10kΩ → Vout = 12 × 10/(10+10) = 6V. Exactly half.

Example 2: Vin = 5V, R1 = 10kΩ, R2 = 4.7kΩ → Vout = 5 × 4.7/(10+4.7) = 1.6V.

Choosing Resistor Values

The resistor ratio determines the output voltage. The absolute values determine current draw and loading sensitivity.

Practical Applications

Simulate Potentiometer Divider

Loaded vs Unloaded Divider

When you connect a load (any circuit drawing current) to the divider output, the effective R2 becomes the parallel combination of R2 and the load resistance. This lowers the output voltage.

Vout_loaded = Vin × R2_eff / (R1 + R2_eff)
R2_eff = R2 || R_load = (R2 × R_load) / (R2 + R_load)

To minimise this effect, use a buffer (op-amp voltage follower) between the divider output and the load. The buffer presents virtually infinite impedance to the divider while driving the load from its low-impedance output.

💡 Key insight: Voltage dividers are best suited for driving high-impedance loads (op-amp inputs, microcontroller ADC pins, which are typically 100kΩ or more). For low-impedance loads, add a buffer or use a regulator.

Common Beginner Mistakes

⚠️

Ignoring Loading Effects

A voltage divider's output voltage changes when you connect a load. If the load resistance is comparable to R2, the output drops significantly. This is the most commonly overlooked issue in voltage divider design.

⚠️

Divider Resistors Too High for Power Supply

Very high resistance values (MΩ range) make the divider extremely sensitive to leakage currents and input bias currents of connected circuits. Keep divider resistance 10× lower than the load impedance.

⚠️

Using as a Power Supply Substitute

A voltage divider is not a voltage regulator. Under varying load, the output voltage varies. For any application requiring stable voltage under changing current demand, use a proper voltage regulator (LM7805, LM317, or switching regulator).

⚠️

Wasting Power Continuously

A voltage divider draws current continuously — even when the load is off. In battery-powered circuits, choose R values high enough to minimise this quiescent current drain while still providing a stiff enough output for your load.

Frequently Asked Questions

What is a voltage divider?
A voltage divider uses two resistors in series to produce an output voltage that is a fraction of the input. The formula is Vout = Vin × R2 / (R1 + R2).
What are voltage dividers used for?
Voltage dividers are used for sensor interfaces (NTC thermistors, LDRs), level shifting between 5V and 3.3V logic, transistor biasing, and generating reference voltages.
Why does a voltage divider not work well with low-impedance loads?
Connecting a low-impedance load in parallel with R2 reduces the effective R2 resistance, lowering the output voltage below the calculated value. For low-impedance loads, add an op-amp buffer after the divider.
Keep Going
Ready to simulate this yourself?
Open the free simulator — no account, no download needed.
⚡ Open Simulator →
📍 Step 5 of the beginner path
Continue Learning →
Next up: Capacitors Explained
Next: Capacitors Explained →

Related Guides

← Back to All Guides