Series/Parallel Networks & Dividers
Real circuits are rarely a single loop. They're tangles of resistors that look intimidating until you notice most of that tangle is just series and parallel combinations wearing a disguise. This chapter gives you the two reduction rules ( for series, for parallel), the five-step procedure for chaining them across an entire network, and the two shortcuts — voltage and current dividers — that let you skip the reduction step entirely once you recognize the pattern. By the end you should be able to look at a network, know in what order to collapse it, and read off any voltage or current without solving a single simultaneous equation. Budget about 20 minutes here; the payoff is that Chapter 2.4 onward (node-voltage, mesh-current) becomes the fallback for circuits that can't be reduced this way — you'll want this chapter's tools reflexively so you reach for the harder machinery only when you actually need it.
1 Series resistors: same current, voltages add
Two elements are in series when they share a single path — no other element connects to the node between them, so whatever current enters one must be the current that leaves it and enters the next. That's the defining property, not "drawn in a line":
Now derive instead of just stating it. Walk KVL around the loop, summing drops in the direction of current flow, then apply Ohm's law to each element individually:
Because is the same in every term, it factors straight out — that's the whole reason series resistances simply add. It generalizes to any count: . The equivalent resistor is a stand-in that draws the exact same current from the source as the whole chain did; nothing else about the circuit needs to know the chain has been collapsed.
2 Parallel resistors: same voltage, currents add
Two elements are in parallel when they share both endpoints — the same pair of nodes — so by KVL around the loop formed by either two of them, they must have the identical voltage across them:
Derive the parallel rule from KCL at the top node — total current in equals the sum of branch currents out:
This time is what's shared, so the conductances () add instead: . For exactly two resistors this collapses to the handy product-over-sum shortcut:
Parallel is always smaller than the smallest branch resistance — adding a path can only make it easier for current to flow. Series is always larger than the biggest single resistor. If a calculation gives you the opposite, you've mixed up the two rules.
3 Combining series and parallel: the reduction procedure
Most real networks are neither purely series nor purely parallel — they're a nested mix. The slides' five-step procedure handles any such network, provided it genuinely reduces to series/parallel groups (once you hit a bridge or a network with no such reduction, that's your cue for node-voltage or mesh-current analysis in the next chapter):
- Locate a series or parallel combination — usually easiest starting farthest from the source.
- Redraw the circuit with that group replaced by its single equivalent resistor.
- Repeat steps 1–2 until the whole network is one in series with the source.
- Solve the simplified (single-loop) circuit for the source current, then work backward substituting into each un-collapsed stage to recover every original voltage/current.
- Verify: KCL at each node, KVL around each loop, and total power delivered = total power absorbed.
A 90 V source feeds in series, then . Find the source current and every branch current, then check power balance.
Reduce the parallel pair first (farthest from source):
Now it's a single loop: .
Back-substitute: the voltage across the parallel pair is V, the same voltage seen by and individually.
Power balance: source delivers W. Resistors absorb W. Matches. ✓
4 Voltage divider: splitting a voltage without solving anything
Once you recognize a pure series chain, you don't even need to grind through the full procedure to find the voltage across one element — it falls straight out of the derivation above. Since every resistor in the chain carries the same current , the voltage across any one of them is:
Read this as a proportion: each resistor claims a share of the total voltage exactly proportional to its own resistance relative to the whole chain. The biggest resistor in the chain drops the most voltage — it's the one "fighting" the current the hardest.
A car's electrical system nominally sits at 12 V but can fluctuate up to about 14.8 V while the alternator is charging. An Arduino analog input can only tolerate up to 5 V — feeding it the raw battery voltage would destroy the pin. A voltage divider scales the signal down safely before it ever reaches the microcontroller.
Pick (top, connected to ) and (bottom, to ground) and tap across :
Check both ends of the operating range against the Arduino's 5 V ceiling:
Both comfortably under 5 V — the pin is safe across the whole fluctuation range.
Check the design doesn't waste much power: with ,
A trickle — fine for a sensor tap that's always connected.
5 Current divider: splitting a current between parallel branches
The mirror-image idea for parallel branches: since every branch sees the same voltage , the current through any one branch is:
Notice branch 's current formula has (the other resistor) on top — current division is inversely proportional to resistance, the opposite of voltage division. The smaller resistance always grabs the larger share of the current — it's the path of least resistance, literally. Mixing this up with the voltage-divider formula is the single most common algebra slip in this topic.
100 V source, in series, then . Find the voltage across the parallel pair and the current through — using dividers directly, without fully solving the circuit.
Reduce the parallel pair to get the divider ratio: .
Voltage divider across the now-two-element series chain ( and ):
Current divider inside the parallel pair — need the total current entering it first, A, then split by the inverse-resistance rule:
6 Interactive: build your own network
Click a branch to select it, then use the buttons to add a resistor in series with it or split it into a parallel pair. Watch recompute live as the topology changes — this is exactly the reduction procedure from Section 3, just automated so you can build intuition fast.
7 Self-check
A 10 V source feeds a 6 Ω series resistor, then two 8 Ω resistors in parallel. What is the current through each 8 Ω resistor?
Three resistors 5 Ω, 7 Ω, 13 Ω are in series across a 25 V source. Which resistor has the largest voltage across it, and why?
8 Practice problems
A 48 V source feeds in series with the parallel combination of , , and . Find the source current and the current through .
Method 1 — direct reduction. Combine the parallel trio via conductances: . Total . Source current A. Voltage across the parallel group: V. Current through : A.
Method 2 — current-divider cross-check. Skip computing explicitly: use the current-divider formula directly on the three-branch parallel group. For branch among parallel branches , the share is proportional to that branch's conductance over the total: A. Matches Method 1. ✓
A 36 V source drives four series resistors: , , , . Find , the voltage across , two independent ways.
Method 1 — voltage-divider formula. .
Method 2 — direct current calculation (independent check). Find the loop current first: A. Then Ohm's law on alone: V. Matches Method 1. ✓
A 9 A current source feeds three parallel branches: , , . Find the current through two independent ways.
Method 1 — reduce to voltage, then Ohm's law. . Shared voltage: V. Then A.
Method 2 — general current-divider formula (independent check). For branch among parallel branches, . Here A. Matches Method 1. ✓