The fundamental electrical power formula is P = V × I (Power equals Voltage multiplied by Current). When combined with Ohm’s Law for purely resistive circuits, this expands into two equally critical variants: P = I²R and P = V²/R. These equations calculate the rate at which electrical energy is transferred, converted, or dissipated as heat, measured in watts (W).
Whether you are sizing a resistor for an LED driver, calculating the continuous load on a 20A branch circuit, or estimating the Joule heating losses in a solar array feeder, you must use these formulas with strict adherence to base SI units. Below is the complete derivation, rearranged forms, and bench-tested examples with explicit unit tracking.
The Core Electrical Power Formula and Symbol Definitions
Electrical power is the time rate of doing work or transferring energy. In a DC circuit, or an AC circuit with a purely resistive load (where voltage and current are perfectly in phase), the relationship between power, voltage, current, and resistance is absolute. According to the NIST standard for SI units, the watt is defined as one joule per second (J/s).
| Symbol | Quantity | Standard SI Unit | Unit Abbreviation | Base SI Equivalence |
|---|---|---|---|---|
| P | Power | Watt | W | Joules / second (J/s) |
| V | Voltage (Potential Difference) | Volt | V | Joules / Coulomb (J/C) |
| I | Current | Ampere | A | Coulombs / second (C/s) |
| R | Resistance | Ohm | Ω | Volts / Ampere (V/A) |
Deriving the Resistive Variants
By substituting Ohm’s Law (V = I × R and I = V / R) into the base power equation, we derive the forms used to calculate Joule heating (parasitic heat loss in wires and components):
- P = V × I (Base formula)
- Substitute V: P = (I × R) × I → P = I²R (Used to find heat loss when current and resistance are known)
- Substitute I: P = V × (V / R) → P = V²/R (Used to find power dissipation when voltage drop and resistance are known)
Rearranged Forms: Solving for Voltage, Current, and Resistance
On the bench, you rarely have all four variables. Here is the complete matrix of rearranged formulas to solve for any missing variable, assuming a resistive load:
- Solving for Voltage (V):
- V = P / I
- V = √(P × R)
- Solving for Current (I):
- I = P / V
- I = √(P / R)
- Solving for Resistance (R):
- R = V² / P
- R = P / I²
Worked Examples with Strict Unit Tracking
The most common point of failure for hobbyists and junior technicians is failing to track units through the calculation, particularly when dealing with squared terms. Below are two solved problems demonstrating strict unit tracking.
Problem 1: Sizing a Power Supply for a 12V DC LED Strip
Scenario: You are wiring a 5-meter roll of 12V DC SMD 5050 LED strip. The datasheet specifies a current draw of 1.2A per meter. You need to find the total power to select an appropriately sized DC power supply (adding a 20% safety headroom).
- Identify knowns: V = 12V, Iper_meter = 1.2A, Length = 5m.
- Calculate total current: Itotal = 1.2 A/m × 5 m = 6.0 A.
- Apply base formula: P = V × I
- Substitute with units: P = 12 V × 6.0 A
- Track base SI units: P = (12 J/C) × (6.0 C/s) = 72 J/s
- Convert to Watts: 72 J/s = 72 W.
- Apply safety headroom: 72 W × 1.20 = 86.4 W.
Result: You must purchase a 12V DC power supply rated for at least 90W (or roughly 7.5A). A standard 100W (8.5A) switching power supply is the correct off-the-shelf choice.
Problem 2: Calculating Resistance and Current for a 240V Baseboard Heater
Scenario: You are troubleshooting a 240V AC electric baseboard heater rated at 1500W. The heating element is purely resistive. You need to verify the expected current draw and the cold resistance of the element using your multimeter.
- Identify knowns: V = 240V, P = 1500W. (Note: For purely resistive AC loads, the RMS voltage and average power behave exactly like DC in these formulas).
- Solve for Current (I):
- Formula: I = P / V
- Substitute: I = 1500 W / 240 V
- Units: (J/s) / (J/C) = C/s = Amperes
- Calculation: 1500 / 240 = 6.25 A.
- Solve for Resistance (R):
- Formula: R = V² / P
- Substitute: R = (240 V)² / 1500 W
- Calculation: R = 57,600 V² / 1500 W = 38.4 Ω.
Result: The breaker must handle at least 6.25A (a 15A double-pole breaker is standard). When the heater is cold and disconnected from mains, your multimeter should read approximately 38.4 Ω across the element terminals. (Note: Nichrome wire resistance increases slightly with temperature, so the hot operational resistance will be marginally higher than the cold multimeter reading).
Assumptions, Limitations, and Common Unit Mistakes
When the Formula Applies (and When It Doesn't)
The formulas P = VI, P = I²R, and P = V²/R apply perfectly to all DC circuits and AC circuits with purely resistive loads (like incandescent bulbs, toaster coils, and resistive heating elements).
They do not calculate true power (Real Power, measured in Watts) for AC circuits containing inductance or capacitance (like AC motors, transformers, or fluorescent ballasts). In those reactive AC circuits, voltage and current fall out of phase. You must multiply the result by the Power Factor (PF) to get true power: Ptrue = V × I × PF. The raw V × I calculation in a reactive circuit yields Apparent Power, measured in Volt-Amperes (VA), not Watts.
The "Milliamp Trap" and Other Unit Mistakes
The most catastrophic math errors on the bench happen when technicians forget to convert sub-units to base SI units before squaring them.
- The mA Trap: If a microcontroller draws 50 mA (0.05 A) through a 10 Ω shunt resistor, the heat dissipated is P = I²R. If you plug in 50 directly: 50² × 10 = 25,000 W. This is physically impossible and will lead to wildly incorrect component selections. You must convert to base units first: (0.05 A)² × 10 Ω = 0.0025 × 10 = 0.025 W (25 milliwatts).
- The kW Trap: When calculating current for a 2.5 kW inverter on a 12V battery bank, you cannot use 2.5. You must use 2500 W. I = 2500 / 12 = 208.3 A. Using 2.5 yields 0.2 A, which would result in sizing the battery cables for a flashlight instead of a welder.
Realistic Answer Magnitudes
A quick sanity check against realistic magnitudes will catch decimal errors before you wire a circuit. According to Georgia State University's HyperPhysics database, typical power draws fall into predictable bands:
| Device / Load Type | Typical Voltage | Realistic Power Range | Sanity Check Threshold |
|---|---|---|---|
| Microcontroller (ESP32/Arduino) | 3.3V - 5V | 0.1 W to 2 W | If > 5W, check for short circuit |
| USB-C PD Laptop Charger | 20V | 45 W to 100 W | If > 240W, calculation error |
| Standard US Household Receptacle | 120V | 1440 W (continuous) | Max 1800W on a 15A breaker |
| Electric Vehicle Level 2 Charger | 240V | 7,200 W to 11,500 W | Requires 40A to 60A dedicated circuit |
Frequently Asked Questions
What is the electrical power formula for 3-phase AC systems?
For balanced 3-phase AC systems, the true power formula incorporates the square root of 3 (approximately 1.732) and the Power Factor (PF). The formula is: P = √3 × VL × IL × PF, where VL is the line-to-line voltage and IL is the line current. If you are calculating Apparent Power (kVA) rather than Real Power (kW), you drop the PF from the equation.
How does the electrical power formula change when power factor is less than 1?
When the power factor (PF) is less than 1—common in circuits with induction motors, compressors, or large transformer banks—the simple P = V × I formula only gives you Apparent Power (VA). To find the actual Real Power (W) doing useful work or generating heat, you must multiply by the PF: P = V × I × PF. The remaining power is Reactive Power (VAR), which sloshes back and forth between the source and the magnetic/electric fields of the load without doing real work, but still causes I²R heating losses in the supply wires.
Why does the electrical power formula use squared current for heat loss?
The P = I²R variant specifically describes Joule heating (resistive loss). It uses squared current because both the energy per charge (voltage drop) and the rate of charge flow (current) increase proportionally when current increases through a fixed resistance. Doubling the current through a wire doesn't double the heat generated; it quadruples it. This is why high-voltage, low-current transmission lines are used by the utility grid: by stepping up the voltage to push the same amount of power, the current drops drastically, reducing I²R line losses to a fraction of what they would be at lower voltages.






