The short version is:
In those equations, V is voltage in volts, I is current in amps, and R is resistance in ohms. The letter I for current is historical, but it is the standard symbol you will see in schematics, equations, and datasheets.
What voltage actually means
Voltage is a difference in electric potential between two points. It is not something a component has in isolation; it is measured across two nodes. A 5 V supply means the positive rail is 5 volts higher than the reference rail, usually called ground.
A useful way to think about voltage is that it is the electrical pressure available to push charge through a path. That analogy is not perfect, but it is good enough to build intuition: more voltage across the same resistance tends to produce more current.
What current actually means
Current is the rate of flow of electric charge. In circuit design we usually care about conventional current, which is treated as flowing from positive to negative. Electron flow is physically opposite in a metal conductor, but conventional current is what most circuit diagrams and equations use.
Current is measured through a part of a circuit. This matters when using a multimeter: voltage is measured across two points, but current is measured by placing the meter in series with the path being tested. Accidentally putting a meter in current mode across a power supply can create a near-short circuit.
What resistance does
Resistance is opposition to current. For a simple resistor, if you double the voltage across it, the current doubles. If you double the resistance while keeping the voltage the same, the current halves. That predictable behaviour is why resistors are so useful.
Resistors are not only for "using up" voltage. They set currents, divide voltages, bias inputs, limit fault conditions, pull signals to known states, shape timing circuits, and convert current into a measurable voltage.
A simple worked example
Suppose a 1,000 ohm resistor has 5 V across it. The current is:
I = V / R
I = 5 V / 1000 ohm
I = 0.005 A
I = 5 mA
That means 5 milliamps flows through the resistor. If the resistor were 500 ohms instead, the current would be 10 mA. If it were 2,000 ohms, the current would be 2.5 mA.
Power is the part people forget
Ohm's law tells you the relationship between voltage, current, and resistance. It does not by itself tell you whether a component will survive. For that, you also need power.
Power is measured in watts. It becomes heat in resistive components. In the 1,000 ohm and 5 V example:
P = V x I
P = 5 V x 0.005 A
P = 0.025 W
P = 25 mW
A common quarter-watt resistor is rated for 0.25 W, so 25 mW is comfortable. But if you put 24 V across a 100 ohm resistor:
I = 24 V / 100 ohm = 0.24 A
P = 24 V x 0.24 A = 5.76 W
That is far beyond a small resistor. It would get hot very quickly, probably fail, and may damage nearby parts. This is why power checks are not optional.
Series and parallel behaviour
In a series path, the same current flows through each component. The voltage divides across the components depending on their resistance. In a parallel network, each branch has the same voltage across it, while the total current is the sum of the branch currents.
| Connection | Same quantity | What splits |
|---|---|---|
| Series | Current | Voltage |
| Parallel | Voltage | Current |
Where Ohm's law works cleanly
Ohm's law is exact for ideal resistors and a very good model for many real resistors across normal operating ranges. It also helps with wires, contacts, sensors, current shunts, pull-up resistors, dividers, and LED current-limiting resistors, provided you understand what part of the circuit is behaving resistively.
Where it needs care
Many components are not simple resistors. LEDs, diodes, transistors, motors, speakers, batteries, capacitors, inductors, and integrated circuits do not behave as fixed resistances in the same way. You can still use Ohm's law around them, but you need the right model.
For example, an LED has a forward voltage that changes with current, temperature, and device type. You usually estimate the LED voltage from a datasheet, subtract it from the supply voltage, and use Ohm's law only for the resistor that sets the LED current.
Practical habit
When checking a circuit, write down voltage, current, resistance, and power with units. Most mistakes become obvious when the units are visible. A calculation that says "0.02" is easy to misread; a calculation that says "0.02 A = 20 mA" is much harder to misuse.
How to use this in real design
Ohm's law is not just for homework. It is one of the fastest ways to sanity-check a design. If a microcontroller pin drives a load, estimate the current. If a resistor drops voltage, calculate the heat. If a sensor output goes into an ADC, calculate the divider current and the source impedance. If a cable is long, estimate the voltage drop.
Professionals do these checks constantly, often in their heads. The difference between beginner and experienced use is not that the formula changes. It is that experienced engineers know what assumptions they are making, and when the simple model is no longer enough.
Start a project