To find the voltage drop across a resistor in any DC circuit, multiply the current flowing through it in amperes ($I$) by its resistance in ohms ($R$). The direct answer is always derived from Ohm's Law: $V = I \times R$. If you have a 100Ω resistor carrying 0.05A (50mA), the voltage drop ($V$) is exactly 5.0 volts. This fundamental relationship dictates everything from sizing an LED current-limiter on an Arduino breadboard to calculating snubber network losses in a 240V AC contactor circuit.
The Core Formula and Symbol Definitions
The mathematical foundation for calculating voltage drop across a resistor is Ohm's Law. In practical bench work, you are usually solving for $V$ (the potential difference between the two leads of the resistor). Before applying the formula, you must ensure every variable is converted to its base SI unit. Mixing milliamps with kilo-ohms without proper tracking is the number one cause of calculation errors in hobbyist and trade-student projects.
| Symbol | Variable Name | Base SI Unit | Unit Symbol | Common Bench Variants |
|---|---|---|---|---|
| $V$ | Voltage Drop (Potential Difference) | Volts | V | Millivolts (mV), Kilovolts (kV) |
| $I$ | Current | Amperes | A | Milliamps (mA), Microamps (µA) |
| $R$ | Resistance | Ohms | Ω | Kilo-ohms (kΩ), Mega-ohms (MΩ) |
What does a realistic answer magnitude look like? In low-voltage DC electronics (like a 5V microcontroller circuit), a realistic voltage drop across a single resistor ranges from 0.1V (a small sense resistor) to about 3.5V (an LED current-limiting resistor). In 12V or 24V industrial control systems, drops of 5V to 15V are common. If your calculation for a 5V logic circuit yields a voltage drop of 45V, you have made a decimal or unit-tracking error.
Rearranged Forms of Ohm's Law
While calculating voltage drop across a resistor requires $V = I \times R$, bench troubleshooting frequently requires you to rearrange the formula to find a missing variable when $V$ is already known (e.g., measured with a multimeter). According to All About Circuits, mastering these algebraic rearrangements is mandatory for circuit analysis.
- Solving for Current ($I$): $I = \frac{V}{R}$
Use when: You know the supply voltage and the resistor color code, and need to verify if the current will exceed a component's rating. - Solving for Resistance ($R$): $R = \frac{V}{I}$
Use when: You measure a voltage drop across an unknown component and measure the series current, allowing you to identify the component's resistance. - Power Dissipation Variant ($P$): $P = I^2 \times R$ or $P = \frac{V^2}{R}$
Use when: You need to determine if a 1/4W carbon film resistor will overheat, or if you need to upgrade to a 5W wirewound chassis-mount resistor.
Worked Examples with Unit Tracking
Theory is useless without rigorous unit tracking. Below are two common bench scenarios demonstrating exactly how to execute the math step-by-step.
Problem 1: Microcontroller LED Current Limiter
Scenario: You are driving a standard red LED from an ESP32 GPIO pin. The GPIO outputs 3.3V. The LED has a forward voltage ($V_f$) of 2.0V and requires 15mA of current. You have installed a 86.6Ω precision resistor in series. Calculate the voltage drop across the resistor and verify the current.
- Identify the target voltage drop: The resistor must drop the difference between the source voltage and the LED forward voltage.
$V_{resistor} = V_{source} - V_{LED} = 3.3\text{V} - 2.0\text{V} = 1.3\text{V}$. - Convert units to base SI: The target current is 15mA. Convert to Amperes: $15 \div 1000 = 0.015\text{A}$.
- Apply the rearranged formula to verify resistance:
$R = \frac{V}{I}$
$R = \frac{1.3\text{V}}{0.015\text{A}}$
$R = 86.66\text{Ω}$. - Calculate actual voltage drop with the chosen 86.6Ω resistor:
$V = I \times R$
$V = 0.015\text{A} \times 86.6\text{Ω} = 1.299\text{V}$.
Bench Note: The ESP32 GPIO pin will source exactly 15mA, and the resistor will drop 1.299V, leaving 2.001V for the LED. Power dissipation is $P = 1.299\text{V} \times 0.015\text{A} = 0.019\text{W}$, well within the 0.25W rating of a standard 1/4W through-hole resistor.
Problem 2: 24V Industrial Dummy Load
Scenario: You are testing a 24V DC power supply using a 47Ω aluminum-housed wirewound power resistor. The power supply's ammeter reads a steady 0.51A. Calculate the exact voltage drop across the resistor and the heat generated.
- Identify knowns and verify units: $R = 47\text{Ω}$, $I = 0.51\text{A}$. Both are already in base SI units.
- Apply the core formula:
$V = I \times R$
$V = 0.51\text{A} \times 47\text{Ω}$
$V = 23.97\text{V}$. - Calculate power dissipation to check thermal limits:
$P = V \times I$
$P = 23.97\text{V} \times 0.51\text{A} = 12.22\text{W}$.
Bench Note: The voltage drop is 23.97V (the remaining 0.03V is lost to wire resistance and internal supply impedance). Because the resistor is dissipating 12.22W, a standard 10W resistor would fail catastrophically. You must use a 25W or 50W chassis-mount resistor bolted to a heatsink, as detailed in SparkFun's resistor guide.
When the Formula Applies (and When It Breaks)
The formula $V = I \times R$ is absolute, but its practical application relies on specific assumptions. If your physical measurements do not match your calculations, one of these assumptions has been violated.
Assumptions of the Formula
- Linearity: The component must be an ohmic (linear) resistor. Carbon film, metal film, and wirewound resistors are linear. The formula does not apply directly to non-linear components like diodes, transistors, or incandescent bulbs (whose tungsten filaments change resistance drastically as they heat up).
- Constant Temperature: Resistance changes with temperature. A 100Ω resistor with a Temperature Coefficient of Resistance (TCR) of ±100 ppm/°C will change its value by 1% if it heats up by 100°C. For high-precision calculating voltage drop across a resistor, you must account for thermal drift.
- DC or Instantaneous AC: For DC circuits, $V$ and $I$ are static. For AC circuits, you must use RMS (Root Mean Square) values for $V$ and $I$, and the resistor must be purely resistive (no parasitic inductance or capacitance at high frequencies).
Unit Mistakes That Break the Math
The most common error when calculating voltage drop across a resistor is failing to convert prefixes. If you multiply 5 mA by 2 kΩ, the raw number is 10. But what is the unit?
The Bench Trick: Milli ($10^{-3}$) and Kilo ($10^{3}$) cancel each other out perfectly. Therefore, $\text{mA} \times \text{kΩ} = \text{Volts}$. So, $5\text{mA} \times 2\text{kΩ} = 10\text{V}$. However, if you mix milliamps with base ohms ($5\text{mA} \times 2000\text{Ω}$), you must convert the mA to Amps first ($0.005\text{A} \times 2000\text{Ω} = 10\text{V}$). Failing to do this yields an answer of 10,000V, which is physically impossible in a low-voltage circuit.
Multimeter Measurement Discrepancies
If your calculated $V$ does not match your multimeter reading, check your meter's input impedance and burden voltage. As noted by Fluke, measuring resistance in-circuit while power is applied will yield garbage data and can damage the meter. Always measure voltage drop in parallel across the resistor while the circuit is powered, and measure resistance only when the circuit is de-energized and the resistor is isolated.
Frequently Asked Questions
How do I calculate voltage drop across a resistor in a parallel circuit?
In a purely parallel circuit, the voltage drop across every parallel branch is identical and equal to the source voltage. If you have a 12V battery connected to three parallel resistors, the voltage drop across each individual resistor is exactly 12V. You do not use $V = I \times R$ to find the voltage drop in this scenario; you use it to find the current drawing through each specific branch ($I = \frac{12\text{V}}{R}$).
Why is my calculated voltage drop different from my multimeter reading?
Three factors cause this discrepancy: component tolerance, thermal drift, and parasitic resistance. A standard 5% tolerance 1kΩ resistor could physically be anywhere from 950Ω to 1050Ω, shifting your expected voltage drop by ±5%. Additionally, the copper traces on your breadboard or PCB add small parasitic resistances (usually 0.1Ω to 0.5Ω) that drop millivolts of potential, which a high-precision 4.5-digit multimeter will detect but your theoretical formula ignored.
Does calculating voltage drop across a resistor apply to AC circuits?
Yes, but you must use RMS (Root Mean Square) values for both voltage and current. If an AC circuit supplies 120V RMS and a purely resistive heating element is 10Ω, the RMS current is 12A, and the RMS voltage drop is 120V. However, at high frequencies (above 100kHz), physical resistors exhibit parasitic inductance and capacitance. The component becomes an impedance ($Z$) rather than a pure resistance ($R$), and you must use the AC equivalent formula: $V = I \times Z$.
What happens if the calculated voltage drop exceeds my power supply voltage?
This is a mathematical red flag indicating an error in your assumptions or circuit design. Kirchhoff's Voltage Law (KVL) dictates that the sum of all voltage drops in a closed series loop must exactly equal the source voltage. If your calculation for a single resistor yields a drop higher than the supply, you have either miscalculated the current, misread the resistor value, or are attempting to push more current through the resistor than the power supply is physically capable of providing (causing the supply voltage to sag or the supply to enter over-current protection).






