The Core Formula: Total AC Impedance

When analyzing AC circuits containing resistors, inductors, and capacitors, you cannot simply add their opposition values arithmetically. Because resistance and reactance are 90 degrees out of phase, you must use a calculator with a square root sign to evaluate their geometric sum. The foundational formula for total AC impedance in a series circuit is:

Z = √(R² + (XL - XC)²)

Below is the complete specification sheet for every symbol in this equation. Never plug numbers into your calculator without first confirming your units match this table exactly.

AC Impedance Formula Symbol Definitions
Symbol Unit Definition & Calculation
Z Ohms (Ω) Total Impedance. The vector sum of resistance and net reactance.
R Ohms (Ω) Resistance. Real power dissipation. Includes wire and parasitic ESR.
XL Ohms (Ω) Inductive Reactance. Calculated as 2πfL.
XC Ohms (Ω) Capacitive Reactance. Calculated as 1 / (2πfC).
f Hertz (Hz) Frequency of the AC source. Must be in base Hz, not kHz or MHz.
L Henries (H) Inductance. Must be converted from mH or μH to base Henries.
C Farads (F) Capacitance. Must be converted from μF or nF to base Farads.

Application Boundaries and Unit Traps

This formula applies strictly to sinusoidal steady-state AC analysis in linear circuits. It assumes ideal components unless you manually add parasitic elements (like an inductor's internal winding resistance) into the R variable. It does not apply to transient DC switching events, square-wave PWM analysis (without Fourier decomposition), or non-linear components like diodes.

Realistic Answer Magnitudes: For hobbyist and standard industrial circuits, Z typically ranges from 1 Ω (heavy power feeders) to 100,000 Ω (RF tank circuits). If your calculator outputs 0.00001 Ω or 4.5 × 10¹² Ω, you have made a unit conversion error, not a mathematical one.

Unit Mistakes That Break the Math

The most common reason a calculator with a square root sign yields garbage data is feeding it mixed prefixes. Watch out for these specific traps:

  • The Frequency Trap: Entering 60 kHz as 60 instead of 60000. This makes your reactance 1,000 times too small.
  • The Capacitance Trap: Entering 10 μF as 10 instead of 0.00001. This makes XC a billion times too small, effectively removing the capacitor from your math.
  • The Squaring Trap: Forgetting to square the net reactance term before adding it to R². The formula is R² + X², not (R + X)².

Rearranged Forms: Solving for Every Variable

On the bench, you rarely just solve for Z. Usually, you know your target impedance and need to find the missing component value. Here are the algebraically rearranged forms. Keep these handy when designing matching networks or filters.

  • Solve for Resistance (R):
    R = √(Z² - (XL - XC)²)
  • Solve for Net Reactance (Xnet):
    Xnet = √(Z² - R²)
  • Solve for Inductive Reactance (XL), given XC:
    XL = XC ± √(Z² - R²)
    (Note: The ± indicates two possible inductor values will yield the same total Z; one results in an inductive circuit, the other capacitive).
  • Solve for Capacitive Reactance (XC), given XL:
    XC = XL ± √(Z² - R²)

Worked Examples with Strict Unit Tracking

Let's run two real-world scenarios. We will track units through every intermediate step to prevent order-of-magnitude failures. For these examples, we assume the use of a standard scientific calculator.

Problem 1: Finding Total Impedance in a Series RL Circuit

Given: A motor winding modeled as R = 40 Ω and L = 50 mH, connected to a 60 Hz AC mains supply.
Find: Total Impedance (Z).

  1. Convert to base units: L = 50 mH = 0.05 H. f = 60 Hz.
  2. Calculate XL:
    XL = 2 × π × f × L
    XL = 2 × 3.14159 × 60 Hz × 0.05 H = 18.85 Ω
  3. Square the components:
    R² = 40² = 1600 Ω²
    XL² = 18.85² = 355.32 Ω²
  4. Apply the square root formula:
    Z = √(1600 + 355.32)
    Z = √(1955.32)
    Z = 44.22 Ω

Bench check: Z must be larger than R (40) and larger than XL (18.85), but smaller than their arithmetic sum (58.85). 44.22 Ω passes the sanity check.

Problem 2: Finding Missing Inductance in an RLC Circuit

Given: A series RLC circuit where Z = 100 Ω, R = 60 Ω, XC = 30 Ω, and f = 1,000 Hz. The circuit is known to be inductively dominant.
Find: Inductance (L) in millihenries.

  1. Rearrange for XL:
    Z² = R² + (XL - XC
    100² = 60² + (XL - 30)²
    10,000 = 3600 + (XL - 30)²
  2. Isolate the reactance term:
    6400 = (XL - 30)²
  3. Apply the square root:
    √6400 = XL - 30
    80 = XL - 30
    XL = 110 Ω
  4. Convert XL to L:
    XL = 2πfL → L = XL / (2πf)
    L = 110 / (2 × 3.14159 × 1000)
    L = 110 / 6283.18 = 0.0175 H
  5. Convert to requested units:
    0.0175 H × 1000 = 17.5 mH

Calculator Selection Decision Path

Not all calculators handle the square root of complex expressions equally. Basic four-function or cheap solar desktop calculators will force you to write down intermediate steps, introducing transcription errors. Use this decision tree to select the right tool for your workbench.

Bench Calculator Decision Matrix
If your workflow requires... Choose this Model Approx. Cost Why it wins
Basic RMS and simple impedance math on a budget Casio fx-115ES Plus $15 - $18 Natural textbook display shows the √ symbol exactly as written on paper.
Phasor math, complex numbers (j-operator), and polar/rectangular conversions Texas Instruments TI-36X Pro $22 - $28 Native complex number support eliminates manual sine/cosine phasor breakdowns.
Programmable memory for repetitive filter calculations and RPN entry HP 35s Scientific $55 - $70 RPN (Reverse Polish Notation) stack prevents parentheses errors entirely.
The Final Pick: For 95% of electrical hobbyists, students, and bench technicians, buy the TI-36X Pro. Its ability to natively calculate in polar and rectangular coordinates (e.g., entering 100∠30°) makes it vastly superior for AC theory than standard algebraic calculators, and it costs less than a decent multimeter probe set.

Keystroke Sequences and Error Prevention

Even with a high-end calculator, order-of-operations (PEMDAS) errors will corrupt your impedance math. When typing √(R² + (XL - XC)²) into an algebraic calculator, the most common failure is omitting the outer parentheses around the reactance subtraction.

Wrong Keystroke Sequence:
√ ( 40 x² + 18.85 - 30 x² )
Result: The calculator squares 40, adds 18.85, subtracts 30, and squares the final result before rooting. Completely invalid.

Correct Keystroke Sequence:
√ ( 40 x² + ( 18.85 - 30 ) x² )
Result: The calculator correctly squares the net reactance difference before adding it to the squared resistance.

For deeper study on AC impedance vectors and phasor diagrams, refer to the comprehensive guides at Electronics Tutorials. If you are upgrading your bench tools, review the official complex number manual for the TI-36X Pro on the Texas Instruments education portal to master polar-to-rectangular conversions.

By strictly tracking your units, utilizing the rearranged formulas, and relying on a scientific calculator with a proper square root function and parentheses handling, you will eliminate phantom math errors and design AC circuits with precision.