A series circuit forces the exact same current through every component, with the total voltage dividing across them based on their resistance. A parallel circuit applies the exact same voltage across every component, with the total current dividing among the branches. You choose series when you need to drop voltage efficiently across a string of identical loads (like LEDs), and parallel when every load must operate independently at the full source voltage (like household outlets or microcontroller peripherals).
Understanding what is series and parallel circuits goes beyond textbook definitions. On the bench, the difference dictates your component sizing, your power budget, and exactly how your circuit will fail when a solder joint cracks or a component shorts. Below, we map the topologies, contrast their failure modes, and walk through a real 12V design.
Topology Definitions and Node Mapping
To design reliably, you must think in terms of nodes—the specific points in a circuit where two or more components connect. The topology is defined entirely by how components share these nodes.
The Series Topology
In a series configuration, components are daisy-chained. They share exactly one node with each other, and no other current path exists at that shared node.
- Node A (Source +): Connects to Component 1 (e.g., Resistor R1).
- Node B (Junction): Connects R1 to Component 2 (e.g., LED D1). No other paths branch off here.
- Node C (Source -): Connects D1 to ground.
Because there are no branches at Node B, Kirchhoff’s Current Law (KCL) dictates that the current entering R1 must exactly equal the current leaving D1. The voltage, however, divides: V_source = V_R1 + V_D1.
The Parallel Topology
In a parallel configuration, components share exactly two nodes. Both the input and output terminals of the components are tied together.
- Node A (Source +): Connects to the anode of LED D1 and the anode of LED D2.
- Node B (Source -): Connects to the cathode of D1 and the cathode of D2.
Because both components bridge the exact same two nodes, Kirchhoff’s Voltage Law (KVL) dictates they must experience the exact same voltage drop. The current, however, divides based on each branch's impedance.
Behavior Under Stress: Failure Modes and Extremes
The most critical difference between these topologies is how they handle faults. When designing safety-critical or high-reliability systems, you must evaluate what happens when a single element fails open (breaks the path) or fails short (creates a zero-resistance path).
| Failure Mode | Series Circuit Behavior | Parallel Circuit Behavior |
|---|---|---|
| One Element Opens | Current drops to zero across the entire circuit. All components shut down. (Think of old Christmas tree lights). | Current drops to zero only in the faulted branch. Remaining branches continue operating normally at full voltage. |
| One Element Shorts | The shorted component drops 0V. The full source voltage is now forced across the remaining components, usually causing a cascading over-voltage failure. | The short creates a near-zero resistance path across the main source. Massive current flows, tripping the main breaker or blowing the primary fuse, killing power to all branches. |
Design Walkthrough: Sizing Real Components for a 12V LED Array
Let’s apply this to a real scenario. You need to power three standard red LEDs from a 12V DC bench supply. The LED datasheet specifies a forward voltage (Vf) of 2.0V and a target forward current (If) of 20mA.
Option A: The Series Design
We wire the three LEDs in series with a single current-limiting resistor.
- Calculate Total Voltage Drop: 3 LEDs × 2.0V = 6.0V.
- Calculate Resistor Voltage Drop: 12V (Source) - 6.0V (LEDs) = 6.0V remaining for the resistor.
- Calculate Resistance (Ohm's Law): R = V / I = 6.0V / 0.020A = 300Ω.
- Select Standard Value: The nearest standard E24 resistor value is 330Ω.
- Verify Power Dissipation: P = I² × R = (0.020)² × 330 = 0.132W. A standard 1/4W (0.25W) through-hole resistor is perfectly safe.
Why choose this? It is highly efficient. The entire string draws only 20mA from the 12V supply. The tradeoff is that if one LED fails open, the entire string goes dark.
Option B: The Parallel Design
We wire three independent branches in parallel. Each branch contains one LED and its own dedicated resistor.
- Calculate Resistor Voltage Drop per branch: 12V (Source) - 2.0V (LED) = 10.0V.
- Calculate Resistance per branch: R = 10.0V / 0.020A = 500Ω.
- Select Standard Value: Nearest E24 value is 510Ω.
- Verify Power Dissipation: P = (0.020)² × 510 = 0.204W. You should step up to a 1/2W (0.5W) resistor here to maintain a safe thermal margin, as 0.204W is too close to the 0.25W limit for continuous operation.
Why choose this? Robustness. If one LED burns out, the other two stay lit. The tradeoff is power draw: the supply must now provide 60mA total (20mA × 3 branches), and you are wasting significantly more energy as heat in the resistors (dropping 10V instead of 6V).
Breadboard Testing: Step-by-Step Verification
Before applying power to a newly wired topology, verify your physical connections match your schematic. Here is how to breadboard-test the series LED string safely.
- De-energize the Board: Ensure the bench supply is turned off and unplugged. Never insert or remove components while the rails are live.
- Set Current Limit: Turn on the supply, set the voltage to 12.0V, and dial the current limit (OCP) to 50mA. Turn the supply off again. This ensures that if you have a dead short, the supply will fold back at 50mA instead of dumping amps into your breadboard wires.
- Continuity Check (DMM): Set your DMM to continuity mode (the diode/sound icon). Place the black probe on the ground rail and the red probe on the cathode (flat side) of the final LED in your series string. You should read a continuous path (beep) or a low resistance (< 5Ω) through the breadboard contacts.
- Power On and Measure Voltage Drops: Turn on the supply. Set the DMM to the 20V DC range. Place the black probe on the ground rail. Touch the red probe to the anode of the first LED (should read ~12V). Move the red probe to the cathode of the first LED (should read ~10V, indicating a 2V drop across the LED).
- Measure Current: To verify the 20mA target, turn off the power, break the circuit at Node A, and insert the DMM in series (set to the 200mA range). Power on and verify the reading sits between 18mA and 22mA.
Frequently Asked Questions
What is series and parallel circuits combined into a single network?
When you combine both topologies, you create a series-parallel circuit (often called a resistor network or ladder). A classic example is a battery pack: you wire cells in series to increase voltage, and then wire those series strings in parallel to increase capacity (Amp-hours). To analyze these, you collapse the circuit step-by-step: solve the innermost parallel groups into single equivalent resistances, then add them to the series chain. For battery packs, this requires a sophisticated Battery Management System (BMS) capable of balancing across both series nodes and parallel groups to prevent Coulomb counting errors and cell drift.
How do I calculate total resistance in series and parallel circuits?
For series circuits, resistance simply adds up: R_total = R1 + R2 + R3. It will always be larger than the largest individual resistor.
For parallel circuits, the reciprocals add up: 1/R_total = (1/R1) + (1/R2) + (1/R3). For exactly two resistors, you can use the 'product-over-sum' shortcut: R_total = (R1 × R2) / (R1 + R2). The total parallel resistance will always be smaller than the smallest individual resistor in the network.
Why are household outlets wired in parallel instead of series?
Household branch circuits (governed by NEC Article 210) wire receptacles in parallel so that every outlet receives the full nominal 120V (typically measuring 114V–126V at the yoke). If outlets were wired in series, plugging in a high-impedance device like a phone charger would starve a low-impedance device like a space heater of voltage. Furthermore, parallel wiring ensures that turning off a lamp in one socket doesn't break the circuit and kill power to the refrigerator on the next socket down. The only series element in a home branch circuit is the protective device (the breaker or fuse) and the switch controlling a specific load.
Can I mix series and parallel batteries in the same LiFePO4 pack?
Yes, this is known as a series-parallel (e.g., 4S2P) configuration, but it introduces severe balancing challenges. When you parallel lithium cells, they must be perfectly voltage-matched before connection to prevent massive cross-currents. In a 4S2P pack, the BMS can only monitor and balance the 4 series nodes; it cannot see if one cell in a parallel pair is degrading and hogging current. For hobbyist solar or 12V/24V/48V systems, it is almost always safer and more reliable to buy a single, larger-capacity cell (e.g., one 280Ah cell) rather than paralleling two 140Ah cells, eliminating the parallel mismatch risk entirely.






