Ohm's law describes the fundamental relationship in electrical circuits where current is directly proportional to voltage and inversely proportional to resistance, expressed mathematically as V = I × R. Think of it like water flowing through a garden hose: voltage is the water pressure pushing the flow, current is the actual volume of water moving through, and resistance is a kink in the hose restricting that movement. This single equation is the absolute baseline for every wire sizing calculation, breaker selection, and component choice you make on the workbench or the jobsite.

The Core Triad:
V = Voltage (Volts, V) — The electrical potential difference.
I = Current (Amperes, A) — The flow of electrical charge.
R = Resistance (Ohms, Ω) — The opposition to that flow.

The Core Formula and a Worked Numeric Example

While the abstract definition is simple, understanding what Ohm's law changes in a real circuit requires looking at physical materials. Resistance is not just a component you buy; it is an inherent property of the copper or aluminum wire you run through walls. When current flows through a wire with resistance, voltage is lost as heat. This is known as voltage drop, and it dictates whether your equipment will actually function at the end of a run.

Let's look at a concrete jobsite example. You are wiring a 12V DC LED strip that draws 3 amps at full brightness. You are using a 20-foot run of 18 AWG copper wire from the power supply to the LEDs.

  • Total wire length: 40 feet (20 feet out, 20 feet back to complete the circuit).
  • Wire resistance: According to NEC Chapter 9, Table 8, uncoated 18 AWG copper has a resistance of 6.385 Ω per 1,000 feet.
  • Circuit Resistance (R): (40 / 1000) × 6.385 = 0.2554 Ω.
  • Voltage Drop (V): V = I × R → 3A × 0.2554Ω = 0.766V.

Your LEDs will receive 11.23V (12V - 0.766V). While this might light up, it leaves very little margin for error if the power supply sags. If we apply the math to upgrade to 14 AWG wire (2.525 Ω/kft), the resistance drops to 0.101 Ω, the voltage drop shrinks to 0.303V, and the LEDs see a much healthier 11.69V. This is the practical power of the formula: it tells you exactly when to upsized your wire gauge to prevent dimming or motor stalling.

Where You Meet This in Practice

You will rarely use this formula to calculate the resistance of a mystery component. Instead, you use it to protect microcontrollers, size fuses, and troubleshoot dead shorts. The most common bench application is calculating current-limiting resistors for LEDs driven by development boards like the ESP32 or Arduino Uno.

An ESP32 GPIO pin outputs 3.3V and has an absolute maximum current rating of 40mA, but a safe continuous operating limit is 20mA. If you connect a standard red LED (which has a forward voltage drop, Vf, of 2.0V) directly to the pin, the remaining 1.3V will push a massive, destructive amount of current through the silicon, instantly bricking the pin.

Here is how you use the math to select the correct E12 series resistor:

Parameter Value Calculation Step
Source Voltage (Vcc) 3.3V ESP32 GPIO logic high
LED Forward Voltage (Vf) 2.0V Datasheet spec for standard red LED
Resistor Voltage Drop (Vr) 1.3V Vcc - Vf (3.3V - 2.0V)
Target Current (I) 15mA (0.015A) Safe margin below 20mA limit
Required Resistance (R) 86.6 Ω R = Vr / I (1.3 / 0.015)
Standard Resistor to Buy 100 Ω Next standard E12 value UP (never round down)

By rounding up to 100 Ω, the actual current becomes 13mA (1.3V / 100 Ω), safely illuminating the LED without risking the microcontroller's internal traces. For a deeper dive into the foundational math behind these DC calculations, All About Circuits provides an excellent primer on DC circuit theory.

Common Confusions: Ohm's Law vs. Watt's Law

The most frequent mistake beginners make is confusing Ohm's law with Watt's law (Power = Voltage × Current, or P = V × I). People conflate the restriction of flow (Ohms) with the actual work or heat being performed (Watts).

Consider a standard 120V AC residential branch circuit protected by a 20A breaker.

  • Ohm's Law (V = I × R) tells you the physical threshold for a short circuit. It dictates that the minimum load resistance before the breaker trips is R = 120V / 20A = 6 Ω. If a faulty appliance drops its internal resistance to 4 Ω, current spikes to 30A, and the breaker's thermal-magnetic trip mechanism engages.
  • Watt's Law (P = V × I) tells you the maximum work the circuit can do. P = 120V × 20A = 2,400W. However, because the NEC requires continuous loads (running 3 hours or more) to be derated to 80%, your practical limit is 1,920W.

Ohm's law governs the physical geometry and material limits of the circuit; Watt's law governs the energy consumption and utility billing. You need both to design a safe system, but they answer entirely different questions.

Frequently Asked Questions

Does the Ohm's law description apply to AC circuits as well as DC?

Yes, but the concept of 'resistance' expands into 'impedance' (Z). In alternating current circuits, components like capacitors and inductors oppose changes in voltage and current, creating reactance. The formula becomes V = I × Z. Furthermore, you must use RMS (Root Mean Square) values for voltage and current to get accurate power calculations, as AC voltage is constantly swinging from zero to its peak value. You can read more about how impedance alters AC circuit math in advanced electronics textbooks.

Why does my multimeter read 'OL' or infinite resistance on an open switch?

This is a direct mathematical result of the formula R = V / I. When a switch is open, the circuit is broken, meaning current (I) is exactly zero. Dividing any voltage by zero results in a mathematical infinity. Your multimeter's display shows 'OL' (Over Limit) because the resistance is higher than the meter's internal test voltage can push current through, effectively acting as an infinite resistor.

How does temperature change the Ohm's law description for copper wire?

Resistance is not a static number; it changes with heat. Copper has a positive temperature coefficient, meaning its resistance increases as it gets hotter—specifically by about 0.4% per degree Celsius. According to Georgia State University's HyperPhysics database, a wire that measures 1.0 Ω at 20°C will measure noticeably higher at 75°C. This is exactly why the NEC uses different ampacity columns (60°C, 75°C, 90°C) for THHN and NM-B cables; the heat generated by current flow increases resistance, which generates more heat, requiring larger wire gauges in high-ambient-temperature environments like attics.

Can I use V=IR to size a breaker for an AC induction motor?

No. While Ohm's law applies to the motor's running windings, AC induction motors experience a massive inrush current (Locked Rotor Amps, or LRA) when starting, which can be 6 to 8 times the normal running current. Additionally, motors have inductive reactance and a power factor of less than 1.0. If you size a breaker strictly using V=IR based on the nameplate running current, the breaker will trip instantly every time the motor starts. Motor breaker sizing requires specific time-delay curves and adherence to NEC Article 430 tables, not basic Ohm's law math.