When calculating AC circuit impedance, the physical TI-36X Pro and its web-based TI 36 online calculator simulators are bench staples for electrical engineers and hobbyists. While these calculators can handle complex numbers natively using rectangular and polar modes, understanding the underlying scalar magnitude formula for impedance is critical for verifying your bench measurements and catching wiring errors. The core scalar formula for the total impedance ($Z$) of a series RLC circuit is:

$Z = \sqrt{R^2 + (X_L - X_C)^2}$

Below, we break down every variable, provide real-world component data, show how to rearrange the formula for design work, and walk through step-by-step calculations using standard TI-36 syntax.

The Impedance Formula and Real-World Component Data

The formula above calculates the total opposition to alternating current in a series circuit containing resistance ($R$), inductive reactance ($X_L$), and capacitive reactance ($X_C$). It is derived from the Pythagorean theorem applied to the impedance triangle, where resistance forms the real axis and net reactance forms the imaginary axis.

Symbol Definitions and Assumptions

Symbol Parameter Standard Unit Definition & Bench Context
$Z$ Total Impedance Ohms ($\Omega$) Vector sum of resistance and reactance. Magnitude only in this scalar formula.
$R$ Resistance Ohms ($\Omega$) Real power dissipation. Measured with a standard DC multimeter.
$X_L$ Inductive Reactance Ohms ($\Omega$) Opposition from inductors. Calculated as $2\pi f L$.
$X_C$ Capacitive Reactance Ohms ($\Omega$) Opposition from capacitors. Calculated as $1 / (2\pi f C)$.
$f$ Frequency Hertz (Hz) AC signal frequency. Mains is 60Hz (US) or 50Hz (EU).
$L$ Inductance Henries (H) Component value. Often measured in mH or $\mu$H on the bench.
$C$ Capacitance Farads (F) Component value. Almost always measured in $\mu$F or nF.

Real-World Component Benchmarks

To ground these variables in reality, here is a data-dense table of typical series RLC values you will encounter in audio crossover networks and mains filtering, showing how $Z$ shifts with frequency. These values assume ideal components (ignoring Equivalent Series Resistance for clarity).

Application Frequency ($f$) Resistance ($R$) Inductance ($L$) Capacitance ($C$) Calculated $Z$
Audio Tweeter Crossover 3,000 Hz 8 $\Omega$ 0.5 mH 2.2 $\mu$F 17.4 $\Omega$
Audio Woofer Crossover 250 Hz 4 $\Omega$ 4.7 mH 33 $\mu$F 12.8 $\Omega$
Mains EMI Filter (60Hz) 60 Hz 0.5 $\Omega$ 10 mH 0.1 $\mu$F 26,525 $\Omega$
Resonant Tank (Near $f_r$) 1,000 Hz 10 $\Omega$ 25.3 mH 1.0 $\mu$F 10.0 $\Omega$ (Resonance)

Rearranged Forms and TI-36 Calculator Syntax

On the bench, you rarely just solve for $Z$. Usually, you have a target impedance and need to select a capacitor, or you are troubleshooting and need to find an unknown parasitic resistance. Here are the algebraically rearranged forms solving for each primary variable.

Rearranged Formula List

  • Solve for Resistance ($R$):
    $R = \sqrt{Z^2 - (X_L - X_C)^2}$
  • Solve for Inductive Reactance ($X_L$):
    $X_L = X_C \pm \sqrt{Z^2 - R^2}$
  • Solve for Capacitive Reactance ($X_C$):
    $X_C = X_L \mp \sqrt{Z^2 - R^2}$
TI 36 Online Calculator Syntax Tip: When using a TI 36 online calculator simulator, you can solve these in scalar mode using the square root key ($\sqrt{\Box}$). However, if you need the phase angle ($\theta$), switch the calculator to complex mode (Press MODE, scroll to a+bi or r\theta). You can then enter impedance directly as $Z = R + j(X_L - X_C)$ using the i constant key, and use the angle conversion functions to find the phase shift without manual trigonometry.

Worked Problems with Unit Tracking

Let's walk through two common bench scenarios. We will strictly track units through every intermediate step to prevent the metric-prefix errors that plague most student calculations.

Problem 1: Finding Total Impedance in a Series Mains Filter

Given: A series filter circuit on a 60 Hz US mains line has a wire-wound resistor of $15 \Omega$, an inductor of $120 \text{ mH}$, and a capacitor of $40 \text{ \mu F}$. Find the total impedance $Z$.

  1. Convert to base SI units:
    $f = 60 \text{ Hz}$
    $R = 15 \Omega$
    $L = 120 \text{ mH} = 0.120 \text{ H}$
    $C = 40 \text{ \mu F} = 0.000040 \text{ F}$
  2. Calculate Inductive Reactance ($X_L$):
    $X_L = 2 \pi f L$
    $X_L = 2 \times 3.14159 \times 60 \text{ Hz} \times 0.120 \text{ H}$
    $X_L = 45.24 \Omega$
  3. Calculate Capacitive Reactance ($X_C$):
    $X_C = \frac{1}{2 \pi f C}$
    $X_C = \frac{1}{2 \times 3.14159 \times 60 \text{ Hz} \times 0.000040 \text{ F}}$
    $X_C = 66.31 \Omega$
  4. Calculate Total Impedance ($Z$):
    $Z = \sqrt{R^2 + (X_L - X_C)^2}$
    $Z = \sqrt{15^2 + (45.24 - 66.31)^2}$
    $Z = \sqrt{225 + (-21.07)^2}$
    $Z = \sqrt{225 + 443.94}$
    $Z = \sqrt{668.94} = 25.86 \Omega$

Answer: The total impedance is 25.86 $\Omega$. Notice that because $X_C > X_L$, the circuit is net-capacitive, meaning current leads voltage.

Problem 2: Designing for a Target Impedance (Rearranged Form)

Given: You are building an audio dummy load and need a total impedance of exactly $50 \Omega$ at 1 kHz. You have a $30 \Omega$ resistor and an inductor with $X_L = 60 \Omega$. What capacitive reactance ($X_C$) must you add in series?

  1. Identify knowns:
    $Z = 50 \Omega$
    $R = 30 \Omega$
    $X_L = 60 \Omega$
  2. Select the rearranged formula for $X_C$:
    $X_C = X_L \mp \sqrt{Z^2 - R^2}$
  3. Substitute and solve the radical first:
    $\sqrt{Z^2 - R^2} = \sqrt{50^2 - 30^2} = \sqrt{2500 - 900} = \sqrt{1600} = 40 \Omega$
  4. Calculate both possible values for $X_C$:
    Option A: $X_C = 60 - 40 = 20 \Omega$
    Option B: $X_C = 60 + 40 = 100 \Omega$

Answer: You can use a capacitor that yields either 20 $\Omega$ or 100 $\Omega$ of reactance at 1 kHz. Both will result in a net impedance magnitude of 50 $\Omega$, though the phase angles will be opposite (net-inductive vs. net-capacitive).

Assumptions, Unit Traps, and Realistic Magnitudes

The scalar impedance formula is mathematically elegant, but physical circuits are messy. Understanding the boundaries of this formula is what separates a textbook student from a competent bench technician.

When the Formula Applies (and When it Doesn't)

This formula assumes steady-state sinusoidal AC. If you are driving the circuit with a square wave (like a PWM signal from an ESP32 or a 555 timer), the waveform contains odd harmonics. Because $X_L$ and $X_C$ are frequency-dependent, the impedance will be different for the 3rd, 5th, and 7th harmonics. In non-sinusoidal scenarios, you must use Fourier analysis or measure the true RMS voltage and current to find the effective impedance ($Z = V_{rms} / I_{rms}$).

Furthermore, it assumes ideal components. Real inductors have parasitic winding capacitance and DC resistance (DCR). Real capacitors have Equivalent Series Resistance (ESR) and Equivalent Series Inductance (ESL). At high frequencies (RF > 1 MHz), these parasitics dominate, and the simple RLC formula will yield dangerously inaccurate results.

The Metric Prefix Trap

Critical Unit Mistake: The most common reason a TI 36 online calculator yields a wildly wrong answer is failing to convert metric prefixes to base SI units. If you type 1 / (2 * \pi * 60 * 40) for a 40 $\mu$F capacitor, the calculator assumes 40 Farads. You must type 40E-6 or use the calculator's engineering notation menu (2nd + EE) to enter $40 \times 10^{-6}$. Always double-check your exponent entry.

What a Realistic Answer Magnitude Looks Like

When you hit 'Enter' on your calculator, does the number make physical sense? Use these benchmarks to sanity-check your results:

  • Audio Circuits (Speakers/Crossovers): Typically 2 $\Omega$ to 16 $\Omega$. If your calculator says 4,500 $\Omega$ for a woofer, you forgot to convert mH to H.
  • Mains Power Filtering: Typically 10 $\Omega$ to 500 $\Omega$ for the load side, but reactive components (like the EMI filter in Table 1) can show massive reactive impedances in the kilo-ohm range at line frequency.
  • RF and Antenna Matching: Almost universally designed around a 50 $\Omega$ or 75 $\Omega$ standard. If you are designing a 10 MHz matching network and get 0.5 $\Omega$, your capacitor value is likely too large.

By mastering both the scalar magnitude formula and the complex number modes of your TI-36 calculator, you bridge the gap between theoretical circuit design and physical bench validation. Always verify your calculator's output with a physical multimeter or oscilloscope measuring true RMS voltage and current under load.

References:
1. Texas Instruments. (2024). TI-36X Pro MathPrint Scientific Calculator Guide.
2. Nave, C. R. (2023). Impedance in AC Circuits. HyperPhysics, Georgia State University.
3. Kuphaldt, T. R. (2024). Series Resistor-Inductor Circuits. All About Circuits Textbook.