Lesson 6 of 15
Parallel Resistance
Resistors in Parallel
When resistors are connected side-by-side (in parallel), they share the same voltage. The total resistance is always less than the smallest individual resistor:
rac{1}{R_ ext{total}} = rac{1}{R_1} + rac{1}{R_2} + rac{1}{R_3} + cdots
Why?
Each parallel path gives current another route through the circuit. Adding a parallel resistor is like opening another lane on a highway — total throughput increases, so effective resistance decreases.
For Two Resistors
A useful shorthand: product over sum
R_ ext{total} = rac{R_1 R_2}{R_1 + R_2}
Examples
| Resistors (Ω) | R_total (Ω) |
|---|---|
| 10, 10 | 5.0000 |
| 4, 6 | 2.4000 |
| 100, 100, 100 | 33.3333 |
| 1000, 1000 | 500.0000 |
Your Task
Implement parallel_resistance(resistances) taking a list and returning the combined parallel resistance.
Pyodide loading...
Loading...
Click "Run" to execute your code.