1% & 2% (including 0.5%, 0.25%, 0.1% 0.05%,)
Click HERE for 5% resistors
Surface Mount identification
**<!-- hide script from nonscriptable browsers // create array listing all the multiplier values var multiplier = new Array() multiplier\[0\] = 0 multiplier\[1\] = 1 multiplier\[2\] = 2 multiplier\[3\] = 3 multiplier\[4\] = 4 multiplier\[5\] = 5 multiplier\[6\] = 6 multiplier\[7\] = 7 multiplier\[8\] = 8 multiplier\[9\] = 9 multiplier\[10\] = -1 multiplier\[11\] = -2 // create array listing all tolerance values var tolerance = new Array() tolerance\[0\] = "+/- 1%" tolerance\[1\] = "+/- 2%" tolerance\[2\] = "+/- 0.5%" tolerance\[3\] = "+/- 0.25%" tolerance\[4\] = "+/- 0.1%" tolerance\[5\] = "+/- 0.05%" // format large values into kilo and meg function format(ohmage) { if (ohmage >= 10e6) { ohmage /= 10e5 return "" + ohmage + " M" } else { if (ohmage >= 10e3) { ohmage /= 10e2 return "" + ohmage + " k" } else { return "" + ohmage + " R" } } } // calculate resistance and tolerance values function calcOhms() { var form = document.forms\[0\] var d1 = form.tensSelect.selectedIndex var d2 = form.onesSelect.selectedIndex var d3 = form.tenthsSelect.selectedIndex var m = form.multiplierSelect.selectedIndex var t = form.toleranceSelect.selectedIndex var ohmage = (d1 * 100) + (d2 * 10) + d3 ohmage = eval("" + ohmage + "e" + multiplier\[m\]) ohmage = format(ohmage) var tol = tolerance\[t\] document.forms\[1\].result.value = ohmage + " " + tol } // pre-load all color images into image cache var colorList = "Black,Blue,Brown,Gold,Grey,Green,None,Orange,Red,Silver,Violet,White,Yellow,." var colorArray = colorList.split(",") var imageDB = new Array() for (i = 0; i < colorArray.length; i++) { imageDB\[colorArray\[i\]\] = new Image(21,182) imageDB\[colorArray\[i\]\].src = "r" + colorArray\[i\] + ".gif" } function setTens(choice) { var tensColor = choice.options\[choice.selectedIndex\].text document.tens.src = imageDB\[tensColor\].src calcOhms() } function setOnes(choice) { var onesColor = choice.options\[choice.selectedIndex\].text document.ones.src = imageDB\[onesColor\].src calcOhms() } function setTenths(choice) { var tenthsColor = choice.options\[choice.selectedIndex\].text document.tenths.src = imageDB\[tenthsColor\].src calcOhms() } function setMult(choice) { var multColor = choice.options\[choice.selectedIndex\].text document.mult.src = imageDB\[multColor\].src calcOhms() } function setTol(choice) { var tolColor = choice.options\[choice.selectedIndex\].text document.tol.src = imageDB\[tolColor\].src calcOhms() } function showIntro() { window.open("/articles/resistors-made-easy/1-percent","","WIDTH=400,HEIGHT=260") } // end script hiding -->
<!-- //TODO FIXME: Input resistance value --> . Brown Red Orange Yellow Green Blue Violet Grey White Black Brown Red Orange Yellow Green Blue Violet Grey White Black Brown Red Orange Yellow Green Blue Violet Grey White Black Brown Red Orange Yellow Green Blue Violet Grey White Gold Silver Brown Red Green Blue Violet Grey var form = document.forms\[0\] var tensDigit = form.tensSelect.selectedIndex var tensColor = form.tensSelect.options\[tensDigit\].text var onesDigit = form.onesSelect.selectedIndex var onesColor = form.onesSelect.options\[onesDigit\].text var tenthsDigit = form.tenthsSelect.selectedIndex var tenthsColor = form.tenthsSelect.options\[tenthsDigit\].text var multDigit = form.multiplierSelect.selectedIndex var multColor = form.multiplierSelect.options\[multDigit\].text var tolDigit = form.toleranceSelect.selectedIndex var tolColor = form.toleranceSelect.options\[tolDigit\].text var table ="<TABLE BORDER=2>" table += "<TR><TH ALIGN=middle>Resistance Value:</TH><TD ALIGN='middle'><FORM><INPUT TYPE='text' NAME='result' SIZE=20></FORM>" table +="</TD></TR><TR><TD COLSPAN=2>" table +="<IMG SRC='resleft.gif' WIDTH=127 HEIGHT=182>" + "<IMG SRC='r" + tensColor + ".gif' NAME='tens' WIDTH=21 HEIGHT=182>"+ "<IMG SRC='r" + onesColor + ".gif' NAME='ones' WIDTH=21 HEIGHT=182>"+ "<IMG SRC='r" + tenthsColor + ".gif' NAME='tenths' WIDTH=21 HEIGHT=182>"+ "<IMG SRC='r" + multColor + ".gif' NAME='mult' WIDTH=21 HEIGHT=182>"+ "<IMG SRC='spacer.gif' WIDTH=20 HEIGHT=182>"+ "<IMG SRC='r" + tolColor + ".gif' NAME='tol' WIDTH=21 HEIGHT=182>"+ "<IMG SRC='resright.gif' WIDTH=127 HEIGHT=182>" table += "</TD></TR></TABLE>" document.write(table)
5-band resistors are easy to read if you remember two simple points. The first three bands provide the digits in the answer and the 4th band supplies the number of zero’s.
5-band resistors are also made in “Standard Values” but will have different colours - and will be confusing if you are just starting out. For instance, a 47k 5% resistor with 4-bands will be: yellow-purple-orange-gold. For a 47k 1% resistor the colours will be yellow-purple-black-red-brown. The brown colour-band represents 1%.
The first two colour-bands for a STANDARD VALUE in 1% or 5% will be the SAME. These two bands provide the digits in the answer.
It’s the 3rd band for a 5% resistor that is expanded into two bands in a 1% resistor. But it’s easy to follow.
For a standard value, the 3rd band in a 1% resistor is BLACK. This represents a ZERO in the answer. (For 5-band resistors BLACK represents a ZERO when in the third band. This is different to 4-band resistors where black represents the word OHMS! If the third band is BROWN, the answer will be 1).
So the 4th band has to represent one-less ZERO and is one colour UP THE COLOUR CHART! In other words the 3rd and 4th bands (combined) on a 1% resistor produces the same number of zero’s as the 3rd band on a 5% resistor!
Resistors come in a range of values and the two most common are the E12 and E24 series. The E12 series comes in twelve values for each decade. The E24 series comes in twenty four values per decade.
E12 series - 10, 12, 15, 18, 22, 27, 33, 39, 47, 56, 68, 82
E24 series - 10, 11, 12, 13, 15, 16, 18, 20, 22, 24, 27, 30, 33, 36, 39, 43, 47, 51, 56, 62, 68, 75, 82, 91
Here is the complete list of 1% 1/4watt resistors from:
CIRCUIT SPECIALISTS. The following list covers 10 ohms (10R) to 1M.
To buy 1% resistors from Circuit Specialists, click: HERE.
10R | 121R | 806R | 3k83 | 7k15 | 14k7 | 39k2 | 121k |
12R1 | 150R | 825R | 3k92 | 7k5 | 15k | 40k2 | 147k |
15R | 182R | 909R | 4k02 | 7k87 | 15k8 | 44k2 | 150k |
18R2 | 200R | 1k0 | 4k22 | 71k5 | 16k9 | 46k4 | 182k |
22R1 | 221R | 1k21 | 4k64 | 8k06 | 17k4 | 47k | 200k |
27R4 | 240R | 1k5 | 4k75 | 8k25 | 17k8 | 47k5 | 212k |
30R1 | 249R | 1k82 | 4k7 | 8k45 | 18k2 | 49k9 | 221k |
33R2 | 274R | 2k | 4k87 | 8k66 | 20k | 51k1 | 226k |
36R5 | 301R | 2k21 | 4k99 | 8k87 | 22k1 | 53k6 | 249k |
39R2 | 332R | 2k2 | 5k11 | 9k09 | 22k6 | 56k2 | 274k |
47R5 | 348R | 2k43 | 5k23 | 9k31 | 23k7 | 61k9 | 301k |
49R9 | 392R | 2k49 | 5k36 | 9k53 | 24k9 | 68k1 | 332k |
51R1 | 402R | 2k67 | 5k49 | 9k76 | 27k4 | 69k8 | 357k |
56R2 | 475R | 2k74 | 5k62 | 10k | 29k4 | 75k0 | 392k |
68R1 | 499R | 3k01 | 5k76 | 11k | 30k1 | 82k5 | 475k |
75R | 565R | 3k32 | 5k9 | 12k | 33k2 | 90k | 487k |
82R5 | 604R | 3k48 | 6k04 | 12k1 | 34k8 | 90k9 | 499k |
90R9 | 681R | 3k57 | 6k19 | 12k4 | 36k5 | 95k3 | 562k |
100R | 750R | 3k74 | 6k81 | 13k | 38k3 | 100k | 604k |
1M |
Here is the list of 1% resistors from other suppliers (such as Farnell):
1R0 | 13R | 68R | 360R | 1k8 | 9k1 | 47k | 240k |
1R2 | 15R | 75R | 390R | 2k0 | 10k | 51k | 270k |
1R5 | 16R | 82R | 430R | 2k2 | 11k | 56k | 300k |
2R2 | 18R | 91R | 470R | 2k4 | 12k | 62k | 330k |
2R7 | 20R | 100R | 510R | 2k7 | 13k | 68k | 360k |
3R3 | 22R | 110R | 560R | 3k | 15k | 75k | 390k |
3R9 | 24R | 120R | 620R | 3k3 | 16k | 82k | 430k |
4R7 | 27R | 130R | 680R | 3k6 | 18k | 91k | 470k |
5R6 | 30R | 150R | 750R | 3k9 | 20k | 100k | 510k |
6R2 | 33R | 160R | 820R | 4k3 | 22k | 110k | 560k |
6R8 | 36R | 180R | 910R | 4k7 | 24k | 120k | 620k |
7R5 | 39R | 200R | 1k | 5k1 | 27k | 130k | 680k |
8R2 | 43R | 220R | 1k1 | 5k6 | 30k | 150k | 750k |
9R1 | 47R | 240R | 1k2 | 6k2 | 33k | 160k | 820k |
10R | 51R | 270R | 1k3 | 6k8 | 36k | 180k | 910k |
11R | 56R | 300R | 1k5 | 7k5 | 39k | 200k | 1M |
12R | 62R | 330R | 1k6 | 8k2 | 43k | 220k |
Quick Links
Legal Stuff
Social Media