The fundamental equation of power factor (PF) in a sinusoidal AC circuit is PF = P / S (Real Power divided by Apparent Power), which is mathematically equivalent to PF = cos(θ), where θ is the phase angle between voltage and current. In purely resistive or series-impedance models, it also equals R / Z (Resistance over Impedance). A realistic PF magnitude ranges from 0.99 (resistive heaters) down to 0.80–0.85 (heavily loaded induction motors) and drops below 0.50 for lightly loaded transformers. If your calculation yields a number outside the 0.00 to 1.00 absolute range, a unit or formula error has occurred.
The Core Equation of Power Factor and Symbol Definitions
Power factor is a dimensionless ratio representing the efficiency of power transfer in an AC system. It dictates how much of the supplied apparent power is actually doing useful work. Below is the primary spec-sheet-table defining every variable in the standard power triangle and impedance triangle derivations.
| Symbol | Name | Standard Unit | Definition & Context |
|---|---|---|---|
| PF | Power Factor | Dimensionless (or %) | Ratio of real power to apparent power. Often expressed as a decimal (0.85) or percentage (85%). |
| P | Real (Active) Power | Watts (W) or kW | The power that performs actual work (heat, mechanical torque). Measured by a standard wattmeter. |
| S | Apparent Power | Volt-Amps (VA) or kVA | The vector sum of real and reactive power. The total power the utility must supply. |
| Q | Reactive Power | Volt-Amps Reactive (VAR) | Power that oscillates between source and load, sustaining magnetic/electric fields but doing no net work. |
| θ | Phase Angle | Degrees (°) or Radians | The angular displacement between the voltage and current waveforms. Positive θ implies lagging (inductive) current. |
| R | Resistance | Ohms (Ω) | The real component of impedance that dissipates energy as heat. |
| Z | Impedance | Ohms (Ω) | The total vector opposition to AC current flow, combining resistance and reactance. |
Rearranged Forms: Solving for Any Variable
On the bench or in the field, you rarely have all variables handy. Here are the algebraically rearranged forms of the core equations, allowing you to solve for any missing parameter assuming a linear, sinusoidal steady-state.
- Solving for Real Power (P):
P = S × PF|P = S × cos(θ) - Solving for Apparent Power (S):
S = P / PF|S = √(P² + Q²) - Solving for Phase Angle (θ):
θ = arccos(PF)|θ = arctan(Q / P) - Solving for Resistance (R):
R = Z × PF|R = Z × cos(θ) - Solving for Impedance (Z):
Z = R / PF|Z = √(R² + X²) - Solving for Reactive Power (Q):
Q = P × tan(θ)|Q = S × sin(θ)
arccos(PF) on a scientific calculator or writing a Python script for an ESP32 power monitor, ensure your environment is set to degrees if you want the human-readable phase angle (e.g., 31.7°). The math.acos() function in C++ and Python defaults to radians.
Worked Examples with Strict Unit Tracking
Abstract formulas fail in the field without rigorous unit tracking. Below are two distinct scenarios—one macro-scale industrial, one micro-scale benchtop—solved step-by-step.
Problem 1: 3-Phase Industrial Motor Nameplate
Given: A 3-phase induction motor operating at 480V line-to-line, drawing 20A line current, and consuming 14 kW of real power.
Find: The operating power factor.
- Calculate Apparent Power (S) for a 3-phase system:
Formula:S = √3 × V_line × I_line
Calculation:S = 1.732 × 480 V × 20 A
Result:S = 16,627.2 VA(or 16.63 kVA) - Convert Real Power (P) to base units:
P = 14 kW = 14,000 W - Apply the primary equation of power factor:
Formula:PF = P / S
Calculation:PF = 14,000 W / 16,627.2 VA
Result:PF = 0.8419(Lagging, as it is a motor)
Answer: The motor is operating at a power factor of 0.84.
Problem 2: Benchtop Series RLC Circuit
Given: A series circuit with R = 50Ω, L = 0.2H, C = 50μF, driven by a 60Hz AC source.
Find: The circuit power factor using the impedance triangle.
- Calculate Inductive Reactance (X_L):
Formula:X_L = 2πfL
Calculation:X_L = 2 × π × 60 Hz × 0.2 H = 75.40 Ω - Calculate Capacitive Reactance (X_C):
Formula:X_C = 1 / (2πfC)
Calculation:X_C = 1 / (2 × π × 60 Hz × 0.000050 F) = 53.05 Ω - Find Net Reactance (X):
X = X_L - X_C = 75.40 Ω - 53.05 Ω = 22.35 Ω(Net inductive) - Calculate Total Impedance (Z):
Formula:Z = √(R² + X²)
Calculation:Z = √(50² + 22.35²) = √(2500 + 499.52) = √2999.52 = 54.77 Ω - Apply the impedance equation of power factor:
Formula:PF = R / Z
Calculation:PF = 50 Ω / 54.77 Ω
Result:PF = 0.9129
Answer: The circuit power factor is 0.91 (Lagging, since X_L > X_C).
When the Formula Applies (and Which Unit Mistakes Break It)
The equations above assume sinusoidal steady-state AC and linear loads. If you apply PF = P/S blindly to modern electronics, you will get misleading results.
The Non-Linear Load Trap (THD)
Variable Frequency Drives (VFDs), LED drivers, and PC power supplies draw current in sharp, non-sinusoidal pulses. This introduces Total Harmonic Distortion (THD). For non-linear loads, the true power factor is the product of Displacement Power Factor (cos θ of the fundamental frequency) and Distortion Power Factor. Standard multimeters measuring only the fundamental frequency will report a falsely high PF. You must use a true-RMS power analyzer (like a Fluke 435) to capture the true apparent power including harmonics. For a deep dive into true vs. apparent power, refer to the foundational texts on AC power theory at All About Circuits.
Unit Mistakes That Break the Math
- Mixing kW and kVA without scaling: If P is in Watts (14,000) and S is in kVA (16.6), dividing them yields 843, not 0.84. Always convert both to base units (W and VA) or both to kilo-units before dividing.
- Forgetting √3 in 3-phase systems: Using the single-phase formula
S = V × Ion a 3-phase motor will understate S by a factor of 1.732, resulting in an impossible PF greater than 1.0. - Using Peak Voltage instead of RMS: The formula requires RMS voltage and current. If your oscilloscope reads 170V peak on a 120V line, using 170V in the S calculation will artificially inflate S and crash your PF to ~0.70.
Decision Tree: Sizing a Correction Capacitor Based on Your Result
Once you calculate a lagging power factor, the next step is deciding whether to correct it and, if so, exactly what hardware to buy. Utilities typically penalize industrial facilities with a PF below 0.90 or 0.95. Use the decision-tree-table below to terminate your analysis with a concrete hardware pick.
| Calculated PF | Condition / Action | Concrete Hardware Pick / Next Step |
|---|---|---|
| ≥ 0.95 | Optimal. No correction needed. Utility penalties do not apply. | Action: Do nothing. Log baseline for predictive maintenance. |
| 0.85 to 0.94 | Marginal. Acceptable for small shops, but may trigger utility demand charges on large feeds. | Action: Install automatic capacitor banks if utility contract mandates PF > 0.90. |
| < 0.85 | Poor. High reactive current is wasting conductor ampacity and causing voltage drop. | Action: Calculate required kVAR and install fixed or switched capacitors. |
Terminating the Decision: A Concrete Sizing Example
Let us return to Problem 1, where our 3-phase, 480V, 14 kW motor yielded a PF of 0.84. Our utility contract mandates a minimum PF of 0.95. We must size a correction capacitor.
- Find the target phase angle (θ_target):
θ_target = arccos(0.95) = 18.19° - Find the current phase angle (θ_current):
θ_current = arccos(0.84) = 32.86° - Calculate required Reactive Power (Q_c) to inject:
Formula:Q_c = P × [tan(θ_current) - tan(θ_target)]
Calculation:Q_c = 14 kW × [tan(32.86°) - tan(18.19°)]
Q_c = 14 × [0.6459 - 0.3287] = 14 × 0.3172 = 4.44 kVAR






