The equivalent resistance formula calculates the single resistance value that can replace a complex resistor network without altering the total current drawn from the source or the voltage dropped across the network boundaries. For purely series circuits, the formula is Req = R1 + R2 + ... + Rn. For purely parallel circuits, the reciprocal formula applies: 1/Req = 1/R1 + 1/R2 + ... + 1/Rn. Below is the complete derivation framework, boundary conditions, and step-by-step worked examples with strict unit tracking.

The Core Equivalent Resistance Formula and Symbol Definitions

Resistor networks are reduced by identifying nodes that share the exact same current path (series) or nodes that share the exact same voltage potential (parallel). The generalized mathematical models for these topologies are defined below.

Series Topology:
Req = Σ Rn = R1 + R2 + R3 + ... + Rn

Parallel Topology:
1/Req = Σ (1/Rn) = (1/R1) + (1/R2) + (1/R3) + ... + (1/Rn)
Alternatively, using conductance (G): Geq = G1 + G2 + ... + Gn

Symbol Definitions for Equivalent Resistance Calculations
Symbol Parameter Standard Unit Physical Meaning
Req Equivalent Resistance Ohms (Ω) The single scalar resistance that models the entire network's I-V relationship at the input terminals.
Rn Individual Resistance Ohms (Ω) The resistance of the n-th component in the network.
Geq Equivalent Conductance Siemens (S) The reciprocal of equivalent resistance (1/Req); useful for parallel nodal analysis.
Σ Summation N/A Mathematical operator denoting the sum of all elements from n=1 to the total number of components.

Boundary Conditions: When the Formula Applies and Fails

The standard equivalent resistance formula is a DC, steady-state model. Applying it blindly to dynamic or high-frequency circuits yields invalid results. Review these constraints before reducing a network.

Assumption Checklist:
  • Linearity: Components must obey Ohm's Law linearly. The formula fails for varistors (MOVs), thermistors (NTC/PTC), or incandescent bulbs where resistance shifts with applied voltage or temperature.
  • Frequency: Valid only for DC or low-frequency AC (typically < 1 kHz). At RF frequencies, parasitic lead inductance and inter-winding capacitance dominate, requiring impedance (Z) calculations instead of scalar resistance (R).
  • Thermal Stability: Assumes ambient temperature remains constant and self-heating (I²R losses) does not drift the resistor's value beyond its tolerance band.

Unit Mistakes That Break the Math

The most common calculation failure occurs in parallel networks when mixing prefixes or forgetting the final reciprocal step. If you calculate 1/Req = 0.002 + 0.005 = 0.007, that answer is in Siemens (conductance), not Ohms. You must invert the sum (1 / 0.007 S = 142.8 Ω) to get resistance. Additionally, never add kilohms (kΩ) directly to ohms (Ω) without converting both to a base unit first. 10 kΩ + 500 Ω is 10,500 Ω, not 510 Ω.

Realistic Answer Magnitudes

Use these physical laws as a sanity check for your final number:

  • Series Check: Req must be greater than the largest individual resistor in the string.
  • Parallel Check: Req must be smaller than the smallest individual resistor in the bank. If your parallel calculation yields a number larger than your smallest branch, you missed a reciprocal inversion.
  • Hobbyist/PCB Range: Typical control and signal circuits operate between 10 Ω and 1 MΩ. If your calculation yields 0.0004 Ω or 85 GΩ, you likely dropped a decimal point or misread a schematic node.

Rearranged Forms for Reverse Engineering

In practical PCB design and prototyping, you rarely calculate Req from known parts; instead, you know the target Req and need to find a missing component value. Use these algebraic rearrangements to solve for an unknown resistor (Rx).

1. Solving for an unknown series resistor:
Rx = Req(target) - Rknown_total

2. Solving for an unknown parallel resistor (Two-Resistor Product-over-Sum):
When dealing with exactly two resistors in parallel, the base formula rearranges to the product-over-sum rule:
Req = (R1 × R2) / (R1 + R2)
To find R2 when Req and R1 are known:
R2 = (R1 × Req) / (R1 - Req)

3. Solving for an unknown parallel resistor (N-Resistor Conductance):
1/Rx = (1/Req(target)) - Σ(1/Rknown)
Rx = 1 / [ (1/Req(target)) - Σ(1/Rknown) ]

Worked Example 1: Mixed Network for an LED Array

Scenario: You are designing a 12V DC illumination circuit. The load consists of three identical parallel strings. Each string contains two resistors in series to limit current and drop voltage for a high-power LED. String A has R1 = 100 Ω and R2 = 220 Ω. Calculate the total equivalent resistance of the entire three-string array.

Step 1: Reduce the series string.
Rstring = R1 + R2
Rstring = 100 [Ω] + 220 [Ω]
Rstring = 320 [Ω]

Step 2: Reduce the parallel array.
Because all three strings are identical, we can use the shortcut for N identical parallel resistors: Req = Rstring / N.
Req = 320 [Ω] / 3
Req = 106.67 [Ω]

Step 3: Sanity Check.
The parallel equivalent (106.67 Ω) is strictly less than the smallest parallel branch (320 Ω). The magnitude is realistic for a 12V LED driver (drawing roughly 112 mA total). The final equivalent resistance is 106.67 Ω.

Worked Example 2: Finding a Missing Load in a Voltage Divider

Scenario: You have a microcontroller analog input pin protected by a 10.0 kΩ pull-down resistor (R1). When you connect the sensor's output wire, the multimeter reads the equivalent parallel resistance of the pull-down and the sensor's internal output impedance (Rx) as 8.5 kΩ. Find the sensor's output impedance.

Step 1: Identify the topology and knowns.
Topology: Parallel.
R1 = 10,000 [Ω]
Req = 8,500 [Ω]
Target: Rx

Step 2: Apply the rearranged two-resistor parallel formula.
Rx = (R1 × Req) / (R1 - Req)

Step 3: Substitute and track units.
Rx = (10,000 [Ω] × 8,500 [Ω]) / (10,000 [Ω] - 8,500 [Ω])
Rx = (85,000,000 [Ω²]) / (1,500 [Ω])
Rx = 56,666.67 [Ω]

Step 4: Convert to standard engineering notation.
Rx ≈ 56.67 [kΩ].
The sensor's internal output impedance is 56.67 kΩ. (Note: This is a relatively high output impedance for a sensor, indicating you may need an op-amp buffer to prevent ADC loading errors).

Decision Path: Selecting the Physical Resistor for Your Target Req

Calculating the math is only half the job; you must map the theoretical Req to a physical, purchasable component. Use this decision matrix to terminate your design process with a specific part number.

Component Selection Decision Tree
Condition / Constraint Decision Action
Is target Req < 1 Ω or > 10 MΩ? Standard thin-film SMD resistors are unreliable here. Use current-sense shunts (for low R) or high-voltage thick-film/glass-passivated resistors (for high R).
Does target Req fall exactly on an E24 series value (e.g., 10, 22, 47)? Select a standard 5% or 1% thick-film resistor. Cost-optimized for general pull-ups/pull-downs.
Does target Req require an E96 series value (e.g., 324, 14.7k) for precision feedback loops? Select a 1% or 0.1% thin-film resistor to minimize thermal drift and initial tolerance errors.
Is calculated power dissipation (I² × Req) > 0.05W in an 0603 package? Upsize to an 0805 or 1206 package to prevent thermal pad saturation and solder joint fatigue.
Final Termination Scenario: Target Req = 324 Ω, 1% tolerance required, power < 0.05W, SMD 0603 footprint. Select the Yageo RC0603FR-07324RL. (0603 package, 1%, 324Ω, 1/10W, E96 series thin-film equivalent).

For deeper verification of parallel networks and complex nodal reductions, reference the Georgia State University HyperPhysics parallel resistance modules. When validating unit conversions and SI prefix tracking in your bench notes, consult the NIST Guide to the SI. Finally, for interactive schematic verification before breadboarding, the All About Circuits Resistor Calculator provides a fast sanity check against your manual algebra.