🔗 Series & Parallel Resistor Calculator

Last updated: December 12, 2025

Series & Parallel Resistor Calculator

Add resistor groups — choose Series or Parallel per group — and get total resistance with step-by-step breakdown.

How to Calculate Total Resistance in Series and Parallel Circuits

Resistors are the most fundamental passive components in electronics. Whether you're designing a voltage divider, a current limiter, an LED driver, or a complex filter network, you'll constantly need to figure out what a combination of resistors adds up to. The problem is that resistors behave differently depending on how they're connected — and real circuits almost always use a mix of both series and parallel arrangements.

This guide walks you through the exact mathematics, gives you a systematic approach to mixed networks, and explains the physical reasoning behind both formulas so the numbers actually make sense to you.

The Two Fundamental Connection Types

Before touching mixed networks, you need a firm grip on the two pure cases.

Series connection means resistors are chained end-to-end, so the same current flows through every resistor in the chain. Because each resistor creates a voltage drop proportional to its resistance (Ohm's Law: V = IR), the total voltage drop is the sum of the individual drops. This gives the series resistance formula:

R_total = R1 + R2 + R3 + ...

Simple addition. A 100 Ω and a 220 Ω resistor in series give you 320 Ω — no tricks involved. The total is always larger than any individual resistor.

Parallel connection means all resistors share the same two nodes (the same voltage across each), but current splits among them. The total current drawn from the source is the sum of currents through each branch. Working this out with Ohm's Law leads to the reciprocal formula:

1/R_total = 1/R1 + 1/R2 + 1/R3 + ...

Or equivalently: R_total = 1 / (1/R1 + 1/R2 + 1/R3 + ...)

For two resistors only, there's a handy shortcut — "product over sum": R_total = (R1 × R2) / (R1 + R2). Two 100 Ω resistors in parallel give 50 Ω. Two unequal resistors — say 100 Ω and 200 Ω — give (100 × 200)/(100 + 200) = 20000/300 ≈ 66.67 Ω. The total is always smaller than the smallest resistor in the group.

Why Parallel Resistance Is Always Smaller

This trips up beginners constantly. Intuitively: when you add another path for current to flow, you're reducing opposition, not increasing it. Think of it as adding more lanes to a highway. Each new lane (resistor in parallel) makes it easier for current (traffic) to get through, so the total "bottleneck" gets smaller. The more parallel resistors you add, the lower the equivalent resistance becomes — approaching zero as you add more and more paths.

Tackling Mixed Series-Parallel Networks

Real-world circuits combine both. The strategy is always the same: simplify from the inside out.

Step 1: Identify independent groups. Look at your schematic and find clusters of resistors that are purely series or purely parallel. These become your "groups."

Step 2: Solve each group separately. Apply the appropriate formula (series addition or parallel reciprocal) to get a single equivalent resistance for each group.

Step 3: Combine the group results. Once each group is reduced to one equivalent value, those equivalents are connected in series (they share the same current path through the overall circuit). Add them all up for the final total.

A Worked Example

Suppose your circuit has three resistors arranged as follows: R1 = 100 Ω and R2 = 200 Ω are in parallel with each other, and R3 = 150 Ω is connected in series with that parallel combination.

Step 1 — Solve the parallel group (R1 ∥ R2):

1/R_parallel = 1/100 + 1/200 = 0.01 + 0.005 = 0.015

R_parallel = 1/0.015 ≈ 66.67 Ω

Step 2 — Add R3 in series:

R_total = R_parallel + R3 = 66.67 + 150 = 216.67 Ω

That's it. The calculator above does all of this for you, with every intermediate step shown — which is invaluable for checking your own hand calculations or understanding where a particular value came from.

Unit Conversions: Ω, kΩ, MΩ

Resistor values span an enormous range — from fractions of an ohm (shunt resistors for current sensing) up to tens of megaohms (high-impedance input bias resistors in op-amp circuits). When entering values, keep everything in the same unit or convert first:

  • 1 kΩ = 1,000 Ω
  • 1 MΩ = 1,000,000 Ω
  • 1 GΩ = 1,000,000,000 Ω

To use this calculator with a 4.7 kΩ resistor, enter 4700. For 2.2 MΩ, enter 2200000. The result is automatically displayed in the most readable unit (Ω, kΩ, or MΩ depending on magnitude).

Reading Standard Resistor Color Codes

Before you can calculate combinations, you need to know each resistor's value. The colored bands on through-hole resistors encode this. For a 4-band resistor: the first two bands are digits, the third is a multiplier (number of zeros), and the fourth is tolerance. Red-Red-Brown-Gold = 2-2-×10-±5% = 220 Ω ±5%. Five-band resistors add a third significant digit. If you're working with SMD components, the numeric codes (e.g., "472" = 4,700 Ω) or E-series designations tell you the value directly.

Practical Applications

LED current limiting: A single series resistor limits current through an LED. If you want to run two LEDs in parallel from one resistor, you first combine the LED forward voltages (which are equal if matched), then size the resistor for the doubled current. Mismatched LEDs should each get their own resistor in series before connecting in parallel.

Pull-up/pull-down networks: Microcontroller GPIO pins often use 10 kΩ pull-up or pull-down resistors. If two pull-ups connect to the same node (sometimes seen in I²C circuits with multiple masters), they appear in parallel — giving 5 kΩ effective pull-up, which affects rise time on the bus.

Voltage dividers: The classic two-resistor voltage divider uses series resistors. Output voltage = Vin × R2 / (R1 + R2). If you add a load to the output, it appears in parallel with R2, changing the effective resistance and shifting your output voltage — a critical consideration in real circuit design.

Attenuator pads: RF engineers build T-pads and Pi-pads from three precisely calculated resistors, combining series and shunt (parallel) elements to achieve a specific impedance match and signal attenuation.

Common Mistakes to Avoid

The most frequent error is forgetting to convert units — mixing kΩ and Ω in the same formula and getting an answer off by a factor of 1,000. Always standardize to ohms before calculating, then convert the result at the end.

Another trap: assuming that any two resistors connected at one end are automatically in parallel. They're only truly in parallel if both ends are connected to the same nodes, meaning the same voltage appears across each. If one end connects to different points in the circuit, they're not in a simple parallel relationship and you need a more advanced analysis method (Kirchhoff's laws or node analysis).

Finally, watch out for tolerance stacking in series circuits. If you have five ±5% resistors in series, the worst-case total can be off by up to 5% from nominal — not catastrophic for most analog work, but meaningful in precision applications like sensor signal conditioning.

When to Use This Calculator

Use this tool any time you need to quickly verify a resistor combination during schematic design, prototype a voltage or current divider and want to try different value combinations, cross-check hand calculations before committing to a PCB layout, or teach yourself how series and parallel resistance formulas play out on real numbers. The step-by-step output makes it easy to audit every stage of the calculation, not just trust a black-box result.

FAQ

What is the formula for resistors in series?
For resistors in series, the total resistance is simply the sum of all individual resistances: R_total = R1 + R2 + R3 + ... This works because the same current flows through each resistor, so their voltage drops add up. The total is always greater than any single resistor in the group.
What is the formula for resistors in parallel?
For resistors in parallel, use the reciprocal formula: 1/R_total = 1/R1 + 1/R2 + 1/R3 + ... so R_total = 1 / (1/R1 + 1/R2 + ...). For exactly two resistors, the shortcut is R_total = (R1 × R2) / (R1 + R2). The total parallel resistance is always less than the smallest individual resistor.
How do I calculate a mixed series and parallel circuit?
Break the circuit into groups of purely series or purely parallel resistors. Solve each group to get one equivalent resistance value. Then treat those equivalent values as resistors connected in series and add them together for the final total. The key is to simplify inner groups first, then work outward.
Why is parallel resistance always lower than the smallest resistor?
Because each additional parallel resistor adds another current path through the circuit. More paths mean less total opposition to current flow. Even adding a very large resistor in parallel reduces the total — it can never increase it. Mathematically, each extra 1/R term in the sum makes the denominator larger, giving a smaller result.
Can I enter values in kilohms (kΩ) or megaohms (MΩ)?
The calculator accepts values in ohms. To enter a value in kΩ, multiply by 1,000 — so 4.7 kΩ becomes 4700. For MΩ, multiply by 1,000,000 — so 2.2 MΩ becomes 2200000. The result is automatically formatted in the most readable unit (Ω, kΩ, MΩ, or GΩ).
What does 'groups in series' mean in this calculator?
Each group you add (whether it contains series or parallel resistors internally) is then connected in series with the other groups. So the final total resistance is calculated by adding the equivalent resistance of each group together. This matches how real mixed circuits are analyzed: solve inner groups first, then combine the results in series.