Combining resistors: series vs parallel
Standard resistors only come in fixed E-series steps, so it's common to need a value that simply doesn't exist as an off-the-shelf part — say, a project calls for roughly 15 kΩ but your bin only has 10 kΩ and 4.7 kΩ resistors. Rather than substituting the nearest available value and hoping the circuit tolerates the difference, combining two or more resistors you already have is often the more accurate fix.
In series, resistance simply adds: a 10 kΩ and a 4.7 kΩ resistor end-to-end give 14.7 kΩ — close enough to 15 kΩ for most non-critical applications. In parallel, the math is less intuitive because you're summing reciprocals: two 10 kΩ resistors in parallel give 5 kΩ, not 20 kΩ, since 1/R = 1/10k + 1/10k = 2/10k, so R = 5k. Parallel combining is especially useful for reaching values lower than any single part in your bin, or for approximating a value between two standard E-series steps.
| Combination | Connection | Result |
|---|---|---|
| 10 kΩ + 4.7 kΩ | Series | 14.7 kΩ |
| 10 kΩ + 10 kΩ | Parallel | 5 kΩ |
| 1 kΩ + 220 Ω | Series | 1.22 kΩ |
| 1 kΩ + 220 Ω | Parallel | ~180 Ω |
The "Series / Parallel" tab in the calculator above takes a list of resistor values — engineering notation like 4k7 or 2M2 works the same as typing 4700 or 2200000 — and returns the combined result for either connection instantly, so you don't need to work the reciprocal math by hand.
Sizing an LED resistor without frying the LED
This is the single most common reason a beginner's LED circuit fails: using one resistor value for every LED color without accounting for forward voltage. Different LED colors have meaningfully different forward voltages — a hypothetical example, red and yellow LEDs are typically lower (around 1.8–2.2V) while blue and white LEDs are typically higher (around 2.8–3.4V) — so a resistor sized correctly for a red LED will under-limit current for a blue LED wired the same way, pushing more current through it than intended.
Rounding the wrong direction is the second-most common version of this mistake. When the calculated resistor value falls between two standard E-series steps, always round up to the next available value, not down — a slightly dimmer LED is a cosmetic issue, while a resistor that's too small lets excess current through and shortens (or ends) the LED's life. If you're unsure of an LED's exact forward voltage, checking its datasheet is worth the extra minute versus guessing.
The dedicated LED Series Resistor Calculator (linked below) walks through this calculation directly and hands back a standard color code to look for, which avoids doing the arithmetic by hand each time.
The three mistakes that cause most "wrong value" bugs
Beyond LED sizing, a handful of reading mistakes account for most cases where a circuit's actual resistance doesn't match what was intended. None of these are exotic — they're the small errors that are easy to make once and repeat without noticing.
- Reading bands from the wrong end. Starting from whichever end faces you, instead of the end farthest from the tolerance band, swaps the digit order and can produce a wildly different value — misreading yellow-violet-red-gold backward as gold-red-violet-yellow doesn't correspond to any sensible resistor at all, which is often the giveaway that the direction was wrong.
- Confusing similar colors under poor lighting. Brown vs. red, and orange vs. yellow, are the two color pairs most often confused under warm indoor lighting or on faded/old stock. A resistor read as 220 Ω (red-red-brown) that's actually 100 Ω (brown-black-brown) is an easy mix-up with real consequences in an LED or current-limiting circuit.
- Misreading the multiplier band's power of ten. Off-by-one-decade errors — reading orange (×1000) as red (×100), for instance — produce a resistor ten times smaller or larger than intended, which is large enough to cause a circuit to draw far more current than expected or fail to function at all.
A quick way to catch any of these before soldering: enter the colors you've read into the calculator above and check that the resulting value and tolerance make sense for the circuit you're building, rather than assuming the first read was correct.