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:

Rexttotal=R1+R2+R3+cdotsR_ ext{total} = R_1 + R_2 + R_3 + cdots

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, 3060.0000
100, 200300.0000
1, 1, 1, 14.0000
47, 33, 1090.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.