Electrical resistance, measured in ohms (Ω), is the physical opposition a material presents to the flow of electric current, converting electrical energy into heat. In a real circuit or installation, resistance is the fundamental property that dictates current draw for a given voltage, causes voltage drop across long wire runs, and determines the thermal dissipation of your components. Without it, every power supply would instantly dead-short and destroy itself. Beginners commonly confuse resistance with impedance (which applies to AC circuits and includes reactive components like inductance), resistivity (an intrinsic material property independent of physical geometry), and continuity (a simple binary pass/fail state for a connection).
The Core Physics and the Single Analogy
At the atomic level, resistance occurs when moving electrons collide with the fixed atoms of a conductor's lattice structure. These collisions impede electron flow and release kinetic energy as heat. The relationship between voltage, current, and resistance is governed by Ohm's Law, expressed as V = I × R (Voltage = Current × Resistance). According to Georgia State University's HyperPhysics, the resistance of a uniform conductor is directly proportional to its length and inversely proportional to its cross-sectional area.
To visualize this, use the standard water pipe analogy: imagine water flowing through a hose. The water pressure is voltage, the flow rate (gallons per minute) is current, and the physical narrowness or debris inside the hose is resistance. A kink in the hose (high resistance) restricts flow and causes pressure to build up behind it, while a wide, clear hose (low resistance) allows water to flow freely.
However, unlike a static hose, electrical resistance in metals changes with temperature. Copper wire, for instance, has a positive temperature coefficient (PTC). As current flows and heats the wire, the atomic lattice vibrates more violently, increasing resistance and compounding the heating effect—a critical factor when calculating wire ampacity derating in crowded conduits.
Worked Numeric Example: ESP32 LED Current Limiting
Let's move from theory to the workbench. Suppose you are building an IoT project using an ESP32-WROOM-32 development board and need to drive a standard 5mm red LED from a GPIO pin to indicate Wi-Fi connection status.
- ESP32 GPIO logic high voltage (V_source): 3.3V
- Red LED forward voltage drop (V_led): 2.0V
- Target LED current (I_target): 15mA (0.015A) — well below the ESP32's absolute maximum of 40mA per pin.
First, we calculate the voltage that must be dropped across the resistor. The resistor needs to absorb the difference between the source voltage and the LED's forward voltage:
V_resistor = 3.3V - 2.0V = 1.3V
Next, we apply Ohm's Law (R = V / I) to find the required electrical resistance in ohms:
R = 1.3V / 0.015A = 86.66 Ω
Since 86.66 Ω is not a standard value, we look at the E12 resistor series and round up to the nearest standard value to ensure we don't exceed our current target. We select a 91 Ω resistor.
Finally, we must verify the power dissipation to select the correct physical resistor wattage. Using the power formula P = I² × R:
P = (0.015A)² × 91 Ω = 0.0204 Watts (20.4 mW)
A standard 1/4W (250 mW) through-hole carbon film resistor is more than adequate for this task, providing a massive safety margin against thermal failure.
Where You Meet Electrical Resistance in Practice
Resistance isn't just about discrete components on a breadboard; it impacts every facet of electrical installations and embedded systems.
Wire Sizing and Voltage Drop
Every conductor has resistance. According to data from the Engineering Toolbox, 14 AWG solid copper wire has a resistance of approximately 2.525 mΩ (0.002525 Ω) per foot at 20°C. If you run a 50-foot circuit to a 120V receptacle (meaning 100 feet of total wire for the line and neutral loop), the total wire resistance is 0.2525 Ω. If you pull 15A through that circuit, Ohm's Law dictates a voltage drop of V = 15A × 0.2525 Ω = 3.78V. Your 120V nominal supply arrives at the outlet as 116.2V. While acceptable, this highlights why longer runs require upsizing to 12 AWG or 10 AWG to reduce resistance and keep voltage drop under the NEC-recommended 3% threshold.
Thermal Sensors (RTDs)
In industrial automation, we exploit the temperature coefficient of resistance using Resistance Temperature Detectors (RTDs). A standard PT100 sensor is made of platinum and has exactly 100 Ω of resistance at 0°C. As temperature rises, its resistance increases predictably at roughly 0.385 Ω per degree Celsius. By injecting a precise, low-level constant current and measuring the voltage drop across the sensor, a microcontroller can calculate temperature to a fraction of a degree.
Inrush Current and Heating Elements
Appliances like toasters and space heaters use Nichrome wire, an alloy specifically engineered for high electrical resistance and high melting points. Conversely, the low resistance of transformer primaries and large AC motors causes massive inrush currents upon startup—a phenomenon that requires slow-blow fuses or D-curve breakers to prevent nuisance tripping.
Bench Troubleshooting and Measurement Pitfalls
Measuring resistance seems trivial: set your digital multimeter (DMM) to the ohms setting and touch the probes. However, bad measurement technique leads to misdiagnosed circuits. According to Fluke's official measurement guidelines, you must never measure resistance on a live, energized circuit. The external voltage will skew the DMM's internal constant-current measurement circuit and can permanently blow the meter's internal protection fuse or destroy the ADC.
Another common bench mistake is measuring a component while it is still soldered into the circuit. Because PCB traces connect components in complex series-parallel networks, your DMM will measure the equivalent resistance of the entire parallel path, not the single component you are probing. Always lift one leg of the component out of the circuit, or desolder it completely, to get a true isolation reading.
Frequently Asked Questions
How do I calculate total electrical resistance in ohms for series and parallel circuits?
In a series circuit, resistances simply add together: R_total = R1 + R2 + R3. If you place three 100 Ω resistors in series, the total resistance is 300 Ω. In a parallel circuit, the total resistance is always lower than the smallest individual resistor. The formula is 1/R_total = (1/R1) + (1/R2) + (1/R3). For a quick shortcut with exactly two parallel resistors, use the product-over-sum formula: R_total = (R1 × R2) / (R1 + R2). Two 100 Ω resistors in parallel will yield exactly 50 Ω.
Why does my multimeter show a very low electrical resistance ohm reading when testing a motor winding?
It is entirely normal for large AC induction motors and transformer windings to show extremely low DC resistance (often less than 5 Ω). The wire used in these windings is very thick and wrapped tightly, minimizing DC resistance to prevent overheating. When powered by AC, the motor relies on impedance (specifically inductive reactance) and the generation of back-EMF (electromotive force) as the rotor spins to limit the running current. If you apply DC voltage to that same low-resistance winding, it will draw massive current and burn out.
What is the difference between electrical resistance in ohms and impedance in AC circuits?
Resistance (R) is the opposition to current flow that dissipates energy as heat, and it remains constant regardless of whether the current is AC or DC. Impedance (Z), also measured in ohms, is the total opposition to alternating current (AC). Impedance is a complex vector sum that includes resistance (R), inductive reactance (X_L), and capacitive reactance (X_C). While a standard resistor only has resistance, components like capacitors and inductors have impedance that changes dynamically based on the frequency of the AC signal passing through them.






