If you are trying to figure out how to do on calculator the total impedance and phase angle for a series RLC circuit, the direct answer is to calculate the individual reactances ($X_L$ and $X_C$) in base units (Henries and Farads), subtract them, square the result, add the squared resistance, and take the square root. For the phase angle, use the inverse tangent ($\arctan$) of the net reactance divided by resistance. Most calculation errors do not come from the math itself, but from failing to convert microfarads ($\mu F$) and millihenries ($mH$) into base SI units before punching them into the keypad.
The RLC Series Impedance Formula & Symbol Definitions
The total impedance ($Z$) of a series Resistor-Inductor-Capacitor (RLC) circuit combines real resistance and imaginary reactance into a single magnitude value. The phase angle ($\theta$) tells you whether the circuit behaves more inductively or capacitively. According to HyperPhysics, the governing equations are:
Impedance Magnitude:
$$Z = \sqrt{R^2 + (X_L - X_C)^2}$$
Phase Angle:
$$\theta = \arctan\left(\frac{X_L - X_C}{R}\right)$$
| Symbol | Parameter | Base SI Unit | Calculator Input Requirement |
|---|---|---|---|
| $Z$ | Total Impedance | Ohms ($\Omega$) | Final output magnitude |
| $R$ | Resistance | Ohms ($\Omega$) | Enter directly (e.g., 470) |
| $X_L$ | Inductive Reactance | Ohms ($\Omega$) | Calculate via $2 \pi f L$ |
| $X_C$ | Capacitive Reactance | Ohms ($\Omega$) | Calculate via $1 / (2 \pi f C)$ |
| $f$ | Frequency | Hertz ($Hz$) | Enter directly (e.g., 1000) |
| $L$ | Inductance | Henries ($H$) | MUST convert $mH$ to $H$ ($\times 10^{-3}$) |
| $C$ | Capacitance | Farads ($F$) | MUST convert $\mu F$ to $F$ ($\times 10^{-6}$) |
| $\theta$ | Phase Angle | Degrees ($^\circ$) | Ensure calculator is in DEG mode, not RAD |
Application Boundaries, Assumptions, and Unit Traps
The Micro/Milli Unit Trap
The most common reason students and hobbyists get wildly incorrect answers is the unit prefix trap. Scientific calculators do not automatically know that a capacitor labeled '104' or '4.7$\mu F$' needs to be scaled. If you type 4.7 instead of 4.7E-6 into the $X_C$ formula, your capacitive reactance will be off by a factor of one million. Always use the EXP or EE button on your calculator to enter scientific notation.
Realistic Answer Magnitudes
Before you accept a calculator output, sanity-check the magnitude:
- Impedance ($Z$): For typical hobby and audio circuits, $Z$ should fall between $1\Omega$ and $10,000\Omega$. If your calculator spits out $0.00004\Omega$ or $4,500,000\Omega$, you missed a unit prefix conversion.
- Phase Angle ($\theta$): The mathematical output of the $\arctan$ function for this topology is strictly bounded between $-90^\circ$ and $+90^\circ$. A negative angle means the circuit is net-capacitive (current leads voltage). A positive angle means it is net-inductive (current lags voltage). If your calculator shows $145^\circ$, your calculator is in the wrong quadrant mode or you inverted the numerator and denominator.
Rearranged Forms: Solving for R, XL, and XC
In design work, you often know the target impedance and need to find the missing component value. By algebraically isolating variables from the master magnitude equation, we get these rearranged forms:
- Solving for Resistance ($R$):
$$R = \sqrt{Z^2 - (X_L - X_C)^2}$$
Use when: Sizing a damping resistor to achieve a specific total impedance at a known frequency. - Solving for Inductive Reactance ($X_L$):
$$X_L = X_C \pm \sqrt{Z^2 - R^2}$$
Use when: Designing a matching network where you need to hit a specific impedance magnitude, noting the $\pm$ yields two valid inductor sizes (one above resonance, one below). - Solving for Capacitive Reactance ($X_C$):
$$X_C = X_L \mp \sqrt{Z^2 - R^2}$$
Use when: Tuning a tank circuit or filter where the inductor is fixed (e.g., a transformer winding) and you must select the tuning capacitor.
Exact Keystrokes: How to Do It on a Scientific Calculator
Here is the exact sequence for the two most common engineering calculators: the Texas Instruments TI-36X Pro and the Casio fx-115ES PLUS. This assumes you are calculating $Z$ and $\theta$ given $R$, $L$, $C$, and $f$.
- Verify Angle Mode: Press
MODE(TI) orSHIFT+SETUP(Casio). EnsureDEGREEis selected, not Radian or Grad. Phase angles in AC power and audio are universally specified in degrees. - Calculate $X_L$: Type
2×π×f×L (in Henries). PressENTER. Store this in memory (e.g.,STOxon TI, orSHIFTSTOXon Casio). - Calculate $X_C$: Type
1÷(2×π×f×C (in Farads)). PressENTER. Store in memory (e.g.,STOy). - Calculate Net Reactance ($X_{net}$): Recall $X_L$ and subtract $X_C$. Store this result as $X_{net}$ (e.g.,
STOz). - Calculate Magnitude ($Z$): Type
√(R^2+z^2). This is your final impedance in Ohms. - Calculate Phase Angle ($\theta$): Press
2ndtan(TI) orSHIFTtan(Casio) to get $\tan^{-1}$. Type(z÷R). PressENTER. The result is your phase angle in degrees.
Worked Problems with Strict Unit Tracking
Let us run two real-world scenarios. As noted in All About Circuits, tracking units through the intermediate steps prevents the dreaded 'scientific notation dropout' where the calculator display truncates small decimals.
Problem 1: Audio Crossover Network (Low Z, High C)
Given: $R = 8\Omega$, $L = 1.5mH$, $C = 4.7\mu F$, $f = 1000Hz$.
- Unit Conversion: $L = 0.0015 H$, $C = 0.0000047 F$.
- Step 1 ($X_L$): $2 \times \pi \times 1000 \times 0.0015 = \mathbf{9.4248 \Omega}$
- Step 2 ($X_C$): $1 / (2 \times \pi \times 1000 \times 0.0000047) = 1 / 0.029531 = \mathbf{33.863 \Omega}$
- Step 3 ($X_{net}$): $9.4248 - 33.863 = \mathbf{-24.438 \Omega}$ (Net capacitive)
- Step 4 ($Z$): $\sqrt{8^2 + (-24.438)^2} = \sqrt{64 + 597.215} = \sqrt{661.215} = \mathbf{25.71 \Omega}$
- Step 5 ($\theta$): $\arctan(-24.438 / 8) = \arctan(-3.0547) = \mathbf{-71.87^\circ}$
Result: The circuit presents $25.71\Omega$ of impedance, and the current leads the voltage by $71.87^\circ$.
Problem 2: High-Voltage Signal Filter (High R, Near Resonance)
Given: $R = 4700\Omega$, $L = 10mH$, $C = 100nF$, $f = 5000Hz$.
- Unit Conversion: $L = 0.01 H$, $C = 0.0000001 F$ ($100 \times 10^{-9}$).
- Step 1 ($X_L$): $2 \times \pi \times 5000 \times 0.01 = \mathbf{314.159 \Omega}$
- Step 2 ($X_C$): $1 / (2 \times \pi \times 5000 \times 0.0000001) = 1 / 0.00314159 = \mathbf{318.310 \Omega}$
- Step 3 ($X_{net}$): $314.159 - 318.310 = \mathbf{-4.151 \Omega}$
- Step 4 ($Z$): $\sqrt{4700^2 + (-4.151)^2} = \sqrt{22090000 + 17.23} = \sqrt{22090017.23} = \mathbf{4700.0018 \Omega}$
- Step 5 ($\theta$): $\arctan(-4.151 / 4700) = \arctan(-0.000883) = \mathbf{-0.05^\circ}$
Result: Because the circuit is operating very close to its resonant frequency ($X_L \approx X_C$), the reactances cancel out. The impedance is essentially equal to the resistance ($4.7k\Omega$), and the phase angle is nearly zero.
Calculator Mode Decision Tree
Modern scientific calculators feature a dedicated Complex (CMPLX) mode that allows you to type out the entire impedance equation using the imaginary unit $j$ (or $i$) without manually separating real and imaginary parts. However, using it incorrectly yields syntax errors. Use this decision matrix to select your approach.
| Circuit Topology | Calculator Capability | Recommended Mode | Action / Keystroke Path |
|---|---|---|---|
| Simple Series RLC (Magnitude & Phase only) | Any basic scientific calculator | Real / Standard Mode | Use the manual 6-step $\arctan$ method detailed above. It is foolproof and works on $15 Casio models. |
| Series RLC (Need to add/subtract multiple impedances) | TI-36X Pro or Casio fx-991EX | CMPLX Mode | Type R + (XL - XC)i. Press 2nd + CPX (TI) to convert instantly to Polar ($r \angle \theta$) format. |
| Parallel or Mixed RLC Networks | Texas Instruments TI-36X Pro | CMPLX Mode | Utilize the fraction template with complex numbers: 1 / ( (1/Z1) + (1/Z2) ). The TI-36X Pro handles complex fractions natively. |
| Parallel/Mixed Networks on older Casio models | Casio fx-115ES PLUS | CMPLX Mode | Warning: Older Casios cannot do complex fractions directly. You must calculate the admittance ($Y = 1/Z$) in rectangular form first, add them, then invert. |
8 + (9.42 - 33.86)i and hit 2nd + CPX to instantly output 25.71 \angle -71.87^\circ. For pure single-loop series magnitude checks, stick to the manual Real mode steps to ensure you actually understand the underlying vector geometry.






