The SI unit of electrical resistance is the ohm (symbol: Ω), which measures how much a material opposes the flow of direct electrical current. When you apply 1 volt across a 1-ohm resistor, exactly 1 ampere of current flows through it. This fundamental relationship, governed by Ohm's Law, dictates everything from the brightness of an indicator LED on your workbench to the voltage drop across a 50-foot run of NM-B cable in a residential branch circuit.

Formal BIPM Definition: One ohm is the electrical resistance between two points of a conductor when a constant potential difference of one volt, applied to these points, produces in this conductor a current of one ampere, provided the conductor does not contain any electromotive force. Source: BIPM SI Brochure.

How the Ohm Dictates Real Circuit Behavior

In any physical installation or printed circuit board, resistance changes the circuit by converting electrical energy into heat and creating a voltage drop. It is the primary mechanism we use to limit current to safe levels for sensitive components. The mathematical relationship is expressed as R = V / I, where R is resistance in ohms, V is voltage in volts, and I is current in amperes.

Consider a standard residential wiring scenario. A 100-foot run of 14 AWG solid copper wire (200 feet total for the hot and neutral out-and-back) has a resistance of approximately 0.51 ohms at 20°C. If you pull 15 amps through that circuit to run a space heater, the wire itself drops about 7.65 volts (15A × 0.51Ω) and dissipates roughly 115 watts of heat (I²R) inside the walls. This is why the National Electrical Code (NEC) mandates larger wire gauges (lower resistance) for longer runs or higher ampacities—to keep that I²R heating within the thermal limits of the wire insulation.

Worked Example: Sizing a Current-Limiting Resistor

Let's apply the ohm to a common maker scenario: driving a standard 5mm red LED from a 5V GPIO pin on an Arduino Nano or ESP32 DevKit. LEDs are current-driven devices; without resistance, they will draw excessive current, overheat, and destroy both the LED and the microcontroller's GPIO pin.

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

First, calculate the voltage that must be dropped across the resistor:

V_resistor = Vs - Vf = 5.0V - 2.0V = 3.0V

Next, use Ohm's Law to find the required resistance:

R = V_resistor / I = 3.0V / 0.020A = 150 Ω

A 150Ω resistor is a standard value in the E12 series. However, to provide a safety margin and extend the LED's lifespan, makers frequently round up to the next common E12 value: 220Ω. Using 220Ω, the actual current becomes 3.0V / 220Ω = 13.6mA, which is plenty bright for an indicator.

Finally, verify the resistor's power rating. Power (P) = I² × R. For our 150Ω target: (0.020A)² × 150Ω = 0.06 Watts. A standard through-hole 1/4W (0.25W) carbon film resistor is more than adequate, as it operates at less than 25% of its maximum thermal capacity.

Where You Meet Resistance in Practice

Beyond discrete resistors on a breadboard, the concept of the ohm appears across every discipline of electrical work:

  • Sensor Networks: Resistance Temperature Detectors (RTDs) like the Pt100 rely on the predictable change in ohms to measure temperature. A Pt100 sensor has exactly 100.0 ohms of resistance at 0°C, increasing by roughly 0.385 ohms per degree Celsius.
  • Digital Communication Buses: I2C buses on microcontrollers use open-drain outputs. They require physical pull-up resistors (typically 4.7kΩ for 100kHz standard mode, or 2.2kΩ for 400kHz fast mode) to pull the SDA and SCL lines back to VCC when no device is actively pulling them to ground.
  • Heating Elements: The 12V, 40W heater cartridge in a 3D printer hotend is essentially a high-power resistor. Using the power formula (P = V² / R), we can calculate its internal resistance: 144 / 40 = 3.6 ohms. If your multimeter reads an open circuit (infinite ohms) across the cartridge wires, the internal nichrome element has snapped.
  • Grounding and Bonding: In residential and commercial electrical systems, the grounding electrode system must have a sufficiently low resistance to earth (often targeted at < 25 ohms per NEC 250.56) to ensure fault currents can trip the breaker during a ground fault.

Common Confusions: Resistance vs. Impedance vs. Reactance

A frequent mistake among hobbyists and junior technicians is using the term "resistance" when dealing with AC circuits containing capacitors or inductors. While all three are measured in ohms, their physical behaviors are fundamentally different. All About Circuits provides an excellent breakdown of how these vectors combine.

Property Symbol Unit DC Circuits AC Circuits Energy Behavior
Resistance R Ohm (Ω) Yes Yes Dissipates energy as heat
Reactance X Ohm (Ω) No Yes Stores energy in electric/magnetic fields
Impedance Z Ohm (Ω) No Yes Vector sum of R and X

If you measure a speaker voice coil with a DC multimeter, you might read 6 ohms of pure DC resistance. But when driven by an AC audio signal, the coil's inductance creates reactance, pushing the total AC impedance (Z) up to the nominal 8 ohms the amplifier expects.

Frequently Asked Questions

What is the SI unit of electrical resistance and its symbol?

The SI unit of electrical resistance is the ohm, represented by the uppercase Greek letter omega (Ω). In schematic capture software like KiCad or Altium, or when typing on standard ASCII keyboards where the Ω character is unavailable, it is universally accepted to use the capital letter "R" as a substitute (e.g., 4.7kR instead of 4.7kΩ).

How do you measure the SI unit of electrical resistance with a multimeter?

To measure resistance, the circuit must be completely de-energized; measuring ohms on a live circuit will yield false readings and can destroy the multimeter's internal fuse or ADC. Set your multimeter dial to the Ω setting. For auto-ranging meters, simply touch the probes across the component. For manual-ranging meters, start at the highest scale and step down. A reading of "OL" (Over Limit) indicates infinite resistance (an open circuit), while a reading below 1.0 Ω typically triggers the continuity beeper, indicating a near-short or a solid wire connection.

Why is the SI unit of electrical resistance called the ohm?

The unit is named after the German physicist Georg Simon Ohm, who published his findings on the relationship between voltage, current, and resistance in 1827. The name was officially adopted as the standard unit of resistance at the International Electrical Congress in 1881 to standardize telegraph and early power grid measurements across international borders.

What happens to the SI unit of electrical resistance when temperature changes?

Resistance is highly temperature-dependent, a property defined by the Temperature Coefficient of Resistance (TCR). For pure metals like copper, resistance increases as temperature rises (a positive TCR of about +0.4% per °C). This is why a cold incandescent lightbulb draws a massive inrush current before its tungsten filament heats up and its resistance increases. Conversely, materials like NTC (Negative Temperature Coefficient) thermistors drop in resistance as they get hotter, making them ideal for inrush current limiters and temperature sensing.