Ohm's law says that the electrical current flowing through a conductor is directly proportional to the applied voltage and inversely proportional to its resistance (I = V/R), meaning if you double the voltage across a fixed resistor, the current doubles, but if you double the resistance, the current halves. This isn't just abstract textbook theory; it is the absolute governing rule for every wire you size, every LED you bias, and every breaker you install on the bench or in the panel.

When makers and electricians ask what does Ohm's law say, they are usually trying to figure out why a component failed, what wire gauge to pull, or how to interface a sensor without frying a microcontroller. According to All About Circuits, mastering this relationship is the single most critical hurdle between blindly copying schematics and actually designing functional, safe electronics.

The Core Formula and a Worked Numeric Example

The law is expressed in three interchangeable forms depending on what you need to solve for:

  • Current: I = V / R
  • Voltage: V = I × R
  • Resistance: R = V / I

To visualize this, think of voltage as water pressure in a pipe, current as the flow rate, and resistance as a physical pinch in the hose. That is the only analogy you need; the rest is pure math.

Worked Numeric Example: Sizing a Fuse for a DC Fan
You have a 12V DC power supply and want to power a small server cooling fan that has an internal coil resistance of 24Ω.
Using I = V / R, we calculate: 12V / 24Ω = 0.5 Amps (500mA).
What this changes in your installation: This tells you that a standard 22 AWG breadboard jumper (rated for ~1A) is physically sufficient to carry the load without melting. However, because DC motors experience a massive inrush current when the rotor is stalled at startup, you cannot use a fast-blow 0.5A fuse. Ohm's law gives you the steady-state baseline, dictating that you must select a 1A slow-blow fuse to survive the startup transient while still protecting the 22 AWG wire.

Where You Meet This in Practice

Ohm's law dictates the physical reality of your components. It is the reason we use specific wire gauges in home wiring and specific dropping resistors in low-voltage electronics. Here is how it manifests across different domains:

Scenario Known Values Formula Used Real-World Result
LED Current Limiting 5V source, 2V LED drop, 20mA target R = V / I → (5-2) / 0.02 Requires a 150Ω resistor
Wire Voltage Drop 10A load, 100ft 12 AWG (0.159Ω total loop) V = I × R → 10 × 0.159 1.59V lost as heat in the wire
I2C Pull-Up Resistor 3.3V ESP32 logic, 3mA max sink current R = V / I → 3.3 / 0.003 Minimum 1.1kΩ (4.7kΩ is standard)
Shunt Current Sensing 0.1Ω shunt, measuring 50mV drop I = V / R → 0.050 / 0.1 Load is drawing exactly 0.5A

In every one of these scenarios, Ohm's law bridges the gap between the schematic and the physical parts bin. It tells you exactly how much energy will be converted into heat versus useful work.

Real-World Scenario Walkthrough: The Melted LED Resistor

Theory is clean; the workbench is messy. Here is a classic failure mode that happens when you apply Ohm's law correctly but forget the physical limitations of the components you select.

  1. The Setup: A hobbyist is building a custom 12V automotive dashboard indicator using a 1W high-power white LED (Forward Voltage 3.2V, target continuous current 350mA). They decide to use a linear dropping resistor to limit the current from a 12V bench supply.
  2. The Numbers: The voltage drop required across the resistor is 12V - 3.2V = 8.8V. The target current is 0.35A. Using Ohm's law (R = V / I), they calculate 8.8V / 0.35A = 25.1Ω. They select a standard 27Ω resistor from their kit.
  3. The Outcome: The circuit is powered on. The LED lights up brightly. But after three minutes, the 27Ω resistor gets violently hot, the solder joints on the perfboard melt, and the resistor eventually cracks and fails open.
  4. What Went Wrong: Ohm's law gave the mathematically correct resistance to achieve 350mA. However, the hobbyist failed to calculate the power dissipation. The power burned off by that resistor was P = V × I (8.8V × 0.35A) = 3.08 Watts. The hobbyist had used a standard 1/4W (0.25W) through-hole resistor. The component was physically incapable of shedding 3 watts of heat.

This scenario highlights a critical reality: Ohm's law tells you the electrical relationship, but it does not tell you if the physical part will survive. You must always pair it with thermal calculations.

What People Commonly Confuse With Ohm's Law

Even experienced makers occasionally trip over the boundaries of Ohm's law. Here are the three most common confusions, as outlined by physics resources like Georgia State University's HyperPhysics:

1. Confusing Ohm's Law with Joule's Law (Watt's Law)

As seen in the melted resistor scenario above, people often say 'Ohm's law' when they actually mean the Power Law (P = I²R or P = VI). Ohm's law (V=IR) defines the ratio of voltage to current. Joule's law defines the rate of thermal energy dissipation. You need both to build safe circuits.

2. Assuming All Components are 'Ohmic'

Ohm's law strictly applies only to 'Ohmic' materials—components where resistance remains constant regardless of the applied voltage (like standard carbon film resistors or copper wire). Diodes, LEDs, and transistors are non-Ohmic. An LED does not have a fixed resistance; its voltage-current curve is exponential. If you try to measure an LED's resistance with a multimeter and then use V=IR to predict its behavior in a live circuit, your math will be completely wrong. For non-Ohmic devices, you must rely on the manufacturer's datasheet I-V curve, not Ohm's law.

3. Confusing it with Kirchhoff's Voltage Law (KVL)

KVL states that the sum of all voltage drops around a closed loop equals the source voltage. Ohm's law is the tool you use to calculate what those individual voltage drops actually are. KVL is the map; Ohm's law is the odometer.

FAQ: Quick Answers for the Workbench

Q: Does Ohm's law apply to AC circuits?
Yes, but with a modification. In alternating current circuits, you must replace simple Resistance (R) with Impedance (Z), which accounts for the phase shifts caused by capacitors and inductors. The formula becomes V = I × Z. For purely resistive AC loads (like a standard incandescent bulb or a space heater), standard V = I × R works perfectly using RMS voltage values.

Q: Why does my multimeter read a different resistance than the resistor's color bands?
Two reasons. First, manufacturing tolerance (a gold band means ±5%, so a 100Ω resistor could legally be 95Ω). Second, if you measure a resistor while it is still soldered into a circuit, you are likely measuring the parallel resistance of the surrounding components. Always measure resistance with the component isolated from the circuit and power completely removed.

Q: What happens to current if resistance drops to exactly zero?
Theoretically, I = V / 0 results in infinite current. In the real world, this is a dead short. The current will spike until it hits the physical limits of your power supply's internal resistance, the parasitic resistance of the copper traces, or until a protective device (fuse, breaker, or the power supply's overcurrent protection) violently interrupts the circuit. Never intentionally create a zero-ohm path across a voltage source.