When calculating AC power, the trig power formulas link real work (Watts), reactive bounce (VARs), and total apparent power (VA) using the phase angle (θ). Unlike DC circuits where power is simply voltage times current, AC circuits require trigonometry to account for the time delay between voltage and current waveforms caused by inductive or capacitive loads. The direct answer to finding real power in a single-phase AC circuit is P = Vrms × Irms × cos(θ). Below is the complete derivation, symbol mapping, and decision framework for applying these formulas on the bench or jobsite.
The Core Trig Power Formulas and Symbol Definitions
The foundation of AC power analysis is the power triangle. The three core equations governing this relationship are:
- Real Power: P = Vrms × Irms × cos(θ)
- Reactive Power: Q = Vrms × Irms × sin(θ)
- Apparent Power: S = Vrms × Irms
- Power Triangle Identity: S = √(P² + Q²)
- Power Factor: PF = cos(θ) = P / S
Every symbol in these equations carries strict physical meaning and specific units. Mixing these up is the most common cause of calculation failure.
| Symbol | Name | Unit | Definition & Context |
|---|---|---|---|
| P | Real (Active) Power | Watts (W) | The actual work performed (heat, light, mechanical torque). Billed by the utility. |
| Q | Reactive Power | Volt-Amps Reactive (VAR) | Energy sloshing back and forth between the source and magnetic/electric fields. Does no real work. |
| S | Apparent Power | Volt-Amps (VA) | The vector sum of P and Q. Determines the physical sizing of wires, breakers, and transformers. |
| Vrms | RMS Voltage | Volts (V) | Root Mean Square voltage. For a 120V nominal US outlet, this is exactly 120V, not the 170V peak. |
| Irms | RMS Current | Amperes (A) | Root Mean Square current. Measured with a clamp meter set to AC. |
| θ | Phase Angle | Degrees (°) or Radians | The time shift between the voltage and current waveforms. Positive for inductive, negative for capacitive. |
| PF | Power Factor | Dimensionless (0 to 1) | The ratio of real power to apparent power. A measure of system efficiency. |
Application Boundaries: Assumptions and Unit Traps
Before plugging numbers into the trig power formulas, you must verify the circuit meets the underlying assumptions. These formulas are not universal laws; they are specific mathematical models.
When the Formulas Apply
These trig identities assume a steady-state, purely sinusoidal AC waveform driving a linear load (resistors, standard induction motors, incandescent heaters). Under these conditions, the displacement power factor (cos(θ)) perfectly describes the phase shift.
When the Formulas Break
If your circuit contains non-linear loads—such as Variable Frequency Drives (VFDs), switch-mode power supplies, or LED drivers—the current waveform becomes distorted with harmonics. In these cases, the simple cos(θ) formula fails to capture the total inefficiency. You must instead use the True Power Factor formula, which accounts for the Total Harmonic Distortion (THD) of the current. As noted in Fluke's power quality guidelines, measuring a distorted waveform with a standard averaging multimeter will yield dangerously inaccurate VA calculations; you need a True-RMS meter with power quality logging capabilities.
Unit Mistakes That Break the Math
Realistic Answer Magnitudes
What should your final numbers look like? In a typical residential setting, the aggregate Power Factor is usually between 0.85 and 0.95. In industrial settings with large unloaded induction motors, the PF can drop to 0.40 - 0.60. If you calculate a PF of 1.0 for a facility full of motors, your math is wrong. If you calculate a phase angle θ greater than 90° for a passive load, you have a sign error in your reactive power calculation.
Rearranged Forms for Rapid Variable Isolation
On the bench, you rarely have all variables. Here are the algebraically rearranged forms to isolate the unknown, saving you from doing the mental math while troubleshooting.
- Solve for RMS Current (Irms):
Irms = P / (Vrms × cos(θ)) or Irms = S / Vrms - Solve for RMS Voltage (Vrms):
Vrms = S / Irms or Vrms = P / (Irms × cos(θ)) - Solve for Phase Angle (θ):
θ = arccos(P / S) or θ = arctan(Q / P) - Solve for Reactive Power (Q):
Q = √(S² - P²) or Q = P × tan(θ) - Solve for Real Power (P):
P = √(S² - Q²) or P = S × cos(θ)
Note for 3-Phase Systems: If you are working on a 3-phase system, multiply the Vrms × Irms portion of the P, Q, and S formulas by √3 (approximately 1.732) when using Line-to-Line voltage and Line current.
Worked Examples with Strict Unit Tracking
Let's apply these formulas to real-world scenarios, tracking units at every step to prevent dimensional errors. For deeper theoretical background on the vector relationships used here, refer to the Power Triangle chapter in All About Circuits.
Example 1: Sizing a Breaker for an Inductive Load
Scenario: You are wiring a single-phase 240V AC compressor motor. The nameplate states it draws 18A (RMS) and has a lagging power factor of 0.78. What is the Real Power (W) and Apparent Power (VA) to determine the correct breaker size?
Step 1: Identify knowns.
- Vrms = 240 V
- Irms = 18 A
- PF (cos θ) = 0.78
Step 2: Calculate Apparent Power (S).
Breakers and wire ampacity must be sized to S, not P, because the wires must carry the total current regardless of whether it does real work.
- S = Vrms × Irms
- S = 240 V × 18 A
- S = 4,320 VA (or 4.32 kVA)
Step 3: Calculate Real Power (P).
- P = S × cos(θ)
- P = 4,320 VA × 0.78
- P = 3,369.6 W (or 3.37 kW)
Step 4: Calculate Phase Angle (θ) for context.
- θ = arccos(0.78)
- θ ≈ 38.7°
Conclusion: The motor does 3.37 kW of real mechanical work, but the circuit must be wired to handle 4.32 kVA. Following NEC 220 continuous load guidelines, you would size the breaker for 125% of the 18A full load current (22.5A), selecting a standard 25A or 30A double-pole breaker.
Example 2: Calculating Reactive Power for Compensation
Scenario: A manufacturing shop has a 50 kW (Real Power) load operating at a poor power factor of 0.65. The utility demands a PF of at least 0.90. How much Reactive Power (Q) must be cancelled out by adding a capacitor bank?
Step 1: Calculate current state (PF = 0.65).
- θ1 = arccos(0.65) = 49.46°
- Q1 = P × tan(θ1)
- Q1 = 50 kW × tan(49.46°)
- Q1 = 50 kW × 1.169
- Q1 = 58.45 kVAR (Inductive)
Step 2: Calculate target state (PF = 0.90).
- θ2 = arccos(0.90) = 25.84°
- Q2 = P × tan(θ2)
- Q2 = 50 kW × tan(25.84°)
- Q2 = 50 kW × 0.484
- Q2 = 24.20 kVAR (Inductive)
Step 3: Find the required capacitive compensation (Qc).
- Qc = Q1 - Q2
- Qc = 58.45 kVAR - 24.20 kVAR
- Qc = 34.25 kVAR (Capacitive)
Conclusion: You must install a capacitor bank rated for at least 34.25 kVAR to bring the power factor up to 0.90 and avoid utility penalty fees.
Decision Path: Power Factor Correction Sizing
Calculating the trig formulas is only half the job; deciding what physical hardware to install based on those numbers is where engineering meets reality. Use this decision tree to determine your corrective action when dealing with inductive loads.
| Measured Condition | Engineering Action | Concrete Hardware Pick (480V 3-Phase System) |
|---|---|---|
| PF ≥ 0.95 | No action required. System is highly optimized. Do not add capacitance, or you risk leading PF resonance. | N/A |
| 0.85 ≤ PF < 0.95 | Monitor utility bills. Defer hardware correction unless the utility explicitly enforces a penalty clause for PF below 0.90. | N/A |
| 0.70 ≤ PF < 0.85 (Calculated Qc < 10 kVAR) | Install a fixed capacitor bank directly at the motor starter or main distribution panel to cancel the specific inductive kVAR. | Schneider Electric VarPlus Can 5 kVAR 480V (Part: VLVAW4805000). Buy multiples to reach calculated Qc. |
| PF < 0.70 or Highly Variable Load | Fixed capacitors will cause over-correction when motors turn off. Install an Automatic Power Factor Correction (APFC) relay with switched capacitor stages. | Eaton PFC-8 Relay Controller paired with modular 10 kVAR contactor-switched stages. |






