When you are staring at a schematic during a circuits exam or tracing copper on a PCB at the workbench, identifying series parallel examples correctly is the difference between a quick solution and a blown afternoon. Most students memorize the basic formulas for two resistors, but real-world networks and exam questions intentionally nest these combinations to test your topological understanding. This guide walks through a rigorous, 5-resistor mixed network, showing every algebraic step, the traps that cause lost points, and how to verify your answer without relying on a simulator.
Choosing the Right Reduction Method
Before you touch a calculator, you must determine which theorem or method applies to the circuit and why. Not every network can be solved with basic equivalent resistance formulas. If the circuit contains an unbalanced Wheatstone bridge, basic series-parallel reduction fails, and you must pivot to Delta-Wye (Δ-Y) transforms or Nodal Analysis.
For the problem we are solving below, Series-Parallel Reduction applies because every resistor either shares exactly two exclusive nodes with another component (parallel) or carries the exact same uninterrupted current (series). There are no cross-bridges.
| Method | Best Applied When... | Identifying Topological Feature | Math Complexity |
|---|---|---|---|
| Series-Parallel | Standard ladder or nested branch networks | Clear hierarchical nodes; no cross-branch links | Low (Basic algebra) |
| Delta-Wye (Δ-Y) | Unbalanced bridges or 3-phase motor windings | Three components forming a closed triangle (Delta) | Medium (Simultaneous equations) |
| Thevenin/Norton | Finding max power transfer to a specific load | Complex source network feeding a single load resistor | Medium (Requires open-circuit/short-circuit tests) |
| Nodal/Mesh | Non-reducible planar circuits with multiple sources | Multiple loops with no obvious series/parallel pairs | High (Matrix algebra / Cramer's rule) |
According to foundational circuit theory outlined by All About Circuits, mastering the visual identification of these topologies is the mandatory first step before any arithmetic begins.
Walkthrough: 5-Resistor Mixed Network
A 24V DC ideal voltage source ($V_s$) is connected to a resistor network. The current leaves the positive terminal and immediately passes through $R_1$ (47Ω). At Node A, the circuit splits into two parallel branches. Branch 1 contains only $R_2$ (100Ω). Branch 2 contains $R_3$ (120Ω) in series with a sub-branch. This sub-branch splits into $R_4$ (150Ω) and $R_5$ (300Ω) in parallel, which then recombine and return to the negative terminal of the source.
Find: Total equivalent resistance ($R_{eq}$) and total current ($I_T$).
Note: All resistor values are standard E12 series values commonly found in a bench kit.
Step 1: Reduce the Innermost Parallel Sub-branch ($R_4$ || $R_5$)
We always start from the furthest point from the source and work backward. $R_4$ and $R_5$ share exactly two nodes, making them strictly parallel.
- Formula: $R_{45} = \frac{R_4 \times R_5}{R_4 + R_5}$
- Substitute: $R_{45} = \frac{150 \times 300}{150 + 300}$
- Calculate: $R_{45} = \frac{45000}{450} = 100\Omega$
Step 2: Add the Series Resistor in Branch 2 ($R_3 + R_{45}$)
The current flowing through $R_3$ has nowhere else to go but into the $R_4$/$R_5$ parallel block. Therefore, they are in series.
- Formula: $R_{345} = R_3 + R_{45}$
- Substitute: $R_{345} = 120 + 100$
- Calculate: $R_{345} = 220\Omega$
Step 3: Resolve the Main Parallel Split at Node A ($R_2$ || $R_{345}$)
Branch 1 ($R_2$) and the entirety of Branch 2 ($R_{345}$) are connected between Node A and the ground return. They are in parallel.
- Formula: $R_{2345} = \frac{R_2 \times R_{345}}{R_2 + R_{345}}$
- Substitute: $R_{2345} = \frac{100 \times 220}{100 + 220}$
- Calculate: $R_{2345} = \frac{22000}{320} = 68.75\Omega$
Step 4: Add the Main Series Feed ($R_1 + R_{2345}$)
Finally, $R_1$ is in series with the entire parallel block that follows it.
- Formula: $R_{eq} = R_1 + R_{2345}$
- Substitute: $R_{eq} = 47 + 68.75$
- Calculate: $R_{eq} = 115.75\Omega$
Step 5: Calculate Total Current
Using Ohm's Law across the entire equivalent circuit:
- $I_T = \frac{V_s}{R_{eq}} = \frac{24V}{115.75\Omega} \approx 0.2073A$ (207.3 mA)
Never submit an answer without checking the physical bounds of your math. As noted in HyperPhysics circuit theory references, the equivalent resistance of a parallel block must always be smaller than the smallest individual resistor in that block.
• $R_{45}$ (100Ω) is less than $R_4$ (150Ω). Pass.
• $R_{2345}$ (68.75Ω) is less than $R_2$ (100Ω). Pass.
• Series additions must increase the total. $R_{eq}$ (115.75Ω) is greater than $R_1$ (47Ω). Pass.
• Units are correctly tracked as Ohms (Ω) and Amperes (A). Pass.
The Hidden Trap & Independent Verification
The Trap: Visual Proximity vs. Topological Nodes
The most common reason students fail series parallel examples on exams is relying on how the circuit is drawn rather than how it is wired. In schematic capture software or textbook diagrams, $R_3$ and $R_4$ might be drawn in a straight horizontal line, tricking the eye into thinking they are in series.
The Rule: Components are only in series if they share a single, exclusive node with no other paths for current to escape. Components are only in parallel if they connect to the exact same two nodes. Always redraw complex schematics into standard 'ladder' formats, aligning the nodes vertically, before starting your algebra.
How to Verify the Answer Independently
If you have time on the exam, or if you are debugging a physical prototype on the bench, you can verify the equivalent resistance calculation using Kirchhoff’s Current Law (KCL) at Node A. If our $R_{eq}$ is correct, the branch currents must sum perfectly to the total current.
- Find Voltage at Node A ($V_A$): The total current (207.3 mA) flows through $R_1$, dropping voltage.
$V_{drop(R1)} = 0.2073A \times 47\Omega = 9.74V$
$V_A = 24V - 9.74V = 14.26V$ - Calculate Branch 1 Current ($I_2$):
$I_2 = \frac{14.26V}{100\Omega} = 142.6 mA$ - Calculate Branch 2 Current ($I_{branch2}$):
$I_{branch2} = \frac{14.26V}{220\Omega} = 64.8 mA$ - KCL Summation Check:
$I_{total} = I_2 + I_{branch2} = 142.6 mA + 64.8 mA = 207.4 mA$
The 0.1 mA discrepancy is purely due to rounding $I_T$ to four decimal places in Step 5. The math holds up perfectly. By combining rigorous step-by-step reduction with topological node-checking and KCL verification, you eliminate the guesswork from mixed resistor networks and guarantee accuracy whether you are grading an exam or sizing a current-limiting network for an LED array.






