When designing DC circuits, the decision between a parallel and series connection dictates how voltage and current distribute across your components. Choose a series connection when you need identical current through all components (like a voltage divider or an LED string), and choose a parallel connection when each component requires the full source voltage independently (like household outlets or parallel sensor arrays). Mixing them into a series-parallel topology is the standard approach for balancing efficiency, headroom, and fault tolerance in modern electronics.
Node Topologies: Defining the Current Paths
To understand how current flows, we map circuits using nodes—points where two or more component terminals meet. The arrangement of these nodes defines your topology.
The Series Path
In a pure series circuit, components are chained end-to-end. Current has only one path to follow. If we define Node A as the positive supply terminal, the current flows through Component 1 to Node B, then through Component 2 to Node C, and finally to the ground return. Because there are no branching nodes, Kirchhoff’s Current Law (KCL) dictates that the current at Node A, Node B, and Node C is exactly the same. However, Kirchhoff’s Voltage Law (KVL) requires the source voltage to be divided among the components based on their resistance or forward voltage.
The Parallel Path
In a parallel circuit, components share the same two electrical nodes. Node A acts as a common distribution bus (the supply), and Node B acts as the common return bus (ground). Current splits at Node A, with a portion flowing through each component, and recombines at Node B. Here, KVL dictates that every component experiences the exact same voltage drop (Node A to Node B), while KCL dictates that the total current is the sum of the individual branch currents.
The Behavior Matrix: Failure Modes and Extremes
The most critical difference between a parallel and series connection emerges when a component fails. Designing without accounting for open-circuit and short-circuit extremes is a primary cause of prototype fires and dead boards. The table below contrasts how each topology reacts to single-element failures.
| Criteria | Series Topology | Parallel Topology |
|---|---|---|
| Voltage Distribution | Divided proportionally by resistance/impedance | Identical across all branches |
| Current Distribution | Identical through all components | Divided inversely by resistance |
| Open Circuit Failure | Current drops to zero. The entire string dies (e.g., old Christmas lights). | Only the failed branch loses power. Remaining branches operate normally. |
| Short Circuit Failure | The shorted component drops 0V. The remaining components absorb the excess voltage, often leading to cascading overvoltage failures. | The shorted branch draws near-infinite current, tripping the supply's overcurrent protection or melting traces, killing power to all branches. |
| Total Resistance | Increases as components are added ($R_{total} = R_1 + R_2 + ...$) | Decreases as components are added ($1/R_{total} = 1/R_1 + 1/R_2 + ...$) |
According to foundational circuit theory outlined by All About Circuits, a short in a parallel branch is catastrophic because the equivalent resistance of the circuit approaches zero, causing the power supply to source maximum current until thermal or electronic limits are reached. In series, a short simply shifts the voltage burden to the surviving components.
Design Walkthrough: Sizing a 12V Mixed LED Array
Let’s apply this theory to a real design problem. We need to power six standard 5mm red LEDs from a 12V DC bench supply. The LEDs have a forward voltage ($V_f$) of 2.0V and a target forward current ($I_f$) of 20mA.
Evaluating the Extremes
- Pure Series: Six LEDs in series require $6 \times 2.0V = 12.0V$. This leaves 0V of headroom for a current-limiting resistor. Because LED $V_f$ varies slightly with temperature and manufacturing tolerances, the current will be highly unstable. Verdict: Reject.
- Pure Parallel: Six LEDs in parallel, each with its own resistor. Each resistor must drop $12V - 2.0V = 10V$ at 20mA. $R = 10V / 0.02A = 500\Omega$ (use standard 510$\Omega$). Total current draw is $6 \times 20mA = 120mA$. While functional, this wastes significant power as heat in the resistors ($P = I^2R = 0.102W$ per resistor). Verdict: Inefficient.
The Series-Parallel Solution
We choose a hybrid topology: three parallel strings, each containing two LEDs in series.
- String Voltage: Two LEDs in series drop $2 \times 2.0V = 4.0V$.
- Resistor Headroom: $12V - 4.0V = 8.0V$.
- Resistor Sizing: $R = 8.0V / 0.02A = 400\Omega$. The closest standard E12 value is 390$\Omega$.
- Actual Current: $I = 8.0V / 390\Omega = 20.5mA$ (perfectly safe for a 20mA nominal LED).
- Resistor Wattage: $P = I^2 \times R = (0.0205)^2 \times 390 = 0.164W$. A standard 1/4W (0.25W) carbon film resistor is sufficient, providing a 35% safety margin.
- Total Draw: Three parallel strings at 20.5mA each yields a total supply current of 61.5mA.
Breadboard Verification: Step-by-Step Testing
Before soldering or deploying a series-parallel network, you must verify the node topology on a breadboard. Miswired nodes are the leading cause of magic smoke. Follow this exact sequence using a digital multimeter (DMM).
For deeper prototyping techniques, SparkFun’s series and parallel prototyping guide offers excellent visual references for breadboard rail mapping.
- De-energize the Board: Ensure the 12V supply is turned off and disconnected. Never probe resistance or continuity on a live circuit.
- Continuity Check (Nodes): Set your DMM to continuity mode (the diode/beep symbol). Place one probe on the 12V positive rail and trace it to the anode of the first LED in each string. Verify that the cathode of the first LED shares a node (breadboard row) exclusively with the anode of the second LED. Confirm there are no accidental shorts to the ground rail.
- Resistance Check: Set the DMM to Ohms. Measure across the power rails. You should read the equivalent parallel resistance of your three 390$\Omega$ strings (approx. 130$\Omega$). If you read near 0$\Omega$, you have a short. If you read infinite (OL), a string is open.
- Voltage Verification: Connect the 12V supply. Set the DMM to DC Volts. Probe across each individual LED. You should read ~2.0V. Probe across each 390$\Omega$ resistor; you should read ~8.0V. If a resistor reads 12V, the LEDs in that string are backward or open.
- Current Measurement: To verify the 61.5mA total draw, turn off the power. Break the connection between the 12V positive rail and the LED strings. Set the DMM to the 10A or mA current setting, and insert the probes in series to bridge the gap. Power on and verify the reading.
Frequently Asked Questions
Can you mix parallel and series connections in the same circuit?
Yes, this is called a series-parallel or combination circuit, and it is the most common topology in practical electronics. Battery packs (like a 3S2P Li-ion configuration) use series connections to increase voltage and parallel connections to increase amp-hour capacity. LED arrays, voltage dividers feeding parallel loads, and multi-stage RC filters all rely on mixed topologies to achieve specific design goals.
Why do batteries last longer in parallel vs series?
Batteries in parallel maintain the same nominal voltage but add their capacities together (e.g., two 3.7V 2000mAh cells in parallel yield 3.7V at 4000mAh). Because the voltage is unchanged, the load draws the same current, but the larger total capacity means the batteries take twice as long to deplete. In series, the voltages add up (7.4V), which would push significantly more current through a fixed resistive load (per Ohm's Law), actually draining the total energy faster unless the load is specifically designed for the higher voltage.
What happens to total resistance when you add more resistors in parallel?
The total equivalent resistance always decreases. Every time you add a parallel branch, you provide an additional path for current to flow, which reduces the overall opposition to current from the power supply's perspective. The total resistance of a parallel network will always be lower than the resistance of the single smallest resistor in that network.
How do you calculate power dissipation in a series vs parallel circuit?
In a series circuit, use $P = I^2R$ because the current ($I$) is constant through all elements, making it the easiest variable to hold steady in your math. In a parallel circuit, use $P = V^2/R$ because the voltage ($V$) across all branches is identical. Using the wrong formula variant forces you to calculate intermediate voltage drops or branch currents unnecessarily.






