FreeCircuitSim
April 20268 min readBeginner

Series and Parallel Circuits Explained

Series and parallel are the two fundamental ways to connect components in a circuit. Understanding the difference is essential for every electronics project — it determines how voltage and current distribute across your components.

Open Series/Parallel Simulator
Advertisement

Series Circuits

In a series circuit, components are connected end-to-end in a single path. Current has only one route to flow, so the same current passes through every component.

💡 Series vs parallel is the difference between old fairy lights and modern ones: Old Christmas lights were wired in series — one bulb failed and the whole string went dark because the single current path was broken. Modern lights are wired in parallel — each bulb has its own path, so one failure doesn't affect the others. That's why your tree lights still work when one bulb burns out.
R_total = R1 + R2 + R3 + ...
Total series resistance always increases

Example: Three 100Ω resistors in series = 300Ω total. With 9V supply, current = 9/300 = 30mA through all three.

If one component in a series circuit fails open (breaks), the entire circuit stops working — like old-style Christmas lights where one failing bulb killed the whole string.

Simulate Series Resistors

Parallel Circuits

In a parallel circuit, components share the same two nodes — they all see the same voltage, but current splits between the branches.

1/R_total = 1/R1 + 1/R2 + 1/R3
For two resistors: R_total = (R1 × R2) / (R1 + R2)

Example: Two 100Ω resistors in parallel = 50Ω total. With 9V supply, total current = 9/50 = 180mA (90mA in each branch).

Parallel circuits are used in home wiring — each outlet shares the same 230V (or 120V) supply voltage, and a device on one outlet does not affect voltage at another.

Simulate Parallel Resistors

Comparing Series vs Parallel

PropertySeriesParallel
CurrentSame everywhereSplits between branches
VoltageSplits across componentsSame across all branches
Total ResistanceIncreases (sum)Decreases (less than smallest)
Failure effectOne failure stops allOther branches keep working
Common useVoltage dividers, current limitingHome wiring, power distribution

Circuit Topology Diagrams

Series Circuit — Single Current Path

graph LR V["Battery (9V)"] --> R1["R1 (100Ω)"] R1 --> R2["R2 (100Ω)"] R2 --> R3["R3 (100Ω)"] R3 --> GND["GND"] V --> GND note1["Total R = 300Ω Current = 30mA V across each = 3V"] style V fill:#1a3a4a,stroke:#00e5ff,color:#00e5ff style note1 fill:#1a3a2a,stroke:#00ff88,color:#00ff88

Parallel Circuit — Multiple Current Paths

graph LR V["Battery (9V)"] --> node_top["Junction"] node_top --> R1["R1 (100Ω)"] node_top --> R2["R2 (100Ω)"] node_top --> R3["R3 (100Ω)"] R1 --> node_bot["Junction"] R2 --> node_bot R3 --> node_bot node_bot --> GND["GND"] V --> GND note2["Total R = 33.3Ω Total I = 270mA 90mA per branch"] style V fill:#1a3a4a,stroke:#00e5ff,color:#00e5ff style note2 fill:#1a3a2a,stroke:#00ff88,color:#00ff88

Common Beginner Mistakes

⚠️

Adding Parallel Resistances by Addition

Parallel resistors do NOT add up. Use 1/R_total = 1/R1 + 1/R2. Two 100Ω resistors in parallel = 50Ω, not 200Ω. Beginners frequently make this mistake when calculating total circuit resistance.

⚠️

Assuming LEDs Can Share a Resistor in Parallel

LEDs have slightly different forward voltages. In parallel with one shared resistor, the LED with the lowest V_F conducts most current and burns out first. Always give each LED its own series resistor.

⚠️

Shorting Out Components

A wire placed directly across a component creates a short circuit (0Ω path), bypassing it entirely. Current takes the path of least resistance — the wire — leaving the component with no voltage across it.

⚠️

Forgetting That Parallel Lowers Resistance

Adding more resistors in parallel always reduces total resistance and increases total current draw. Beginners sometimes add parallel branches thinking it limits current — it does the opposite.

Mixed Series-Parallel Circuits

Real circuits often combine both. To analyse them, simplify step by step: reduce parallel groups to their equivalent resistance first, then handle the resulting series circuit. Work from the innermost combination outward.

Example: R1 = 100Ω in series with the parallel combination of R2 = 200Ω and R3 = 200Ω. Parallel combination = (200×200)/(200+200) = 100Ω. Total = 100 + 100 = 200Ω.

Frequently Asked Questions

What is the rule for resistors in series?
In series, resistances add directly: R_total = R1 + R2 + R3. The total resistance is always greater than any individual resistor. Current is the same through all components.
What is the rule for resistors in parallel?
In parallel, 1/R_total = 1/R1 + 1/R2 + 1/R3. The total resistance is less than the smallest individual resistor. Voltage is the same across all branches.
Why is parallel wiring used in homes?
Parallel wiring means each outlet receives the full supply voltage regardless of how many other outlets are being used. In series, adding more devices would reduce the voltage available to each one.
Keep Going
Ready to simulate this yourself?
Open the free simulator — no account, no download needed.
⚡ Open Simulator →
📍 Step 4 of the beginner path
Continue Learning →
Next up: Voltage Dividers
Next: Voltage Dividers →

Related Guides

← Back to All Guides