Resistance is the physical property of a material that opposes the flow of electric current, converting electrical energy into heat. When you ask what is resistance in physics, you are looking at the atomic level: as free electrons move through a conductor, they collide with the fixed atoms of the lattice structure. These collisions scatter the electrons, restricting their forward momentum and generating thermal energy. In practical electronics, resistance is the primary tool we use to control current, divide voltages, and protect sensitive components from destruction.
The Core Physics: What Resistance Actually Changes
In a real circuit or installation, resistance changes two fundamental parameters: current flow and power dissipation. According to Ohm's Law ($I = V/R$), for a fixed voltage, increasing the resistance proportionally decreases the current. Simultaneously, according to Joule's Law ($P = I^2R$), resistance determines how much electrical energy is converted into heat.
Think of water flowing through a plumbing system; resistance is the equivalent of narrowing the pipe's diameter. The narrower the pipe, the less water flows through it per second, and the more friction (heat) is generated against the pipe walls.
Worked Numeric Example: Sizing a Current-Limiting Resistor
Let's apply the physics to a common bench scenario: driving a standard 5mm red LED from an ESP32 GPIO pin. The ESP32 pin outputs 3.3V and has a practical continuous current limit of 12mA. The red LED has a forward voltage ($V_f$) of 2.0V. If we connect the LED directly to the pin, the lack of resistance will cause the current to spike, destroying the LED and potentially bricking the ESP32's GPIO bank.
We need a resistor to drop the remaining voltage and limit the current.
- Calculate Voltage Drop: $V_{resistor} = V_{source} - V_{LED} = 3.3V - 2.0V = 1.3V$
- Calculate Required Resistance: $R = V / I = 1.3V / 0.012A = 108.33\Omega$
- Select Standard Value: The nearest standard E24 series value is 110Ω.
- Calculate Power Dissipation: $P = I^2 \times R = (0.012A)^2 \times 110\Omega = 0.01584W$ (or ~16mW).
Because the power dissipation is only 16mW, a standard 1/4W (250mW) 110Ω metal film resistor (such as a Yageo MFR-25 series) is more than adequate, operating at less than 10% of its thermal capacity.
Where You Meet Resistance in Practice
Beyond discrete resistor components, the physics of resistance dictates the success or failure of entire installations.
1. Wire Sizing and Voltage Drop
In a 12V solar setup, wire resistance is your enemy. If you run 40 feet of 14 AWG copper wire (total loop length) to a 5A load, the wire's inherent resistance (~0.101Ω total) will cause a voltage drop of $V = 5A \times 0.101\Omega = 0.505V$. Your 12V nominal load now only sees 11.49V, and the wire dissipates 2.5W of heat inside your conduit. This is why Fluke emphasizes checking voltage drop at the load, not just at the source.
2. Pull-Up and Pull-Down Networks
Digital protocols like I2C use open-drain outputs. The bus relies on physical pull-up resistors (typically 4.7kΩ) to bring the SDA and SCL lines back to VCC when no device is actively pulling them low. Without this resistance, the signal lines would float, causing erratic microcontroller behavior.
3. Shunt Resistors for Current Sensing
To measure high currents, we intentionally insert a very low-resistance, high-precision "shunt" resistor (e.g., 0.01Ω) in series with the load. By measuring the millivolt drop across this known resistance, an ADC or multimeter can calculate the exact current flow using Ohm's Law.
Common Confusions: What People Get Wrong
When studying fundamental circuit theory, beginners frequently mix up related but distinct concepts.
Resistance vs. Impedance
Resistance ($R$) applies to both DC and AC circuits and only dissipates power as heat. Impedance ($Z$) is the AC equivalent that includes both resistance and reactance (the opposition to current change caused by capacitors and inductors). A capacitor has infinite DC resistance, but a specific, frequency-dependent impedance in an AC circuit.
Resistance vs. Resistivity
Resistivity ($\rho$) is an intrinsic property of a material (e.g., copper is $1.68 \times 10^{-8} \Omega\cdot m$ at 20°C). Resistance ($R$) is the property of a specific physical object, calculated by multiplying the material's resistivity by its length and dividing by its cross-sectional area ($R = \rho L / A$). You buy a resistor based on its resistance; you choose wire based on its resistivity.
Decision Tree: Picking the Exact Resistor for Your Build
Don't just grab any resistor from the bin. Use this decision path to select the correct physical component for your specific application.
| Application Scenario | Primary Requirement | Concrete Pick / Part Spec |
|---|---|---|
| Standard 5V/3.3V LED Current Limiting | Limit current to 10-20mA; low heat. | 1/4W Metal Film (e.g., 220Ω or 110Ω, Yageo MFR-25 series) |
| I2C / SPI Bus Pull-Up | Fast rise time, low static current draw. | 1/4W 4.7kΩ Metal Film (1% tolerance preferred for stable logic highs) |
| High-Power Dummy Load / Heater | Dissipate 20W+ of heat without melting. | 50W Aluminum Housed (e.g., Vishay RH050 series, mounted to a heatsink) |
| Precision Current Shunt (Sensing) | Minimal voltage drop, high thermal stability. | Manganin or Kelvin Shunt (e.g., Bourns CSS series, 0.1% tolerance) |
| High-Voltage Bleeder (Capacitor Discharge) | Withstand high peak voltage without arcing. | High-Voltage Metal Oxide (e.g., 1/2W 1MΩ, rated for >500V working voltage) |
FAQ: Quick Answers to Bench Questions
Can I substitute a 1/2W resistor for a 1/4W resistor of the same ohm value?
Yes. The wattage rating of a resistor dictates how much heat it can safely dissipate before failing, not the resistance it provides to the circuit. A 1/2W 220Ω resistor will pass the exact same current as a 1/4W 220Ω resistor; it will simply run much cooler. The only penalty is physical size and board space.
Why does my multimeter read a slightly different value than the resistor's color bands?
Every resistor has a manufacturing tolerance, typically 1% or 5%. A 100Ω resistor with a 5% tolerance (gold band) can legally measure anywhere between 95Ω and 105Ω straight out of the factory. Additionally, your multimeter's test leads have their own small resistance (usually 0.2Ω to 0.5Ω), which adds to the reading. Short your probes together and subtract that baseline value for high-precision measurements.
Does resistance change when AC frequency increases?
The DC resistance of the material remains constant, but the effective AC resistance (often called AC resistance or impedance) increases due to the skin effect. At high frequencies, alternating current is forced to the outer surface (skin) of the conductor, reducing the effective cross-sectional area available for electron flow and thereby increasing the overall opposition to current.






