The fundamental power voltage current formula is P = V × I (Power = Voltage × Current). It calculates the rate of energy transfer in an electrical circuit, measured in Watts (W). Whether you are sizing a breaker for a 240V baseboard heater or calculating the battery drain on a 3.3V ESP32 sensor node, this single equation is the starting point for all electrical load planning.
Below, we break down the formula, map out its rearranged forms, and run through bench- and jobsite-tested worked examples with strict unit tracking.
The Core Equation and Real-World Magnitudes
At its core, electrical power is the product of electrical potential (voltage) and the flow rate of charge (current). Think of water flowing through a pipe: voltage is the water pressure, current is the volume of water flowing per second, and power is the total kinetic energy the water can deliver to a waterwheel.
Symbol Definitions
| Symbol | Variable | Standard Unit | Unit Abbreviation |
|---|---|---|---|
| P | Power | Watt | W |
| V | Voltage (Potential Difference) | Volt | V |
| I | Current | Ampere | A |
Real-World Magnitude Reference Table
Before doing math, it helps to know what realistic answers look like. If your calculation yields a result wildly outside these typical ranges, you likely made a unit conversion error. This table maps common real-world loads to their V, I, and P values.
| Device / Load | Nominal Voltage (V) | Typical Current (I) | Calculated Power (P) |
|---|---|---|---|
| ESP32 DevKit (Wi-Fi TX) | 5.0 V | 0.160 A | 0.8 W |
| USB-C PD Laptop Charger | 20.0 V | 3.25 A | 65 W |
| 12V Automotive Halogen Headlight | 12.6 V | 4.50 A | 56.7 W |
| Standard US Space Heater | 120 V | 12.5 A | 1500 W |
| 240V Electric Clothes Dryer | 240 V | 25.0 A | 6000 W |
Rearranged Forms and Resistive Derivations
You will rarely have all three variables on hand. Here is the rearranged forms list solving for each primary variable, followed by the derivations that incorporate resistance (R).
Primary Rearrangements
- To find Voltage: V = P / I
- To find Current: I = P / V
Resistive Derivations (Incorporating Ohm's Law)
By substituting Ohm's Law (V = I × R) into the base formula, we get two critical variations used heavily in wire sizing and heating element design. You can read more about the foundational physics of these derivations on Georgia State University's HyperPhysics portal.
- Substituting V: P = (I × R) × I → P = I2 × R
Use case: Series circuits, calculating voltage drop and heat loss in wires where current is constant. - Substituting I: P = V × (V / R) → P = V2 / R
Use case: Parallel circuits, calculating power of fixed-voltage loads (like a 120V appliance plugged into a wall).
Assumptions, Limits, and Unit Traps
When the Formula Applies (and When It Doesn't)
The formula P = V × I calculates Real Power (Watts) perfectly in DC circuits. However, in AC circuits, it only yields Real Power if the load is purely resistive (like a toaster or incandescent bulb), meaning the Power Factor (PF) is 1.0.
If your AC load is reactive (induction motors, fluorescent ballasts, or Switched-Mode Power Supplies), voltage and current waveforms fall out of phase. For those, you must use the expanded AC formula:
P = V × I × PF
For a deeper dive into reactive vs. true power, All About Circuits provides an excellent breakdown of AC power triangles.
- The Milliamp Trap: Using mA directly in the formula without dividing by 1,000. (e.g., 5V × 500mA = 2500W. Wrong. It is 5V × 0.5A = 2.5W).
- The Kilowatt Trap: Dividing Watts by Kilowatts without adjusting. If a heater is 1.5 kW, you must use 1500 W in the formula.
- Peak vs. RMS: In AC, standard multimeters read RMS voltage. If you use an oscilloscope and measure Peak voltage (e.g., 170V peak on a 120V RMS line), your power calculation will be wildly inflated unless you convert to RMS first.
Worked Examples with Unit Tracking
Let's apply the formula to two common scenarios: calculating wire heat dissipation on the bench, and sizing a branch circuit breaker on the jobsite.
Problem 1: Calculating Heat Dissipation in a DC Wire Run
Scenario: You are wiring a 12V LiFePO4 battery bank to a solar charge controller using 10 AWG copper wire. The wire has a resistance of approximately 1 mΩ (0.001 Ω) per foot. The total loop length (positive and negative) is 100 feet. The system pulls a steady 15 A. How much power is lost as heat in the wire?
- Identify knowns:
I = 15 A
R = 100 ft × 0.001 Ω/ft = 0.1 Ω - Select the correct formula:
Since we know current and resistance, use the resistive derivation: P = I2 × R - Substitute and track units:
P = (15 A)2 × 0.1 Ω
P = 225 A2 × 0.1 Ω - Calculate final value:
P = 22.5 W
Bench Insight: 22.5W of heat distributed across 100 feet of wire is negligible and safe. But if you used 18 AWG wire (higher resistance), that heat would concentrate and melt the insulation.
Problem 2: Sizing a Breaker for a 240V Baseboard Heater
Scenario: You are installing a 1500 W electric baseboard heater on a dedicated 240 V AC circuit. What is the current draw, and what size breaker do you need?
- Identify knowns:
P = 1500 W
V = 240 V - Select the correct formula:
We need to find current, so rearrange to: I = P / V - Substitute and track units:
I = 1500 W / 240 V
I = 6.25 A - Apply Code Derating (Crucial Step):
Baseboard heaters are considered "continuous loads" (running for 3 hours or more). Per NFPA 70 (NEC) Article 210.20(A), continuous loads require the branch circuit to be sized at 125% of the calculated load.
6.25 A × 1.25 = 7.81 A - Select standard breaker size:
The next standard breaker size up from 7.81 A is a 15 A breaker. (Use 14 AWG or 12 AWG wire, depending on local AHJ preferences for 240V circuits).
Realistic Magnitudes and Bench Sanity Checks
Developing an intuition for power magnitudes prevents catastrophic wiring errors and silly math mistakes. Use this quick-reference scale to sanity-check your answers before cutting wires or ordering components.
| Category | Typical Power Range | Sanity Check Example |
|---|---|---|
| Microcontrollers & Sensors | 0.01 W to 2 W | An Arduino Nano deep-sleeping draws ~0.05W. If you calculate 50W, check your mA decimal placement. |
| Consumer Electronics | 10 W to 300 W | A gaming laptop under load pulls ~200W. A 65W charger will result in brownouts. |
| Small Appliances (120V) | 600 W to 1500 W | Microwaves and toasters max out around 1500W, which is exactly the limit of a standard US 15A/120V circuit (1800W theoretical max). |
| Heavy Appliances (240V) | 3000 W to 10000 W | Electric vehicle Level 2 chargers typically pull 7200W (30A at 240V). |
When you finish a calculation, pause and ask: Does this physical device actually exist in this power tier? If you calculate that a standard 120V household outlet is delivering 15,000 W, you haven't discovered free energy; you've likely multiplied by 120 instead of dividing, or ignored the 15A breaker that would have tripped instantly. Trust the formula, but always verify the magnitude against physical reality.






