To calculate watts from volts and amps, multiply the voltage (V) by the current (I). The foundational electrical power formula is P = V × I. If you have a 120V circuit drawing 10A, the power is 1,200W. This relationship governs everything from sizing a 5V Arduino USB feed to calculating the thermal output of a 240V baseboard heater. Below is the complete derivation, symbol mapping, and real-world application of the power equation.

The Core Power Equation: Symbols and Rearranged Forms

The relationship between power, voltage, and current is defined by Joule's first law and the fundamental definition of electrical work. The base formula is:

P = V × I

Table 1: Power Equation Symbol Definitions
Symbol Quantity Unit Name Unit Abbreviation Physical Meaning
P Power Watts W The rate of energy transfer or work done per second (Joules/second).
V Voltage Volts V Electrical potential difference (Joules per Coulomb).
I Current Amperes A The flow rate of electrical charge (Coulombs per second).

Rearranged Forms

Depending on which variables you measure on the bench, you will need to rearrange the formula. Algebraically solving for each variable yields:

  • To find Voltage: V = P / I
  • To find Current: I = P / V

When integrated with Ohm's Law (V = I × R), the power equation expands into two additional forms useful when resistance (R) is known but voltage or current is missing:

  • P = I² × R (Useful for calculating heat loss in transmission wires)
  • P = V² / R (Useful for calculating heating element output)

For a comprehensive visual map of these relationships, refer to the All About Circuits DC Power Wheel guide.

When the Formula Applies (and When It Fails)

The formula P = V × I is universally true for DC circuits and AC circuits with purely resistive loads (like incandescent bulbs, toaster ovens, and resistive space heaters). In these scenarios, the Power Factor (PF) is exactly 1.0, meaning all the power delivered by the source is converted into useful work or heat.

The AC Reactive Load Trap

The formula fails to give you true watts if you apply it blindly to AC reactive loads like induction motors, transformers, or switching LED drivers. These components introduce inductance or capacitance, causing the voltage and current waveforms to shift out of phase. For AC reactive circuits, V × I gives you Apparent Power (measured in Volt-Amps, VA), not True Power (Watts). To find true watts in an AC reactive circuit, you must multiply by the Power Factor:

P (Watts) = V × I × PF

If a 120V AC motor draws 10A but has a PF of 0.8, it consumes 960W of true power, not 1,200W. The All About Circuits AC Power chapter details the power triangle and phase angle math behind this discrepancy.

Realistic Answer Magnitudes

When your calculator spits out a number, use this scale to verify if your answer makes physical sense:

  • Milliwatts (mW): 0.001W to 1W. Typical for ESP32 deep sleep modes, I2C sensors, and standby microcontroller circuits.
  • Watts (W): 1W to 1,000W. Typical for LED lighting, laptop chargers, and small power tools.
  • Kilowatts (kW): 1,000W to 10,000W. Typical for residential HVAC, electric vehicle chargers, and electric ovens.
  • Megawatts (MW): 1,000,000W+. Utility-scale solar farms and industrial grid tie-ins.

Worked Examples with Unit Tracking

Always track your units through the calculation to catch decimal errors before they result in melted wire or tripped breakers.

Example 1: Sizing a Power Supply for a 12V DC LED Strip

Scenario: You are installing 5 meters of 12V DC LED strip. The manufacturer's datasheet states the strip draws 1.2A per meter. What is the total wattage, and what size power supply do you need?

  1. Identify knowns: V = 12V. I (per meter) = 1.2A. Length = 5m.
  2. Calculate total current: 1.2A/m × 5m = 6.0A total.
  3. Apply formula: P = V × I
  4. Substitute values: P = 12V × 6.0A
  5. Solve with units: P = 72 W
  6. Apply safety margin: The US Department of Energy recommends sizing power supplies at 120% of continuous load to prevent thermal throttling. 72W × 1.2 = 86.4W.
  7. Result: Purchase a 12V DC power supply rated for at least 90W (or 100W standard off-the-shelf).

Example 2: Breaker Sizing for a 240V AC Baseboard Heater

Scenario: You are wiring a 240V AC resistive baseboard heater rated at 1,500W. What is the current draw, and what size breaker is required?

  1. Identify knowns: V = 240V. P = 1,500W. (Assume PF = 1.0 because it is a resistive heating element).
  2. Rearrange formula: I = P / V
  3. Substitute values: I = 1,500W / 240V
  4. Solve with units: I = 6.25 A
  5. Apply NEC continuous load rule: Because a heater runs for 3+ hours, NEC Article 210.20(A) requires the branch circuit to be rated at 125% of the continuous load. 6.25A × 1.25 = 7.81A.
  6. Result: The next standard breaker size up is 10A (though 15A is the minimum standard readily available in most US panels). Use 14 AWG copper wire minimum (rated 15A at 60°C column) on a 15A double-pole breaker.

Common Unit Mistakes That Break the Math

The math is simple; the unit conversions are where DIYers and junior technicians fry components.

Warning: The Milliamp Trap
Microcontroller boards like the ESP32 or Arduino Nano often list current draws in milliamps (mA). If your ESP32 peaks at 240mA during WiFi transmission, you cannot plug 240 into the formula. You must convert to base units first: 240mA = 0.24A. Calculating 5V × 240 = 1,200W instead of the actual 1.2W will lead you to massively oversize your voltage regulator and waste money.
  • Confusing VA and W: When buying a UPS (Uninterruptible Power Supply), manufacturers advertise the VA rating (e.g., 1500VA). Due to the power factor of the internal inverter and your PC's switching power supply, a 1500VA UPS typically only supports 900W to 1000W of true load. Always check the 'Watts' spec, not just 'VA'.
  • Forgetting the Kilo- Prefix: If your solar inverter displays 4.5 kW, you must multiply by 1,000 to get 4,500W before dividing by your battery bank voltage (e.g., 48V) to find the DC current draw (4,500W / 48V = 93.75A). Dividing 4.5 by 48 will give you a nonsensical 0.09A.
  • Mixing AC RMS and Peak Voltage: Standard multimeters read AC voltage in RMS (Root Mean Square). A 120V AC outlet actually peaks at ~170V. Always use the RMS voltage (120V) in the P = V × I formula to get true average power. Using peak voltage will artificially inflate your wattage calculation by 41%.

FAQ: Calculating Watts from Volts and Amps

How to calculate watts from volts and amps for a 3-phase motor?

For a 3-phase AC system, the standard single-phase formula is insufficient because power is delivered across three overlapping waveforms. The formula for 3-phase true power is:

P = V × I × PF × √3

Where √3 is approximately 1.732. For example, a 480V 3-phase motor drawing 15A with a Power Factor of 0.85 consumes: 480V × 15A × 0.85 × 1.732 = 10,599W (or ~10.6 kW). Note that 'V' in this formula refers to the line-to-line voltage, not the line-to-neutral voltage.

How do I calculate watts from volts and amps if I only know resistance?

If you cannot measure current directly but you know the voltage and the resistance (in Ohms, Ω) of the load, substitute Ohm's Law (I = V / R) into the power equation. This gives you P = V² / R. For instance, if you apply 12V across a 4Ω heating resistor, the power is (12 × 12) / 4 = 144 / 4 = 36W. This is heavily used in audio engineering to calculate amplifier output into specific speaker impedances.

Why does my inverter show different watts and volt-amps from the same volts and amps?

Your inverter is correctly distinguishing between Apparent Power (VA) and True Power (W). If your inverter outputs 120V and your load draws 10A, the inverter must supply 1,200 VA of apparent power. However, if your load is a refrigerator compressor (an inductive motor) with a Power Factor of 0.7, the actual mechanical work and heat generated (True Power) is only 840W. The remaining 360 VAR (Volt-Amps Reactive) is energy sloshing back and forth in the magnetic fields of the motor, which the inverter's wiring and MOSFETs must still be physically sized to handle, even though it doesn't register as 'Watts' on your utility meter.