To find total resistance in a series-parallel circuit, you must first calculate the equivalent resistance of each individual parallel branch by summing its series components, and then apply the parallel resistance formula across those branches. For a circuit with two branches, each containing two series resistors, the formula is: R_total = 1 / (1/(R1 + R2) + 1/(R3 + R4)). If all four resistors are 100Ω, each branch equals 200Ω, and the total circuit resistance resolves to exactly 100Ω.

But knowing the math is only half the job. On the bench, you need to know why you are choosing this topology over a simpler one, how it fails when a component dies, and how to verify it without being fooled by breadboard contact resistance. Here is how we take this theory and build a practical, fault-tolerant 100Ω dummy load.

The Core Math and Topology Breakdown

Let us map out the physical topology before touching a calculator. Imagine a standard solderless breadboard. We are creating a network with four distinct electrical nodes:

  • Node IN: The top power rail where current enters the network.
  • Node MID-A: The junction between Resistor 1 (R1) and Resistor 2 (R2) in the first branch.
  • Node MID-B: The junction between Resistor 3 (R3) and Resistor 4 (R4) in the second branch.
  • Node OUT: The bottom ground rail where current exits the network.

Current flows from Node IN and splits into two parallel paths. Path A travels through R1, hits Node MID-A, then travels through R2 to Node OUT. Path B travels through R3, hits Node MID-B, then travels through R4 to Node OUT. According to All About Circuits, the defining rule here is that components sharing the exact same two nodes are in parallel, while components that share only one node and carry the exact same current are in series.

Bench Tip: Never try to solve the entire circuit at once. Always collapse the series groups first. Treat Branch A (R1+R2) and Branch B (R3+R4) as single, imaginary resistors. Once you have their individual totals, treat those two imaginary resistors as a simple parallel pair.

Design Walkthrough: Building a 100Ω 0.5W Dummy Load

Why build a 100Ω series-parallel network instead of just buying a single 100Ω resistor? Power dissipation and fault tolerance. Suppose you need a dummy load to test a 5V USB power supply. A 100Ω load will draw 50mA (I = V/R), dissipating 0.25W of heat (P = I²R). While a standard 1/4W (0.25W) resistor could theoretically handle this, running a resistor at 100% of its rated capacity causes severe thermal drift and premature failure. Standard engineering practice dictates derating resistors by at least 50%.

We will use four Yageo CFR-25JB-52-100R resistors. These are standard 100Ω, 1/4W, 5% tolerance carbon film resistors that cost about $0.02 each in bulk.

  1. Branch A Calculation: R1 (100Ω) + R2 (100Ω) = 200Ω total branch resistance.
  2. Branch B Calculation: R3 (100Ω) + R4 (100Ω) = 200Ω total branch resistance.
  3. Total Resistance: (200Ω × 200Ω) / (200Ω + 200Ω) = 100Ω.
  4. Power Distribution: Because the branches are identical, the 50mA total current splits evenly. 25mA flows through Branch A, and 25mA flows through Branch B.
  5. Per-Resistor Dissipation: P = I²R = (0.025A)² × 100Ω = 0.0625W per resistor.

By using this series-parallel topology, each resistor only dissipates 62.5mW. This is exactly 25% of their 250mW rating, ensuring the resistors stay cool, their resistance value remains stable, and the overall network can safely handle up to 1W of total power if the voltage increases.

Failure Mode Contrast: What Breaks at the Extremes?

The true advantage of a series-parallel topology reveals itself when things go wrong. If you use a pure series or pure parallel circuit, a single component failure usually kills the entire system or creates a dead short. Here is exactly what happens to our 100Ω dummy load when a single element fails, assuming a constant 5V applied across Node IN and Node OUT.

Failure Event New Topology State New Total Resistance Circuit Consequence
R1 Opens (burns out) Branch A is dead. Only Branch B (R3+R4) remains. 200Ω Current drops to 25mA. The load still functions but at half capacity. R3 and R4 now dissipate 0.125W each (still within safe limits).
R1 Shorts (internal weld) Branch A becomes just R2 (100Ω). Branch B remains 200Ω. 66.7Ω Total current spikes to 75mA. R2 now carries 50mA and dissipates 0.25W (hitting its absolute max rating). R3/R4 remain safe.
Node MID-A Shorts to Node OUT R2 is bypassed. Branch A becomes just R1 (100Ω). 66.7Ω Identical to the R1 short scenario. R1 takes the full branch current.
Node IN to Node OUT Short External wiring bypasses the entire network. Dead short across the power supply. The supply's internal protection (or a fuse) must trip immediately.

Notice that no single resistor failure results in a catastrophic dead short across the power supply. The series elements act as current limiters for their respective branches, while the parallel branches provide redundant paths. This graceful degradation is why series-parallel arrays are standard in high-reliability power dissipation networks and LED ballast circuits.

Breadboard Testing: Step-by-Step Verification

Do not just plug the circuit in and hope the math holds up. You must verify the total resistance with a multimeter before applying power. However, breadboards introduce parasitic contact resistance that can skew your readings. Follow this exact sequence to get an accurate measurement.

  1. Isolate the Network: Ensure the breadboard is completely unpowered. Disconnect any wires leading to power supplies or microcontrollers. Measuring resistance in a live circuit will yield garbage data and can blow your multimeter's internal fuse.
  2. Zero the Meter: Set your multimeter to the lowest Ohms range (usually 200Ω or the auto-ranging equivalent). Touch the probes together. Note the residual lead resistance (typically 0.2Ω to 0.5Ω for standard Fluke test leads). You will subtract this from your final reading.
  3. Probe the True Nodes: Do not place your probes on the breadboard's metal power rails. The spring contacts inside the breadboard add 0.5Ω to 2Ω of resistance per junction. Instead, push the multimeter probe tips directly against the exposed metal leads of R1 and R4 where they enter the plastic housing of the resistor body.
  4. Read and Calculate: A healthy circuit using 5% tolerance 100Ω resistors should read between 90Ω and 110Ω. If your meter reads 98.4Ω, and your lead resistance is 0.4Ω, your actual network resistance is 98.0Ω.
  5. Verify Branches (Optional but recommended): Pull R3 and R4 out of the board. Measure across R1 and R2. You should read exactly ~200Ω. This confirms your series math and proves the breadboard contacts at Node MID-A are making a solid connection.
Safety Warning: If you are scaling this design up for mains voltage or high-current DC (>50V / >120V DC), breadboards are strictly forbidden. The contact resistance will cause localized heating, melting the plastic housing and creating a fire hazard. For high-power applications, you must solder the series-parallel network to a FR4 perfboard or use wirewound resistors bolted to a heatsink.

Decision Tree: Why This Topology Over the Alternatives?

When designing a resistive network, you have three basic configurations. Use this decision matrix to lock in your topology based on your specific bench constraints.

Design Constraint Pure Series Pure Parallel Series-Parallel
Need higher resistance than available stock? YES (Resistances add) NO (Resistance drops) YES (Series branches add)
Need higher power rating than single component? YES (If values are matched) YES (Current splits) YES (Best of both worlds)
Fault tolerance required (open circuit)? NO (One open kills all) YES (Others keep running) YES (Remaining branches survive)
Fault tolerance required (short circuit)? YES (Limits current) NO (One short kills all) YES (Series elements limit current)
Board space is extremely limited? YES (Minimal components) YES (Minimal components) NO (Requires 4+ components)

The Verdict: If you are building a low-power voltage divider or a simple pull-up network, use pure series or pure parallel to save space. But if you are designing a dummy load, a current-sharing ballast, or a precision shunt where both power distribution and fault tolerance are mandatory, the series-parallel topology is the only correct choice.

Final Component Selection and Procurement

Stop guessing and lock in your bill of materials. For a general-purpose, bench-safe 100Ω dummy load capable of handling 5V to 12V logic and power rail testing, procure the following:

  • Resistors: 4x Yageo CFR-25JB-52-100R (100Ω, 1/4W, 5%, Carbon Film). Cost: ~$0.10 total.
  • Substrate: 1x Standard 830-point solderless breadboard (for prototyping) OR 1x 2x4 inch FR4 perfboard with 0.1-inch hole spacing (for permanent soldering).
  • Test Leads: 2x Banana-to-alligator clips for connecting to your power supply under test.

Wire R1 and R2 in series on the left side of the board. Wire R3 and R4 in series on the right side. Jumper the top leads together to form Node IN, and the bottom leads together to form Node OUT. Measure across the nodes to verify your 100Ω target, and you now have a robust, fault-tolerant test load that will not burn up your bench or your power supplies. For proper measurement techniques when verifying your build, always refer to the Fluke best practices guide for measuring resistance to ensure your meter is calibrated and zeroed correctly.