When analyzing alternating current (AC) circuits, resistance and reactance do not simply add together like DC resistances. Because voltage and current waveforms shift in time, we must use vector math. The trigonometry basic formula for AC analysis relies on right-triangle relationships: specifically, the sine, cosine, and tangent ratios combined with the Pythagorean theorem. These formulas allow you to calculate impedance, phase angle, and power factor, translating abstract waveform shifts into concrete component values you can measure on a bench or jobsite.
The Core Trigonometry Basic Formula in AC Circuits
In sinusoidal steady-state AC analysis, we map circuit properties onto two distinct right triangles: the Impedance Triangle (for series circuits) and the Power Triangle (for system loads). The fundamental trigonometry basic formula applied here is the cosine ratio, which defines the Power Factor (PF), alongside the tangent ratio for phase angle and the Pythagorean theorem for magnitude.
- Assumption 1: The circuit is in a sinusoidal steady state (pure sine waves, no heavy harmonic distortion from VFDs or cheap LED drivers).
- Assumption 2: Components are linear. If your inductor core is saturating, the reactance ($X_L$) changes with current, breaking the static triangle model.
- Application: Use this for sizing conductors, calculating voltage drop across reactive loads, and sizing power factor correction capacitors for motors and transformers.
Below is the definitive symbol table for the variables in these trigonometric relationships.
| Symbol | Parameter | Unit | Triangle Mapping |
|---|---|---|---|
| $Z$ | Impedance | Ohms ($\Omega$) | Hypotenuse (Impedance Triangle) |
| $R$ | Resistance | Ohms ($\Omega$) | Adjacent (Impedance Triangle) |
| $X$ | Net Reactance ($X_L - X_C$) | Ohms ($\Omega$) | Opposite (Impedance Triangle) |
| $S$ | Apparent Power | Volt-Amps (VA) | Hypotenuse (Power Triangle) |
| $P$ | Real (Active) Power | Watts (W) | Adjacent (Power Triangle) |
| $Q$ | Reactive Power | Volt-Amps Reactive (VAR) | Opposite (Power Triangle) |
| $\theta$ | Phase Angle | Degrees ($^\circ$) | Angle between Adjacent and Hypotenuse |
The core equations bridging these variables are:
- Pythagorean: $Z = \sqrt{R^2 + X^2}$ and $S = \sqrt{P^2 + Q^2}$
- Cosine (Power Factor): $\cos(\theta) = \frac{R}{Z} = \frac{P}{S}$
- Tangent (Phase/Reactive Ratio): $\tan(\theta) = \frac{X}{R} = \frac{Q}{P}$
Rearranged Forms for Variable Isolation
On the bench, you rarely have all variables handed to you. You might know the real power drawn from a wattmeter and the apparent power from a clamp meter reading. Here is the rearranged forms list solving for each critical variable:
- Solve for $R$: $R = Z \cdot \cos(\theta)$ or $R = \frac{P}{I^2}$
- Solve for $X$: $X = Z \cdot \sin(\theta)$ or $X = R \cdot \tan(\theta)$
- Solve for $Z$: $Z = \frac{R}{\cos(\theta)}$ or $Z = \frac{V_{rms}}{I_{rms}}$
- Solve for $\theta$: $\theta = \arccos\left(\frac{P}{S}\right)$ or $\theta = \arctan\left(\frac{Q}{P}\right)$
- Solve for $Q$: $Q = P \cdot \tan(\theta)$
- Solve for $S$: $S = \frac{P}{\cos(\theta)}$
Worked Example 1: Motor Impedance and Phase Shift
Scenario: You are troubleshooting a 240V AC, 60Hz single-phase induction motor branch. Using an LCR meter on the disconnected windings, you measure a DC resistance $R = 12\Omega$ and an inductive reactance $X_L = 16\Omega$ at 60Hz. Find the total impedance, the phase angle, and the expected running current.
Step 1: Calculate Impedance ($Z$) using the Pythagorean theorem.
$Z = \sqrt{R^2 + X_L^2}$
$Z = \sqrt{12^2 + 16^2}$
$Z = \sqrt{144 + 256} = \sqrt{400} = 20\Omega$
Step 2: Calculate Phase Angle ($\theta$) using the tangent inverse.
$\theta = \arctan\left(\frac{X_L}{R}\right)$
$\theta = \arctan\left(\frac{16}{12}\right) = \arctan(1.333)$
$\theta = 53.13^\circ$ (Current lags voltage by 53.13 degrees).
Step 3: Calculate Expected Current ($I$).
$I = \frac{V}{Z} = \frac{240\text{V}}{20\Omega} = 12\text{A}$
Worked Example 2: Power Factor Correction Sizing
Scenario: A facility has a 5 kW (5000 W) air compressor running on a 480V AC, 60Hz supply. The utility meter reads a poor Power Factor (PF) of 0.75 lagging. The facility manager wants to correct the PF to 0.95 to avoid utility penalty fees. What size capacitor (in $\mu$F) is required?
Step 1: Determine initial reactive power ($Q_1$).
Initial angle $\theta_1 = \arccos(0.75) = 41.41^\circ$
$Q_1 = P \cdot \tan(\theta_1) = 5000\text{W} \cdot \tan(41.41^\circ)$
$Q_1 = 5000 \cdot 0.8819 = 4409.5\text{ VAR (inductive)}$
Step 2: Determine target reactive power ($Q_2$).
Target angle $\theta_2 = \arccos(0.95) = 18.19^\circ$
$Q_2 = P \cdot \tan(\theta_2) = 5000\text{W} \cdot \tan(18.19^\circ)$
$Q_2 = 5000 \cdot 0.3287 = 1643.5\text{ VAR}$
Step 3: Calculate required capacitive reactive power ($Q_C$).
$Q_C = Q_1 - Q_2 = 4409.5 - 1643.5 = 2766\text{ VAR}$
Step 4: Calculate required capacitive reactance ($X_C$).
Using the formula $Q_C = \frac{V^2}{X_C}$, we rearrange to $X_C = \frac{V^2}{Q_C}$
$X_C = \frac{480^2}{2766} = \frac{230400}{2766} = 83.30\Omega$
Step 5: Calculate capacitance ($C$) in Farads, then microfarads.
$X_C = \frac{1}{2 \pi f C} \Rightarrow C = \frac{1}{2 \pi f X_C}$
$C = \frac{1}{2 \cdot \pi \cdot 60 \cdot 83.30} = \frac{1}{31415.9} = 0.00003183\text{ F}$
$C = 31.83\text{ }\mu\text{F}$
Common Unit Mistakes That Break the Math
When plugging these formulas into a calculator or spreadsheet, three specific unit errors will silently ruin your design:
- Degrees vs. Radians: The $\arctan$ and $\arccos$ functions output radians by default in Python, C++, and many scientific calculators. If your calculator is in Radian mode, $\arccos(0.75)$ yields $0.722$ radians, not $41.41^\circ$. Always verify your calculator's mode (DEG vs RAD) before computing phase angles.
- Peak vs. RMS Voltage: In Step 4 of Example 2, we used $480\text{V}$. This is the RMS voltage. If you accidentally use the peak voltage ($480 \cdot \sqrt{2} = 678.8\text{V}$), your calculated $X_C$ will be exactly double what it should be, resulting in a capacitor that is half the required size, failing to correct the power factor.
- Mixing VA, W, and VAR: Apparent power ($S$) is measured in VA, Real power ($P$) in Watts, and Reactive power ($Q$) in VAR. You cannot add Watts and VARs directly ($5000\text{W} + 4409\text{VAR} \neq 9409\text{VA}$). You must use the Pythagorean theorem ($S = \sqrt{P^2 + Q^2}$) as defined by the power triangle principles.
Decision Path: Selecting the Physical Capacitor
Math gives you $31.83\text{ }\mu\text{F}$, but you cannot buy a "31.83" capacitor. You must select a physical component that handles the voltage, frequency, and continuous AC current without melting or exploding. Use this decision tree to terminate your design in a concrete part selection.
| Decision Criteria | If Condition Met... | Then Action / Specification |
|---|---|---|
| Capacitance Value | Calculated $C = 31.83\text{ }\mu\text{F}$ | Round UP to the nearest standard E12 series value: 33 $\mu$F. (Slight over-correction is acceptable; under-correction leaves penalty fees). |
| Voltage Rating | Line voltage is 480V AC RMS | Rule of thumb: Minimum 1.25x safety margin. $480 \cdot 1.25 = 600\text{V}$. Select a 600V AC rated film capacitor. Never use DC-rated electrolytics for AC line correction. |
| Dielectric Type | Continuous duty across AC mains | Must be Metallized Polypropylene Film (self-healing properties prevent catastrophic short-circuits from voltage transients). |
| Physical Mounting | Industrial panel environment | Select a cylindrical, can-style case with a pressure interrupter (fails open if gas builds up). |
Based on the decision path above, the exact component to specify on your BOM is a Cornell Dubilier 947D series, 33 $\mu$F, 600V AC metallized polypropylene film capacitor (e.g., CDE part number
947D336K600ACRSN or equivalent from Cornell Dubilier's AC film lineup). This part natively handles the 60Hz continuous ripple current and includes the required internal overpressure disconnect mechanism mandated by UL 810 for industrial power factor correction.






