V = IR (Voltage equals Current times Resistance) is the foundational mathematical relationship defining how electrical pressure, flow, and opposition interact in any circuit.

This single equation dictates everything from the size of the current-limiting resistor you solder onto a 5mm LED to the exact voltage drop you will measure across a 50-foot run of 14 AWG copper wire on a jobsite. Beginners frequently confuse V = IR, which calculates voltage drop and current flow, with P = IV, which calculates actual power dissipation and heat generation. Understanding the difference is what separates a hobbyist who burns out components from one who designs reliable, efficient boards.

Citation Note: The principles of Ohm's Law are universally standardized. For deep-dive academic reference, consult Georgia State University's HyperPhysics or the All About Circuits DC textbook.

The Mechanics of V = IR (With a Worked Example)

To use the formula effectively, you need to understand the three variables and their standard units of measurement:

V (Volts): Electrical potential difference. Think of this as the pressure pushing electrons through a conductor.
I (Amperes/Amps): Electrical current. This is the actual volume of electrons flowing past a point per second.
R (Ohms/Ω): Electrical resistance. The physical opposition to that flow, determined by the material, length, and cross-sectional area of the conductor.

The formula can be algebraically rearranged depending on which variable you need to solve for:

To Find: Formula: Use Case:
Voltage (V) V = I × R Calculating voltage drop across a known resistor.
Current (I) I = V / R Determining how much current a circuit will draw.
Resistance (R) R = V / I Sizing a current-limiting resistor for a specific load.

Worked Numeric Example: Sizing an LED Resistor

Let's say you are building a custom dashboard indicator using a 12V DC power supply and a standard 5mm red LED. The LED datasheet specifies a forward voltage ($V_f$) of 2.0V and a target continuous current ($I$) of 20mA (0.020A).

If you connect the LED directly to 12V, it will instantly destroy itself. You need a resistor to drop the excess voltage. First, find the voltage the resistor must absorb:

$V_{resistor}$ = 12V (Supply) - 2.0V (LED) = 10V

Now, apply the R = V / I rearrangement:

R = 10V / 0.020A = 500Ω

Since 500Ω is not a standard E24 resistor value, you round up to the next available value: 510Ω. This ensures your current stays slightly below the 20mA maximum, extending the LED's lifespan.

Where You Meet V = IR in Practice

Theory is useless if it doesn't translate to the workbench or the jobsite. Here are two common scenarios where V = IR is the primary diagnostic tool.

Scenario 1: DC Voltage Drop in Security Camera Wiring

You are running 14 AWG copper wire to power a 12V DC security camera located 100 feet away from the power supply. The camera draws a steady 1A under load. Will the camera get enough voltage?

  • Wire Resistance: 14 AWG copper has a resistance of roughly 2.525Ω per 1,000 feet.
  • Total Wire Length: 100 feet out, 100 feet back = 200 feet total.
  • Total Resistance (R): (200 / 1000) × 2.525Ω = 0.505Ω.
  • Voltage Drop (V): V = 1A × 0.505Ω = 0.505V.

The camera will receive 11.495V (12V - 0.505V). Since most 12V DC electronics tolerate down to 10.5V, this installation is safe. If you had used 18 AWG wire (higher resistance), the voltage drop would exceed acceptable limits, causing the camera to reboot at night when the IR illuminators turn on and draw more current.

Scenario 2: Diagnosing a Blown Automotive Fuse

Your car's 12V accessory socket is dead. You suspect the 15A fuse is blown, but you don't want to pull the fuse panel apart to check it visually. Grab your multimeter, set it to DC Volts, and probe the two exposed test points on the top of the fuse while the circuit is turned on.

  • If the fuse is GOOD: It has near-zero resistance (e.g., 0.01Ω). V = I × 0.01Ω results in a voltage drop of essentially 0V. Your meter reads 0V across the fuse.
  • If the fuse is BLOWN: It has infinite resistance. The circuit is open, no current flows (I = 0), but the full system voltage drops across the break. Your meter reads 12V across the fuse terminals.

Common Confusions: V = IR vs. Power (P = IV)

The most frequent mistake makers and apprentices make is confusing voltage drop (V = IR) with power dissipation (P = IV or P = I²R). V = IR tells you how much electrical pressure is lost across a component; P = IV tells you how much heat that component must physically dissipate into the air.

The Heat Check: Let's return to our 510Ω LED resistor. It drops 10V at 20mA (0.020A).
Using P = V × I, the power dissipated is 10V × 0.020A = 0.2 Watts.
A standard through-hole carbon film resistor is rated for 1/4W (0.25W). Because 0.2W is 80% of its maximum rating, the resistor will survive, but it will run noticeably warm to the touch. For long-term reliability in an enclosed project box, you should step up to a 1/2W (0.5W) resistor to keep it running cool.

Confusing these two formulas leads to catastrophic failures. If you only calculate V = IR to find the resistance, but forget to calculate P = I²R to check the wattage, you might install a physically tiny 1/8W resistor in a circuit where it needs to dissipate 2W, resulting in a melted board and a potential fire hazard.

Frequently Asked Questions About V = IR

Does V = IR apply to AC circuits as well as DC?

Yes, but with a critical modification. In Alternating Current (AC) circuits, components like capacitors and inductors introduce frequency-dependent opposition called reactance. When you combine resistance (R) and reactance (X), you get Impedance (Z). The AC version of the formula is V = IZ. For purely resistive AC loads, like a standard incandescent light bulb or a space heater, V = IR still applies perfectly using RMS (Root Mean Square) voltage and current values.

Why does my multimeter read 0.2 ohms when I short the probes together to test V = IR?

Cheap digital multimeters (typically under $30) lack the resolution to measure sub-ohm resistances accurately. When you touch the probes together, you are measuring the resistance of the internal shunt resistor, the probe wire (which is often thin, high-gauge copper), and the contact resistance of the probe tips. If you need to measure very low resistances for high-current shunt calculations, you must use a meter with a relative (REL/NULL) mode to zero out the lead resistance, or invest in a dedicated milliohm meter that uses a 4-wire Kelvin measurement technique.

How does V = IR relate to Kirchhoff’s Voltage Law (KVL)?

Kirchhoff’s Voltage Law states that the sum of all voltage drops around any closed loop in a circuit must equal the total applied source voltage. V = IR is the mathematical engine that makes KVL work. When you write a KVL equation (e.g., $V_{source} - V_{R1} - V_{R2} = 0$), you substitute V = IR into the voltage drop variables to solve for unknown currents or resistances in complex, multi-loop networks.