Ohm's Law

Ohm's Law is the foundation of circuit analysis. It describes the relationship between voltage, current, and resistance — three quantities you'll be thinking about constantly in any electronics work. Formulated by Georg Simon Ohm in 1827, it's still the first tool you reach for when analysing any resistive circuit. Get comfortable with it early and everything else becomes easier.

The Formula

Three variables, one relationship:

V = I × R

V — voltage in volts (V)
I — current in amperes (A)
R — resistance in ohms (Ω)

Rearrange for whatever you're solving:

Solving forFormulaUse when you know
Voltage (V)V = I × RCurrent and resistance
Current (I)I = V / RVoltage and resistance
Resistance (R)R = V / IVoltage and current

The triangle diagram is a common memory aid — cover the quantity you want and the arrangement of the remaining two tells you the formula:

Ohm's Law Triangle A triangle divided into three sections, with voltage V above current I and resistance R. Covering V leaves I multiplied by R; covering I leaves V divided by R; and covering R leaves V divided by I. V I R cover to solve
The Ohm's Law triangle is a formula aid: cover the quantity you need to find, then multiply the two side-by-side quantities or divide the upper quantity by the lower one.

What It's Actually Saying

Voltage is pressure. Current is flow. Resistance is restriction. Ohm's Law says that if you push harder (more voltage) through the same restriction (same resistance), more current flows. If you narrow the restriction (more resistance) without changing the pressure, less flows. These relationships are linear and proportional — double the voltage, double the current. That linearity is what makes Ohm's Law so useful and so clean to work with.

Units and Prefixes

Real circuits rarely use bare volts, amps, and ohms — you'll encounter prefixed units constantly:

QuantityUnitCommon prefixesExample
VoltageVolt (V)mV (millivolts), kV3.3 V logic, 12 mV noise floor
CurrentAmpere (A)mA (milliamps), µA (microamps)20 mA LED, 500 µA sleep current
ResistanceOhm (Ω)kΩ (kilohms), MΩ (megohms)10 kΩ pull-up, 1 MΩ input impedance

Always convert to base units before calculating: 20 mA = 0.02 A, 10 kΩ = 10,000 Ω. Forgetting this is the source of most arithmetic errors.

Worked Examples

ProblemKnown valuesFormulaAnswer
Current through a 4Ω resistor on a 12V supplyV=12, R=4I = V/R3 A
Voltage drop across 10Ω with 2A flowingI=2, R=10V = I×R20 V
Resistor to limit LED to 20mA on 5V (LED Vf=2V)V=3, I=0.02R = V/I150 Ω → use 180 Ω
Current draw of a 60W lamp on 120V ACP=60, V=120I = P/V0.5 A
Resistance of a wire with 0.1V drop at 1AV=0.1, I=1R = V/I0.1 Ω

Power

Closely related to Ohm's Law — power dissipation matters whenever you're choosing components. Pick the wrong power rating and you'll have a smoking resistor:

P = V × I          (fundamental power formula)
P = I² × R        (when you know current and resistance)
P = V² / R        (when you know voltage and resistance)
ScenarioValuesPowerComponent needed
100mA through 47ΩI=0.1A, R=47Ω0.47 W1/2 W or 1 W resistor
5V across 1kΩV=5, R=100025 mW1/8 W resistor fine
12V 500mA motorV=12, I=0.56 WMOSFET with adequate power rating

The rule: always calculate dissipation, then choose a component rated at least 2× that value. Heat degrades components over time even below the rated maximum.

Series and Parallel Resistors

Ohm's Law applies to individual components and to combinations:

Series (same current through each):
  R_total = R1 + R2 + R3 + ...
  V_total = V1 + V2 + V3 + ...

Parallel (same voltage across each):
  1/R_total = 1/R1 + 1/R2 + 1/R3 + ...
  I_total = I1 + I2 + I3 + ...

Two resistors in parallel shortcut:
  R_total = (R1 × R2) / (R1 + R2)

Where It Doesn't Apply

Ohm's Law applies strictly to ohmic (resistive) components at constant temperature. These don't follow it:

ComponentBehaviorWhy it's non-linear
Diode / LEDExponential I-V curveRequires forward voltage threshold before conducting; ≈0.6–3.3V depending on type
Transistor (BJT)Current-controlledCollector current is β × base current, not V/R
CapacitorReactance (frequency-dependent)Impedance = 1/(2πfC); drops at high frequency
InductorReactance (frequency-dependent)Impedance = 2πfL; rises at high frequency
Thermistor / bulbResistance changes with temperatureTechnically ohmic at any instant, but R is not constant

References