In electricity, R (or lowercase r) represents resistance, the physical property of a material or component that opposes the flow of direct electric current, measured in ohms (Ω). When you see an uppercase 'R' on a schematic, it is calling out a specific physical resistor component (like R1 or R2), but when you see it in a formula like Ohm's Law (V = I × R), it represents the total opposition to current flow in that path. Lowercase 'r' is frequently used by electrical engineers to denote the internal resistance of a power source, like a battery or generator, which behaves very differently than the intentional resistance you add to a circuit to control it.
What R Actually Changes in a Real Circuit
Resistance dictates two fundamental realities in any installation or breadboard build: how much current flows for a given voltage, and how much electrical energy is converted into waste heat. If voltage is the pressure pushing electrons, resistance is the friction slowing them down. Think of water flowing through a pipe packed with gravel; the gravel is the resistance, restricting the flow rate no matter how hard you pump.
According to Electronics Tutorials, the relationship is strictly linear in DC circuits. If you double the resistance, you halve the current. But the thermal impact is where makers and electricians get burned—literally. Power dissipation follows the formula P = I²R.
This is why 'R' is the most critical variable when sizing wires for a solar array or picking a current-limiting resistor for a high-power LED. You aren't just managing electron flow; you are managing thermal limits.
The Worked Example: Calculating Wire Resistance (r) and Voltage Drop
Let's look at a real-world scenario where the resistance of the wire itself (often denoted as lowercase r in voltage drop calculations) ruins a project. Suppose you are wiring a 12V LED strip light under kitchen cabinets. The strip draws 5 amps, and the power supply is 20 feet away. You decide to use 18 AWG copper speaker wire because it's cheap and flexible.
According to Engineering ToolBox wire data and NEC Chapter 9 Table 8, 18 AWG solid copper wire has a resistance of roughly 6.385 ohms per 1,000 feet at 20°C.
- Calculate Total Wire Length: Current must travel to the load and return. A 20-foot physical run means 40 feet of total wire.
- Calculate Wire Resistance (r): (40 ft / 1000 ft) × 6.385 Ω = 0.2554 Ω.
- Calculate Voltage Drop: V = I × r. 5A × 0.2554 Ω = 1.277V drop.
- Calculate Power Lost as Heat: P = I²r. 25A² × 0.2554 Ω = 6.38 watts lost in the wire.
Your 12V LED strip is now only receiving 10.72V. Depending on the strip's internal drivers, it might flicker, run dim, or pull more current to compensate for the low voltage, creating a thermal runaway loop. Furthermore, 6.38 watts of heat trapped inside a thin PVC insulation jacket will make that 18 AWG wire uncomfortably warm to the touch. As Fluke notes in their voltage drop guidelines, keeping drop under 3% (0.36V for a 12V system) is critical for sensitive DC electronics.
Where You Meet This in Practice
You interact with R in three distinct ways on the workbench and in the panel:
1. Intentional Current Limiting
Adding physical resistors to protect sensitive semiconductors. A microcontroller GPIO pin can only source 20mA. If you connect a 5V pin directly to an LED with a forward voltage of 2V, the lack of R will cause the LED to draw infinite current until the silicon melts. You insert a resistor to choke the flow.
2. Parasitic Wire and Trace Resistance
Every copper trace on a PCB and every AWG wire in a wall has inherent 'r'. In high-current DC systems like 48V LiFePO4 battery banks, even 0.01 ohms of parasitic resistance at a loose busbar connection will generate massive heat at 100A (P = 100² × 0.01 = 100W of heat at a single lug).
3. Internal Source Resistance (Lowercase r)
Batteries are not perfect voltage sources. A standard 12V lead-acid car battery has an internal 'r' of about 0.015 Ω. When you crank the starter motor and pull 200A, the internal voltage drop is 200A × 0.015 Ω = 3V. Your 12V battery temporarily acts like a 9V battery while cranking. LiFePO4 cells have much lower internal resistance (often <0.005 Ω), which is why they sag far less under heavy inverter loads.
Decision Tree: Picking the Right Resistor or Wire Gauge
Use this decision path to terminate your design choices with exact part numbers and sizes. Do not guess; calculate.
| Scenario | Condition / Calculation | Concrete Pick / Action |
|---|---|---|
| LED on 5V GPIO | Standard 5mm red LED (Vf = 2.0V, If = 20mA). R = (5V - 2V) / 0.02A = 150Ω. Power = 0.02² × 150 = 0.06W. | Pick: 150Ω or 220Ω 1/4W Metal Film Resistor (e.g., Yageo CFR-25JB-52-220R). Never use 1/8W for breadboarding; the leads are too fragile. |
| 12V, 5A DC Run (20ft) | Target <3% voltage drop (<0.36V). Max allowed R = 0.36V / 5A = 0.072Ω total loop. 18 AWG fails (0.255Ω). | Pick: 12 AWG Copper Wire (THHN or stranded). Loop resistance drops to ~0.064Ω, yielding a safe 0.32V drop. |
| High-Power Snubber / Bleeder | Discharging a 400V DC capacitor bank. Needs high surge tolerance, not just steady-state wattage. | Pick: Wirewound or Ceramic Composition Resistor (e.g., Ohmite 160 series). Avoid standard carbon film; the surge will crack the casing. |
| Battery Pack Balancing | Passive BMS bleeding 50mA off a 3.6V Li-ion cell to match voltages. R = 3.6V / 0.05A = 72Ω. P = 0.18W. | Pick: 75Ω 1/2W Surface Mount (SMD) or Through-hole resistor. 1/4W is too close to the 0.18W thermal limit for enclosed BMS boxes. |
Frequently Asked Questions About R
Does the resistance of a wire change when it gets hot?
Yes. Copper has a positive temperature coefficient (PTC). For every 1°C increase in temperature, the resistance of copper increases by roughly 0.4%. If your 18 AWG wire heats up from 20°C to 60°C inside a hot attic, its resistance increases by about 16%, which in turn increases your voltage drop and creates a compounding thermal problem. Always size wire for the worst-case ambient temperature.
Can I measure the internal 'r' of a battery with my multimeter?
Not directly. A standard multimeter applies a tiny test current to measure resistance, which will confuse the electrochemical potential of a live battery and likely blow the meter's internal fuse. To measure internal resistance, you must measure the battery's open-circuit voltage, apply a known heavy load (like a power resistor), measure the voltage under load, and use Ohm's law to calculate the 'missing' voltage divided by the load current.
Why do schematics use 'R' but PCB silkscreens sometimes use 'RN' or 'RK'?
'R' is the universal IEEE standard designator for a resistor. 'RN' typically denotes a Resistor Network (multiple resistors in a single SIP or DIP package), while 'RK' might be used by specific CAD software to denote a resistor array or a specialized thermistor. For 99% of hobbyist and commercial DC designs, R1, R2, R3 is the standard convention.
Understanding R is the bridge between drawing a theoretical circuit and building one that doesn't melt. Always calculate the worst-case I²R heat dissipation before soldering, and default to a component rated for at least double your calculated wattage to ensure long-term reliability.






