If you are building AC filters, tuning antenna matching networks, or debugging motor drives, you need to know exactly how to calculate in calculator environments for AC impedance (Z) and phase angle (θ). Abstract theory is fine for textbooks, but on the bench, a misplaced parenthesis or a wrong angle mode will give you a phantom number that sends you down a two-hour debugging rabbit hole.
This guide gives you the exact formulas, the rearranged algebraic forms, and the literal button-press sequences for modern scientific calculators (like the TI-36X Pro and the Casio fx-991CW ClassWiz) to solve series AC circuits flawlessly.
The Core Formulas and Symbol Definitions
The total opposition to alternating current in a series circuit is impedance. It combines pure resistance (which dissipates heat) and reactance (which stores and releases energy in magnetic or electric fields). Below is the master formula and the definition of every symbol you will punch into your keypad.
| Symbol | Parameter | Unit | Calculator Input Notes |
|---|---|---|---|
| Z | Total Impedance | Ohms (Ω) | Always a positive magnitude. |
| R | Resistance | Ohms (Ω) | Enter as a real number. |
| XL | Inductive Reactance | Ohms (Ω) | XL = 2πfL. Positive value. |
| XC | Capacitive Reactance | Ohms (Ω) | XC = 1 / (2πfC). Subtracted in formula. |
| X | Net Reactance | Ohms (Ω) | X = XL - XC. Can be negative. |
| θ | Phase Angle | Degrees (°) | Positive = inductive, Negative = capacitive. |
| f | Frequency | Hertz (Hz) | Must be base Hz, not kHz or MHz. |
The Master Impedance Formula:
Z = √(R² + (XL - XC)²)
The Phase Angle Formula:
θ = tan⁻¹((XL - XC) / R)
Rearranged Forms List
When you are designing a circuit and need to find a missing component value rather than the total impedance, use these algebraically isolated forms:
- Solve for R: R = √(Z² - X²) (where X is net reactance)
- Solve for Net X: X = √(Z² - R²)
- Solve for XL (if XC is 0): XL = √(Z² - R²)
- Solve for XC (if XL is 0): XC = √(Z² - R²)
- Solve for θ: θ = tan⁻¹(X / R)
- Solve for R (from angle): R = X / tan(θ)
When This Applies (And When It Breaks)
These formulas assume sinusoidal steady-state AC and linear components. They apply perfectly to standard 50/60Hz mains filters, audio crossover networks, and RF tank circuits driven by a clean sine wave.
When it breaks:
- Non-sinusoidal waveforms: If you are driving the circuit with a square wave (like a 555 timer output or a PWM signal), you cannot use a single frequency f. You must use Fourier analysis to calculate Z for the fundamental frequency and each harmonic separately.
- Parallel circuits: The formulas above are strictly for series components. For parallel R-L-C networks, you must calculate admittance (Y = 1/Z) using complex numbers, or use the product-over-sum method for two-branch parallel circuits.
- Core saturation: If your inductor's iron core saturates, its inductance (L) drops dynamically. The calculated XL will be higher than the real-world operating reactance.
90% of bench calculation errors come from prefix blindness.
• Entering kHz instead of Hz (e.g., typing 10 instead of 10000).
• Entering mH instead of H (e.g., typing 50 instead of 0.050).
• Entering µF instead of F (e.g., typing 10 instead of 0.000010).
Rule: Always strip prefixes and enter base units (Hz, H, F, Ω) into your calculator.
Calculator Setup: Degrees, Radians, and Syntax Traps
Before you press a single number key, you must configure your calculator's angle mode and understand its inverse trigonometry syntax. According to Texas Instruments' official documentation, the TI-36X Pro and similar scientific models default to Radian mode in some advanced math environments, which will completely scramble your phase angle.
TI-36X Pro: Press
mode, scroll down to RADIAN, select DEGREE, and press enter. Look for the "DEG" indicator on the top screen.Casio fx-991CW (2024+ ClassWiz): Press
SHIFT then MENU (SET UP), select Angle Unit, and choose Degree. Look for the "D" at the top of the display.
The Inverse Tangent Syntax Trap:
When calculating θ = tan⁻¹(X / R), the order of operations matters immensely.
• Correct: 2nd → tan → ( → X → ÷ → R → ) → enter
• Incorrect: 2nd → tan → X → ÷ → R → enter (This calculates the arctangent of X, and then divides that angle by R. Garbage output.)
Worked Example 1: Series RL Circuit (Inductive Load)
Scenario: You are building a low-pass filter for an audio crossover. You have a 100 Ω resistor in series with a 50 mH inductor. The crossover frequency is 1 kHz. Find Z and θ.
Step 1: Convert to base units.
R = 100 Ω
L = 0.050 H
f = 1000 Hz
Step 2: Calculate Inductive Reactance (XL).
Formula: XL = 2πfL
Calculator sequence: 2 × π × 1000 × 0.050 enter
Result: 314.159 Ω (Track units: Hz × H = Ω)
Step 3: Calculate Total Impedance (Z).
Formula: Z = √(R² + XL²) (since XC is 0)
Calculator sequence: 2nd x² (for √) ( 100 x² + 314.159 x² ) enter
Result: 329.69 Ω
Step 4: Calculate Phase Angle (θ).
Formula: θ = tan⁻¹(XL / R)
Calculator sequence: 2nd tan ( 314.159 ÷ 100 ) enter
Result: 72.34° (Positive angle confirms inductive dominance; current lags voltage).
Worked Example 2: Series RC Circuit (Capacitive Filter)
Scenario: You are designing a snubber network across a relay coil. You have a 470 Ω resistor in series with a 10 µF capacitor on a 60 Hz mains line. Find Z and θ.
Step 1: Convert to base units.
R = 470 Ω
C = 0.000010 F (10 × 10⁻⁶)
f = 60 Hz
Step 2: Calculate Capacitive Reactance (XC).
Formula: XC = 1 / (2πfC)
Calculator sequence: 1 ÷ ( 2 × π × 60 × 0.000010 ) enter
Result: 265.258 Ω
Step 3: Calculate Total Impedance (Z).
Formula: Z = √(R² + (-XC)²)
Calculator sequence: 2nd x² ( 470 x² + (- 265.258 ) x² ) enter
Result: 539.64 Ω
Step 4: Calculate Phase Angle (θ).
Formula: θ = tan⁻¹(-XC / R)
Calculator sequence: 2nd tan ( - 265.258 ÷ 470 ) enter
Result: -29.42° (Negative angle confirms capacitive dominance; current leads voltage).
Decision Tree: Selecting the Right Impedance Path
Use this decision matrix to instantly determine which variation of the impedance formula to use based on the physical components on your breadboard or PCB. Follow the "If" condition down to the "Then" action.
| Components Present | Net Reactance (X) | Impedance (Z) Formula to Calculate | Phase Angle (θ) Behavior |
|---|---|---|---|
| Resistor only (R) | 0 Ω | Z = R | θ = 0° (Purely resistive) |
| Resistor + Inductor (R, L) | X = XL | Z = √(R² + XL²) | 0° < θ < 90° (Positive) |
| Resistor + Capacitor (R, C) | X = -XC | Z = √(R² + XC²) | -90° < θ < 0° (Negative) |
| R, L, and C in Series | X = XL - XC | Z = √(R² + (XL - XC)²) | Sign depends on which X is larger |
| Inductor + Capacitor only | X = XL - XC | Z = |XL - XC| | θ = +90° or -90° (or 0° at resonance) |
Concrete Bench Recommendation: If you are frequently bouncing between these formulas, terminate your search and buy the Texas Instruments TI-36X Pro (typically ~$25 USD). Its 4-line MultiView display allows you to see the entire nested square-root and arctangent expression on screen before you hit enter, virtually eliminating the parenthesis syntax traps that plague cheaper 2-line Casio models.
Sanity Checks: Realistic Answer Magnitudes
Before you order components or wire up a mains circuit based on your math, run these three sanity checks. If your calculator output violates these rules, you made a syntax or unit error.
- The Impedance Floor Rule: In any series circuit containing a resistor, Z must be greater than or equal to R. If your calculator says R = 100 Ω and Z = 85 Ω, you dropped a square, missed a parenthesis, or added instead of squared. Z can never be smaller than its largest resistive component in a series topology.
- The Phase Angle Boundary: For a passive series R-L-C circuit, θ must be strictly between -90° and +90°. If your calculator outputs 112° or -145°, your calculator is in Radian mode (and outputting a messy decimal you misread), or you forgot the negative sign on XC and broke the arctangent domain logic.
- The Resonance Check: If XL and XC are nearly identical, they cancel out. Z should collapse down to almost exactly R, and θ should approach 0°. If you calculate XL = 500 Ω and XC = 500 Ω, but your Z formula spits out 707 Ω, you forgot to subtract them before squaring.
For deeper reading on complex number representations of AC circuits, reference the All About Circuits AC textbook chapter on series R-L circuits, which maps these exact scalar calculator formulas to their complex rectangular equivalents.






