In physics, electrical resistance is the measure of a material's opposition to the flow of electric current, converting electrical energy into heat. It is the fundamental property that dictates exactly how much current will flow for a given applied voltage, and it determines how much power is lost as thermal energy in your conductors and components. Whether you are sizing wire for a 12V solar array or picking a pull-up resistor for an ESP32 I2C bus, understanding the definition of resistance physics is the baseline for every circuit decision you will make.
The Core Definition of Resistance in Physics
At the microscopic level, resistance occurs because moving electrons collide with the atomic lattice of the conductor. Think of it like water being forced through a pipe that is heavily clogged with internal scale; the water (current) still flows, but the friction (resistance) requires higher pressure (voltage) to maintain the flow, and the friction generates heat.
The physical resistance of a uniform conductor is defined by the equation:
Where R is resistance in Ohms (Ω), ρ (rho) is the material's resistivity, L is length, and A is cross-sectional area.
For standard annealed copper at 20°C, the resistivity (ρ) is exactly 1.68 × 10⁻⁸ Ω·m. This means resistance scales linearly with length (double the wire, double the resistance) and inversely with cross-sectional area (double the wire thickness, halve the resistance). This physical reality is why we use thick 4/0 AWG copper for 200A service entrances and hair-thin 30 AWG wire for low-current signal traces.
The Math: A Worked Numeric Example
Let's look at what resistance changes in a real installation. Suppose you are wiring a 12V nominal LED strip that draws 5 Amps, and you decide to use 18 AWG copper wire for a 50-foot run from the power supply to the strip.
Because current must travel to the load and return, your total wire length is 100 feet. According to NEC Chapter 9, Table 8, 18 AWG solid copper wire has a resistance of 6.385 Ω per 1,000 feet (or 0.006385 Ω/ft) at 75°C.
- Total Wire Resistance (R): 100 ft × 0.006385 Ω/ft = 0.6385 Ω
- Voltage Drop (V = I × R): 5A × 0.6385 Ω = 3.19V
- Voltage at the Load: 12.0V - 3.19V = 8.81V
Where You Meet Resistance in Practice
You interact with resistance in four primary ways on the bench and in the field:
- Current Limiting: Dropping excess voltage to protect sensitive components, like placing a resistor in series with an LED to prevent it from drawing infinite current and burning out.
- Intentional Heating: Utilizing high-resistance alloys like Nichrome (nickel-chromium) in toasters, 3D printer hotends, and dummy loads, where the goal is to convert 100% of the electrical energy into heat.
- Sensing and Measurement: Using components whose resistance changes predictably with environmental factors. A PT100 RTD (Resistance Temperature Detector) changes resistance by exactly 0.385 Ω per °C, allowing precise temperature measurement. Strain gauges change resistance when physically deformed.
- Parasitic Losses: Unwanted resistance in wire runs, loose terminal connections, and corroded battery lugs. A loose lug on a 12V LiFePO4 battery terminal might introduce 0.05 Ω of contact resistance; at a 100A draw, that single bad connection will dissipate 500W of heat and melt the terminal.
Common Confusions: Resistance vs. Reactance vs. Impedance
When moving from DC to AC circuits, people commonly confuse pure resistance with reactance and impedance. Here is the definitive breakdown:
- Resistance (R): Opposes current in both DC and AC circuits. It dissipates real power as heat. It is independent of frequency.
- Reactance (X): Opposes changes in voltage or current in AC circuits only, created by capacitors and inductors. It stores and releases energy back into the circuit rather than dissipating it as heat. It is highly dependent on frequency.
- Impedance (Z): The total opposition to AC current. It is the vector sum of resistance and reactance (Z = √(R² + X²)).
For a deeper dive into how these interact in alternating current systems, the All About Circuits textbook chapter on Resistance and Reactance provides excellent phasor diagrams showing the phase angle shifts.
Decision Tree: Sizing a Current-Limiting Resistor
When designing a circuit, you must calculate both the resistance value and the physical power rating of the component. Use this decision path to select the exact part for a standard indicator LED driven by a 5V microcontroller GPIO (like an Arduino Uno or ESP32).
Baseline Assumptions: Standard 5mm Red LED. Forward Voltage (Vf) = 2.0V. Desired Forward Current (If) = 15mA (0.015A). Supply Voltage (Vs) = 5.0V.
Power Dissipated: P = I²R → P = (0.015)² × 200 = 0.045 Watts.
| Calculated Power Dissipation | Required Wattage Rating | Physical Form Factor |
|---|---|---|
| Less than 0.1W | 1/8W (0.125W) or 1/4W (0.25W) | 0805 SMD or standard Axial Through-Hole |
| 0.1W to 0.4W | 1/2W (0.5W) | 1206 SMD or 1/2W Axial (larger body for heat) |
| 0.5W to 1.5W | 1W or 2W | 2512 SMD or Ceramic Wirewound Axial |
| Greater than 2.0W | Stop. Use a constant current driver. | Active silicon (e.g., LM317 or dedicated LED driver IC) |
Frequently Asked Questions
Does resistance change with temperature?
Yes. For most pure metals like copper and aluminum, resistance increases as temperature rises (a Positive Temperature Coefficient, or PTC). This is why a motor's startup current (inrush) is higher than its running current; the copper windings are cold and have lower resistance at startup. Conversely, semiconductors and carbon typically exhibit a Negative Temperature Coefficient (NTC), where resistance drops as they get hotter.
Can electrical resistance be exactly zero?
Only in superconductors, and currently only at cryogenic temperatures (typically below -135°C / 138K for high-temperature superconductors). At standard room temperature and bench conditions, every physical conductor has some measurable resistance. For practical DC circuit analysis, we treat thick copper busbars and short jumper wires as "zero ohms," but a precision micro-ohmmeter will always find a fraction of a milliohm.
How does the physical definition of resistance apply to AC skin effect?
In AC circuits, especially at high frequencies (like RF or high-speed digital I2C/SPI lines), current prefers to travel on the outer surface (the "skin") of the conductor. This effectively reduces the cross-sectional area (A) available for current flow. Referring back to R = ρ(L/A), a smaller A means higher resistance. This is why high-frequency RF coaxial cables often use silver-plated copper—the silver plating provides a lower-resistivity surface for the AC current to travel on.
For authoritative reference data on material resistivities and standard wire gauges, consult the Georgia State University HyperPhysics resistivity tables. Always verify your final wire sizing against local electrical codes (like NEC Article 310) which mandate specific ampacity deratings that override raw physics calculations.






