A resistor network can look complicated until you ask two questions: which parts share the same current, and which parts share the same voltage? Series parts share current. Parallel parts share voltage. That distinction is the whole foundation.
| Connection | Same quantity | What divides | Equivalent resistance |
|---|---|---|---|
| Series | Current | Voltage | Rtotal = R1 + R2 + ... |
| Parallel | Voltage | Current | 1/Rtotal = 1/R1 + 1/R2 + ... |
Resistors in series
Series resistors are connected end to end so there is only one path for current. The same current flows through every resistor. The voltages across the resistors add up to the supply voltage.
Rtotal = R1 + R2 + R3
If a 1 kohm resistor and a 2 kohm resistor are in series, the total resistance is 3 kohm. With 6 V across the chain:
I = V / R
I = 6 V / 3000 ohm
I = 0.002 A
I = 2 mA
That 2 mA flows through both resistors. The 1 kohm resistor drops 2 V and the 2 kohm resistor drops 4 V.
Resistors in parallel
Parallel resistors are connected across the same two nodes. Each resistor sees the same voltage. The current through each branch depends on that branch resistance, and the branch currents add to the total current.
1/Rtotal = 1/R1 + 1/R2
For two resistors, there is a useful shortcut:
Rtotal = (R1 x R2) / (R1 + R2)
Two 1 kohm resistors in parallel make 500 ohm. Three 1 kohm resistors in parallel make about 333 ohm. Parallel resistance is always lower than the smallest individual resistor in the group.
Why equivalent resistance helps
Equivalent resistance lets you simplify a network into one value, calculate total current, then work back through the circuit to find individual voltages and currents. This is useful in hand analysis, quick debugging, and sanity checks before simulation.
It is also useful when choosing parts. If you need a value that is not in stock, series or parallel combinations can create it. If a resistor needs to dissipate more power than one package can handle, several resistors can sometimes share that power, as long as voltage, tolerance, and thermal conditions are checked.
Power sharing is not always equal
In series, the same current flows through each resistor, so higher resistance means more power:
P = I^2 x R
In parallel, the same voltage appears across each resistor, so lower resistance means more current and more power:
P = V^2 / R
Equal resistors share power neatly. Unequal resistors do not. This matters if you are using several parts to handle heat or high voltage.
Tolerance changes the real network
Two 10 kohm resistors in a calculation may not be exactly equal on the board. If they are 5 percent parts, one could be high and the other low. For LED indicators this rarely matters. For measurement dividers, gain setting, or threshold circuits, it may matter a lot.
Debugging habit
When measuring a circuit, remember that a multimeter in voltage mode measures across nodes, while a meter in current mode must be inserted in series. Many beginner mistakes come from mixing those two ideas.
Recognising combinations in real circuits
Real schematics often combine series and parallel sections. Work from the simplest obvious groups first. If two resistors share both ends, they are parallel. If current has no branch between two resistors, they are series. If there is an active device, input pin, capacitor, or load connected at the middle node, do not ignore it unless you know it has no meaningful effect.
Common mistakes
- Assuming voltage is the same across series parts.
- Assuming current is the same through parallel branches.
- Forgetting that parallel resistance is lower than the smallest branch.
- Combining resistors while ignoring a load connected to the middle node.
- Using equal-power assumptions with unequal resistor values.
Start a project