Resistance is the physical property of a material that opposes the flow of electrical current, converting electrical energy into heat. In any real circuit or installation, resistance dictates exactly how much current will flow for a given voltage, determines the voltage drop across wire runs, and sets the power dissipation limits of your components.

The Core Mechanics: What Resistance Actually Changes

At the bench, resistance is the friction your electrons face. When you apply a voltage across a conductor, the atomic lattice of the material scatters the moving electrons, generating thermal energy. This is governed by Ohm's Law (V = I × R), which tells us that for a fixed voltage, increasing resistance proportionally decreases current.

What people commonly confuse it with: Beginners often use 'resistance' and 'impedance' interchangeably. Resistance (R) is the opposition to direct current (DC) and results in real, irreversible power loss (heat). Impedance (Z) is the total opposition to alternating current (AC). Impedance includes resistance plus reactance—the temporary energy storage in inductors and capacitors. A pure carbon resistor has the same resistance and impedance, but an AC motor winding has very low DC resistance but high AC impedance due to its inductance.

Worked Numeric Example: LED Current Limiting

Let's calculate the exact resistor needed to safely power a standard 5mm red LED from a 5V DC source, like an Arduino Uno GPIO pin. Without a resistor, the LED's low internal resistance would allow it to draw maximum current, instantly burning out the diode and potentially damaging the microcontroller's output pin.

  • Supply Voltage (Vs): 5.0V
  • LED Forward Voltage (Vf): 2.0V (typical for red)
  • Target Current (I): 20mA (0.02A)

First, find the voltage that must be dropped across the resistor: Vr = Vs - Vf = 5.0V - 2.0V = 3.0V.

Next, apply Ohm's Law to find the resistance: R = Vr / I = 3.0V / 0.02A = 150 Ω. According to the E24 standard resistor series, 150 Ω is a readily available value, as noted in the All About Circuits textbook.

Finally, verify the power dissipation to select the right physical package. Power (P) = I² × R. P = (0.02)² × 150 = 0.06W. Since 0.06W is well below the 0.25W rating of a standard 1/4-watt through-hole resistor, this component will run cool and safely limit the circuit current.

Where You Meet This in Practice

In home wiring and jobsite installations, resistance isn't just a component you plug into a breadboard; it's a parasitic property of your wire runs and connections that dictates safety and code compliance.

Voltage Drop in Branch Circuits: Standard 12 AWG THHN copper wire has a resistance of 1.98 Ω per 1,000 feet at 75°C. If you run 100 feet of cable to a 15A receptacle, the round-trip distance for the current is 200 feet. The total wire resistance is 0.396 Ω. At a full 15A load, the voltage drop is V = 15A × 0.396 Ω = 5.94V. On a 120V circuit, that is a 4.95% drop. The National Electrical Code (NFPA) recommends keeping branch circuit voltage drop under 3% for efficiency, meaning you would need to step up to 10 AWG wire for this run.

Safety Warning: The Loose Connection Fire Hazard
Resistance is heavily dependent on surface contact area. A loose neutral pigtail in a subpanel with just 5 Ω of contact resistance carrying 10A will dissipate P = I²R = 100 × 5 = 500W of heat. This localized heating will melt the terminal block, degrade the wire insulation, and start an electrical fire. Always torque panel lugs to the manufacturer's specified inch-pound rating.

Material Resistivity and Wire Gauge Reference

The baseline resistance of a circuit is heavily dictated by the conductor material. Below is a reference table for the electrical resistivity of common metals at 20°C.

MaterialResistivity (Ω·m at 20°C)Common Application
Silver1.59 × 10-8High-end audio contacts, specialized RF switches
Copper1.68 × 10-8Standard home wiring (NM-B, THHN), PCB traces
Aluminum2.82 × 10-8Utility transmission lines, heavy feeder cables
Nichrome1.10 × 10-6Toaster heating elements, dummy loads

Frequently Asked Questions About Circuits and Resistance

Does adding more resistance in a circuit always reduce the total current?

No. In a series circuit, adding a resistor increases the total equivalent resistance, which reduces the overall current drawn from the source. However, in a parallel circuit, adding another resistor creates an additional path for current to flow. This actually decreases the total equivalent resistance of the network and increases the total current drawn from the power supply.

Why does my multimeter read 'OL' when measuring resistance on a live circuit?

'OL' stands for Over Limit. You should never measure resistance on an energized circuit. A multimeter measures resistance by injecting a tiny, known constant current from its internal battery and measuring the resulting voltage drop. If external voltage is present, it confuses the meter's internal logic, resulting in false readings or an 'OL' error. Worse, it can blow the meter's internal fuse or destroy the ADC. As Fluke Corporation emphasizes in their testing protocols, always de-energize the circuit and discharge any capacitors before switching your dial to the ohms (Ω) setting.

How does temperature affect resistance in copper wiring?

Copper has a positive temperature coefficient. As the conductor heats up due to ambient temperature or I²R loading, its atomic lattice vibrates more intensely, scattering electrons and increasing resistance. For every 1°C rise above 20°C, copper's resistance increases by approximately 0.393%. This is why the NEC requires ampacity derating for wires bundled in hot attics or packed tightly in conduit; the higher resistance generates more heat, creating a dangerous thermal runaway loop if the breaker isn't sized correctly.

What is the difference between resistance and continuity in a circuit?

Continuity is a qualitative, pass/fail check. When you use the continuity setting (the diode/sound icon), the meter simply checks if the resistance is below a specific threshold (usually between 10 and 40 Ω, depending on the model) and beeps if it is. Resistance is a precise, quantitative measurement in ohms. A long run of undersized wire might beep for continuity, but still possess 15 Ω of resistance—which would cause a massive, dangerous voltage drop under a 15A load. Always measure exact resistance when diagnosing voltage drop issues.