Ohm's triangle is a visual mnemonic device that arranges the variables of Ohm's Law (Voltage, Current, and Resistance) into a triangle to help you quickly solve for any missing value by covering the unknown variable. Applying its calculations changes your physical installation by dictating which wire gauges, current-limiting resistors, and breaker sizes you select to prevent thermal faults and excessive voltage drops.
The Core Formula and How the Triangle Works
At its core, the triangle is a geometric representation of the algebraic equation V = I × R. The letter V (Voltage, in Volts) sits at the top peak. The letters I (Current, in Amperes) and R (Resistance, in Ohms) sit side-by-side on the bottom base. If you need a mental model, think of voltage as water pressure, current as the flow rate, and resistance as a pinch in the hose—but once you understand the math, drop the analogy and trust the numbers.
To use the triangle, simply cover the variable you want to find with your thumb. The remaining visible letters tell you the mathematical operation required:
| Target Variable | Action | Resulting Formula | Units |
|---|---|---|---|
| Voltage (V) | Cover V | I × R | Volts (V) |
| Current (I) | Cover I | V / R | Amperes (A) |
| Resistance (R) | Cover R | V / I | Ohms (Ω) |
This visual shortcut eliminates the need to mentally rearrange algebraic formulas while holding a multimeter probe in one hand and a schematic in the other. For a deeper theoretical breakdown of the underlying physics, the All About Circuits textbook chapter on Ohm's Law provides excellent foundational reading.
Worked Numeric Example: Sizing a Current-Limiting Resistor
Let's apply the triangle to a common bench task: driving a standard 5mm red LED from an Arduino Nano GPIO pin without burning out the microcontroller.
• Source Voltage (V_source): 5.0V (from the ATmega328P VCC pin)
• LED Forward Voltage (V_f): 2.1V
• Target LED Current (I): 20mA (0.020A), well below the Nano's 40mA absolute maximum pin rating.
• Component: Standard 1/4W (0.25W) carbon film resistor.
Step 1: Find the Voltage Across the Resistor
The resistor doesn't see the full 5V; the LED drops 2.1V. Therefore, the voltage across the resistor (V_R) is 5.0V - 2.1V = 2.9V.
Step 2: Use Ohm's Triangle to Find Resistance
We know V (2.9V) and I (0.020A). We need R.
Cover R on the triangle. You are left with V over I (V / R).
R = 2.9V / 0.020A = 145 Ω.
Step 3: Select the Standard Component
Resistors are manufactured in standard E-series values. The closest standard E12 value above 145 Ω is 150 Ω. Using 150 Ω slightly reduces the current to 19.3mA, which is perfectly safe and virtually indistinguishable in brightness to the human eye.
Step 4: Verify Power Dissipation (The Missing Triangle)
Ohm's triangle doesn't calculate power, so we must verify the resistor won't overheat using P = I² × R.
P = (0.0193A)² × 150 Ω = 0.056W.
Since 0.056W is well below the 0.25W rating of a standard 1/4W through-hole resistor, the component selection is validated.
Where You Meet This in Practice
You will rely on this mental shortcut constantly in both low-voltage electronics and higher-voltage DC installations.
Troubleshooting 12V DC Voltage Drop:
When wiring a 5-meter run of 12V LED strip lights, you might measure 12.2V at the power supply but only 10.5V at the far end of the strip. If the strip draws 3A, you can use the triangle to find the parasitic resistance of your wire run. V_drop = 1.7V. I = 3A. R = V / I = 1.7 / 3 = 0.56 Ω. Knowing the wire resistance allows you to calculate the required AWG upgrade to keep the voltage drop under the recommended 3% threshold.
Verifying Heating Elements Before Energizing:
Before flipping a 30A double-pole breaker back on for a 240V baseboard heater, you can verify the element isn't shorted or open. A typical 1500W heater draws about 6.25A. Using the triangle (R = V / I), the expected resistance is 240V / 6.25A = 38.4 Ω. If your multimeter reads 38 Ω across the disconnected element terminals, it's intact. If it reads 0.1 Ω, you have a dead short and need to replace the element before energizing the circuit.
Common Confusions: Ohm's Triangle vs. The Power Triangle
The most frequent mistake beginners make is confusing Ohm's triangle with the Power Triangle (used in AC circuits) or the Watts Circle / PIE Triangle (used for calculating power in DC).
Ohm's triangle strictly deals with the relationship between Voltage, Current, and Resistance. It tells you nothing about energy consumption over time (Watts). The Power Triangle, on the other hand, maps Apparent Power (VA), Real Power (W), and Reactive Power (VAR) in alternating current systems where inductance and capacitance introduce phase shifts. If you are trying to figure out what size breaker to use for an AC motor, Ohm's triangle alone will give you the wrong answer because it ignores the power factor and impedance (Z). For DC circuits or purely resistive AC loads (like incandescent bulbs or resistive heaters), Ohm's triangle is perfectly sufficient, provided you use RMS voltage values for AC. For a practical guide on expanding this to power calculations, SparkFun's tutorial on Ohm's Law and Power bridges the gap between the two concepts.
Frequently Asked Questions
How do you use Ohm's triangle to find current?
To find current, place your thumb over the I on the triangle. You will see V sitting directly above R. This indicates division. The formula is Current = Voltage / Resistance (I = V / R). For example, if you apply 12V across a 4 Ω load, the current is 12 / 4 = 3 Amperes.
Does Ohm's triangle work for AC circuits?
Yes, but with strict caveats. In purely resistive AC circuits (like a toaster or space heater), you can use the triangle by substituting the RMS (Root Mean Square) voltage for DC voltage. However, in circuits with motors, transformers, or capacitors, resistance (R) is replaced by impedance (Z), which includes reactance. While the modified triangle (V = I × Z) still works to find magnitude, it ignores phase angle, meaning you cannot use it to calculate real power (Watts) without factoring in the power factor.
What is the difference between Ohm's triangle and the power wheel?
Ohm's triangle only solves for Voltage, Current, and Resistance. The power wheel (or PIE chart) is a larger, multi-quadrant diagram that incorporates Power (Watts) and expands the formulas to include variations like P = I²R and P = V²/R. Use Ohm's triangle when you need to size a resistor or check a wire's voltage drop; use the power wheel when you need to calculate heat dissipation, battery drain, or breaker sizing based on wattage.
Why is my multimeter reading different from my Ohm's triangle calculation?
Theory assumes ideal components; reality does not. If your calculated current is 20mA but your multimeter reads 18.5mA, the discrepancy usually comes from three sources: component tolerance (a standard resistor has a ±5% tolerance), parasitic resistance (the copper traces, breadboard contacts, and multimeter leads add small amounts of series resistance), and temperature coefficients (resistance changes as the component heats up). Always trust the measured value for final troubleshooting, but use the calculated value for initial design.






