To calculate power in watts, multiply the voltage in volts by the current in amps (P = V × I). For resistive circuits where voltage is unknown, use P = I²R; where current is unknown, use P = V²/R. This fundamental relationship, known as Joule's Law or Watt's Law, governs everything from sizing a 5V microcontroller power supply to calculating the thermal dissipation of a high-voltage MOSFET.
While the basic multiplication is simple, applying it correctly on the bench requires strict unit tracking, an understanding of RMS versus peak voltages, and awareness of component tolerances. Below, we derive the formula from first principles, rearrange it for any missing variable, and walk through real-world calculations where unit mistakes typically cause design failures.
The Core Equation: Defining the Watt
The watt (W) is the SI derived unit of power, defined as one joule of energy transferred per second. To understand where P = V × I comes from, we look at the foundational definitions of voltage and current from physics:
- Voltage (V) is the energy (Work, W) per unit charge (q): V = W / q (Joules per Coulomb).
- Current (I) is the rate of charge flow over time (t): I = q / t (Coulombs per second).
Power is the rate of doing work over time: P = W / t. If we multiply Voltage by Current, the charge unit (Coulombs) cancels out:
(W / q) × (q / t) = W / t = Power
By combining this with Ohm's Law (V = I × R), we derive the complete family of DC power equations. According to the National Institute of Standards and Technology (NIST), maintaining strict adherence to these base SI units is mandatory for the math to resolve correctly.
| Symbol | Quantity | SI Unit | Unit Abbreviation | Definition in Context |
|---|---|---|---|---|
| P | Power | Watt | W | Rate of energy transfer or heat dissipation |
| V | Voltage | Volt | V | Electrical potential difference across a component |
| I | Current | Ampere | A | Flow rate of electrical charge through a conductor |
| R | Resistance | Ohm | Ω | Opposition to current flow (DC resistance) |
| W | Work/Energy | Joule | J | Total energy consumed or delivered over time |
| t | Time | Second | s | Duration of the energy transfer |
Rearranged Forms: Solving for Any Variable
On the bench, you rarely have all four variables (P, V, I, R) measured simultaneously. You usually know two and need to find the third. Here is the complete matrix of rearranged forms, assuming a purely resistive DC load:
To Solve for Power (P):
- P = V × I (When you know voltage and current)
- P = I² × R (When you know current and resistance — crucial for calculating I²R heat losses in wires)
- P = V² / R (When you know voltage and resistance — common for sizing heating elements)
To Solve for Voltage (V):
- V = P / I
- V = I × R (Ohm's Law)
- V = √(P × R)
To Solve for Current (I):
- I = P / V
- I = V / R (Ohm's Law)
- I = √(P / R)
To Solve for Resistance (R):
- R = V² / P
- R = P / I²
- R = V / I (Ohm's Law)
Solved Problems: Tracking Units from Milliamps to Kilowatts
The most common reason power calculations fail in hobbyist and junior engineering projects is a failure to convert prefixes to base SI units before multiplying. Here are two worked examples with explicit unit tracking.
Problem 1: Microcontroller Sleep Current (Milliamps to Watts)
Scenario: An ESP32-WROOM-32 module in deep sleep draws 150 µA (microamps) from a 3.3V LiPo regulator. What is the power dissipation?
- Identify knowns: V = 3.3 V, I = 150 µA.
- Convert to base units: 150 µA = 150 × 10⁻⁶ A = 0.00015 A.
- Select formula: P = V × I.
- Substitute and solve: P = 3.3 V × 0.00015 A = 0.000495 W (or 0.495 mW).
Bench Insight: At 0.495 mW, a 2000 mAh (7.4 Wh) 18650 cell could theoretically power this sleep state for over 600 days, ignoring self-discharge and regulator quiescent current.
Problem 2: Mains Heater Element (Kilowatts to Ohms)
Scenario: A 1500W ceramic space heater is plugged into a standard US 120V AC outlet. What is the current draw, and what is the hot resistance of the nichrome wire element?
- Identify knowns: P = 1500 W, V = 120 V (RMS).
- Solve for Current (I): I = P / V = 1500 W / 120 V = 12.5 A.
- Solve for Resistance (R): R = V² / P = (120 V)² / 1500 W = 14400 / 1500 = 9.6 Ω.
Bench Insight: A 12.5A draw on a standard 15A branch circuit leaves only 2.5A of headroom. If you plug a 5A vacuum into the same circuit, the 17.5A total will trip the thermal-magnetic breaker in seconds.
Real-World Scenario: Sizing a PSU for a 5-Meter WS2812B LED Strip
Abstract formulas mean nothing if they don't survive contact with real components. Let's walk through a classic maker project where power calculation errors lead to hardware failure.
The Setup
You are building an ambient lighting rig using a 5-meter spool of WS2812B addressable LEDs, populated at 60 LEDs per meter. You need to select a 5V DC power supply (PSU) that can handle the strip running at full-brightness, pure white (all three internal RGB diodes firing simultaneously).
The Numbers
- Total LEDs: 5 meters × 60 LEDs/m = 300 LEDs.
- Current per LED: The WS2812B datasheet specifies a maximum current draw of 60 mA (0.06 A) per LED at full white.
- Total Current (I): 300 LEDs × 0.06 A = 18 A.
- Total Power (P): P = V × I = 5 V × 18 A = 90 W.
- Engineering Overhead: Power supplies should not be run at 100% capacity continuously. Adding a 20% safety margin: 90 W × 1.2 = 108 W.
Component Selection: You purchase a Mean Well LRS-150-5, a 150W, 5V, 30A enclosed switching power supply.
The Outcome
The strip illuminates perfectly. The Mean Well PSU fan barely spins, and the casing remains warm but safe to touch. The voltage at the far end of the 5-meter strip measures 4.85V, well within the WS2812B's 3.5V to 5.3V logic threshold.
What Went Wrong (The Forum Mistake)
A user on a DIY forum attempted this exact build but used a cheap, unbranded '5V 10A' (50W) wall brick they found in a bin, assuming '5V is 5V'.
When they commanded full white, the strip demanded 18A. The 50W brick hit its 10A current limit. Instead of shutting down cleanly, the supply's internal protection circuitry allowed the voltage to sag to 3.2V to maintain the 10A output (P = 3.2V × 10A = 32W).
Because the voltage dropped below the LED's forward voltage threshold, the blue and green diodes starved, leaving only the red diodes (which have the lowest forward voltage) partially lit. The 'white' strip turned a dim, flickering magenta. By correctly applying P = V × I and respecting the 18A requirement, you avoid the 'voltage sag' trap entirely.
Assumptions, Unit Traps, and Realistic Magnitudes
The formulas above are ironclad, but only if the underlying assumptions of your circuit match the math. Here is where the theory meets the edge cases.
When the Formula Applies (and When It Doesn't)
P = V × I is universally true for instantaneous DC power. However, for AC circuits with reactive loads (motors, transformers, switching power supplies), voltage and current waveforms fall out of phase.
In these cases, P = V × I only gives you Apparent Power (measured in Volt-Amps, VA). To find Real Power (Watts), you must multiply by the Power Factor (PF): P = V × I × PF. If you are sizing a breaker for a 120V AC induction motor drawing 10A with a PF of 0.8, the real power is 960W, but the breaker must be sized for the 1200VA apparent power to handle the line current without tripping.
Unit Mistakes That Break the Math
- The RMS Trap: In AC circuits, the 120V at your wall is an RMS (Root Mean Square) value. The actual peak voltage is ~170V. If you use 170V in the P = V²/R formula for a 1500W heater, you will calculate 3010W and specify wire gauges that are dangerously oversized, or misdiagnose a fault.
- The Milli/Micro Trap: Multiplying 12V by 250mA directly yields 3000. If you forget to convert 250mA to 0.25A, you will think your circuit draws 3 kilowatts instead of 3 watts.
- Time Confusion: Power (Watts) is a rate. Energy (Watt-hours) is power multiplied by time. A 100W bulb running for 10 hours consumes 1000 Wh (1 kWh). Do not confuse the instantaneous power rating with the utility billing metric.
What a Realistic Answer Magnitude Looks Like
Developing an intuition for realistic magnitudes acts as a sanity check against calculator typos. According to the U.S. Department of Energy, typical household loads fall into predictable bands:
- Micro-power (µW to mW): RTC crystals, deep-sleep microcontrollers, remote controls.
- Fractional Watts (0.1W to 5W): Indicator LEDs, smartphone charging (standby), Wi-Fi routers.
- Tens of Watts (10W to 90W): Laptop chargers, LED lightbulbs, soldering irons, addressable LED strips.
- Hundreds of Watts (100W to 800W): Desktop PCs under load, large TVs, blenders, incandescent bulbs.
- Kilowatts (1000W to 5000W): Space heaters, microwaves, kettles, hair dryers, EV Level 2 chargers.
If you calculate the power of a 5mm indicator LED and get 45 Watts, you have dropped a decimal point; that LED would instantly vaporize. If you calculate the power of a toaster and get 1.2 Watts, you forgot to convert milliamps to amps. Trust the formula, track your units, and always verify the magnitude against physical reality.






