The Ohm's law triangle is a visual mnemonic tool that arranges the variables of Ohm's law (Voltage, Current, Resistance) into a pyramid to quickly solve for any missing value in a DC circuit. Instead of memorizing three separate algebraic formulas, you simply cover the variable you want to find, and the remaining visible letters tell you whether to multiply or divide. While the math itself is basic algebra, applying this triangle correctly is what separates a safe, functional circuit from a melted wire harness or a fried microcontroller.
Decoding the Triangle Variables
Before running calculations, you need to know what the letters represent and their standard units of measurement. The triangle is divided into a top half and a bottom half.
- Top Section (V): Voltage, measured in Volts (V). This is the electrical potential difference pushing the electrons.
- Bottom Left (I): Current, measured in Amperes or Amps (A). This is the actual flow rate of electrons through the conductor.
- Bottom Right (R): Resistance, measured in Ohms (Ω). This is the opposition to the electron flow.
To use the tool, cover the variable you are trying to solve for with your thumb:
| Cover | Formula Revealed | Calculation | Real-World Scenario |
|---|---|---|---|
| V | I × R | Multiply bottom values | Finding voltage drop across a length of 14 AWG wire carrying 15A. |
| I | V / R | Divide top by bottom right | Determining how many amps a 12V heater element with 4Ω resistance will draw. |
| R | V / I | Divide top by bottom left | Sizing a current-limiting resistor for an LED connected to a 5V Arduino pin. |
If you need a mental model, use the water analogy exactly once and move on: Voltage is the water pressure in the pipe, Current is the gallons-per-minute flowing out, and Resistance is the pinch you put on the hose. More pressure (V) or a wider hose (lower R) means more flow (I). For deeper theoretical foundations, All About Circuits provides an excellent breakdown of DC Ohm's law and its linear relationships.
Worked Numeric Example: 12V LED Strip Resistor Sizing
Let's move from theory to the workbench. Suppose you are wiring a standard 5mm red indicator LED to a 12V DC bench power supply. If you connect the LED directly to 12V, it will instantly draw excessive current and pop. You need a current-limiting resistor.
Step 1: Identify known values from the datasheet.
LED Forward Voltage ($V_f$) = 2.0V
LED Target Forward Current ($I_f$) = 20mA (which is 0.020A)
Step 2: Calculate the voltage that must be dropped across the resistor.
The resistor must absorb the leftover voltage.
$V_R = V_s - V_f = 12.0V - 2.0V = 10.0V$.
Step 3: Use the Ohm's law triangle to find Resistance (R).
Cover the 'R' on the triangle. The formula is $V / I$.
$R = 10.0V / 0.020A = 500Ω$.
Step 4: Select the physical component.
500Ω is not a standard E12/E24 resistor value. The nearest standard value is 510Ω. Using 510Ω will slightly reduce the current to roughly 19.6mA, which is perfectly safe and virtually indistinguishable in brightness.
Step 5: Verify power dissipation (The step beginners skip).
Ohm's law gives you resistance, but you must also check the wattage rating so the resistor doesn't catch fire. Power ($P$) = $V imes I$.
$P = 10.0V imes 0.020A = 0.20W$.
A standard 1/4W (0.25W) carbon film resistor is technically sufficient, but bench practice dictates a 20% safety margin. Use a 1/2W (0.50W) resistor to keep it cool to the touch.
Where You Meet This in Practice
You will rely on this triangle constantly across different electrical and electronics disciplines. Here is where it dictates your physical installation choices:
- Microcontroller GPIO Interfacing: When wiring a push-button to an ESP32 or Arduino, you use a pull-up or pull-down resistor. If you use a 10kΩ pull-down on a 3.3V logic line, the triangle tells you the pin will only source 0.33mA ($3.3V / 10,000Ω$), safely preserving the microcontroller's internal current limits.
- Wire Sizing and Voltage Drop: If you are running 14 AWG THHN copper wire to a 120V outlet 100 feet away, the wire itself has resistance (roughly 0.25Ω for the 200-foot round trip). If the load draws 12A, the triangle ($V = I imes R$) reveals a 3V drop ($12A imes 0.25Ω$). This drops your outlet voltage to 117V, which is acceptable, but if the run were 300 feet, you'd be forced to upsize to 12 AWG or 10 AWG wire.
- Short Circuit Troubleshooting: When a breaker trips instantly, you use the triangle in reverse. A dead short means Resistance ($R$) approaches 0.01Ω. On a 120V circuit, $I = 120V / 0.01Ω = 12,000A$. This massive theoretical spike explains why the magnetic trip mechanism in a 20A breaker slams open in milliseconds to prevent a fire. Fluke's guide on electrical troubleshooting heavily relies on these fundamental relationships to diagnose field faults.
Common Confusions: DC Resistance vs. AC Impedance
The most frequent mistake DIYers and junior technicians make is trying to apply the standard DC Ohm's law triangle to AC circuits containing motors, transformers, or capacitors.
In a pure DC circuit, resistance is the only opposition to current. In an AC circuit, inductors and capacitors introduce reactance, which shifts the phase angle between voltage and current. You cannot simply add resistance and reactance together like normal numbers. Instead, you must use the Impedance Triangle, where Impedance ($Z$) is the vector sum of Resistance ($R$) and Reactance ($X$), calculated as $Z = \sqrt{R^2 + X^2}$.
Another common mix-up is confusing the Ohm's law triangle with the Power Triangle (or Watt's Law). The Ohm's law triangle solves for Volts, Amps, and Ohms. The Power triangle solves for Watts, Volts, and Amps ($P = V imes I$). If you need to find the wattage of a heater, you use the Power formula; if you need to find the resistance of the heating coil, you use the Ohm's law triangle. Electronics Tutorials provides a clear matrix showing how these two triangles intersect to form the broader Ohm's law wheel.
Frequently Asked Questions
How do you use the Ohm's law triangle to find current?
Place your thumb over the 'I' (Current) on the bottom left of the triangle. The remaining visible letters show 'V' on top and 'R' on the bottom right, separated by a horizontal line. This indicates division. To find current, divide the Voltage by the Resistance ($I = V / R$). Always ensure your voltage is in Volts and your resistance is in Ohms before calculating, otherwise your Amps reading will be off by orders of magnitude.
Does the Ohm's law triangle work for AC circuits?
Only for purely resistive AC loads, like incandescent light bulbs or resistive space heaters, where the power factor is 1.0. For AC circuits containing inductive loads (like AC motors or transformers) or capacitive loads, the simple triangle fails because it ignores phase shift. For those, you must upgrade to AC impedance calculations ($Z$) and account for the power factor to find true RMS current.
What is the difference between the Ohm's law triangle and the power triangle?
The Ohm's law triangle relates Voltage (V), Current (I), and Resistance (R) to determine how a circuit restricts electron flow. The Power triangle (often called Watt's Law) relates Power (P in Watts), Voltage (V), and Current (I) to determine how much work or heat the circuit generates. They are complementary: you often use the Ohm's law triangle to find the current first, then plug that current into the power formula to size your wire insulation and heat sinks.
Why is current represented by 'I' instead of 'C' in the triangle?
The 'I' stands for Intensité de courant (Intensity of Current), a term established by early French physicists like André-Marie Ampère. By the time international standards committees formalized electrical units, 'I' was already deeply embedded in global scientific literature. Using 'C' would have conflicted with the Coulomb (the unit of electrical charge) and Capacitance (measured in Farads), so 'I' remains the permanent standard for current in all electrical schematics and formulas.






