Lesson 5 of 15
Series Resistance
Resistors in Series
When resistors are connected end-to-end (in series), the same current flows through all of them. The total resistance is simply their sum:
Why?
Each resistor impedes the current. Placing two resistors in series is like adding a second narrow section to a pipe — the total obstruction doubles.
Voltage Divider
The voltage across each resistor is proportional to its resistance:
V_n = V_ ext{total} cdot rac{R_n}{R_ ext{total}}
This voltage divider principle is used everywhere — from sensor circuits to audio volume controls.
Examples
| Resistors (Ω) | R_total (Ω) |
|---|---|
| 10, 20, 30 | 60.0000 |
| 100, 200 | 300.0000 |
| 1, 1, 1, 1 | 4.0000 |
| 47, 33, 10 | 90.0000 |
Your Task
Implement series_resistance(resistances) taking a list of resistances and returning their total.
Pyodide loading...
Loading...
Click "Run" to execute your code.