The resonance formula is the mathematical backbone of RF oscillators, bandpass filters, induction heaters, and audio crossovers. When an inductor and a capacitor are paired in a circuit, they exchange energy at a specific natural frequency. If you are designing a tank circuit, guessing component values will result in a shifted resonant peak, excessive phase noise, or a completely dead circuit. This guide strips away the abstract theory and gives you the exact formula, the algebraic rearrangements you actually need on the bench, and a concrete decision path for sizing real-world components.

The Core Resonance Formula and Symbol Definitions

The fundamental resonance formula calculates the undamped natural frequency of an ideal LC circuit. At this frequency, the inductive reactance (XL) and capacitive reactance (XC) are exactly equal in magnitude but opposite in phase, effectively canceling each other out in a series circuit or presenting infinite impedance in a parallel circuit.

fr = 1 / (2π√(L × C))
Symbol Parameter Base SI Unit Practical Bench Unit
fr Resonant Frequency Hertz (Hz) kHz, MHz, GHz
L Inductance Henries (H) mH, µH, nH
C Capacitance Farads (F) µF, nF, pF
π Pi (Mathematical Constant) ~3.14159 3.14159

Rearranged Forms for Component Selection

On the bench, you rarely know L and C and need to find the frequency. Usually, your target frequency is fixed by a standard (like 13.56 MHz for NFC or 433 MHz for ISM band radios), and you have a limited inventory of inductors. You need to solve for the missing component. By squaring both sides and isolating the variables, we get the working formulas for component procurement:

Solving for Inductance (L)

Use this when you have a fixed capacitor bank and need to wind or order a matching inductor.

L = 1 / (4π² × fr² × C)

Solving for Capacitance (C)

Use this when you have selected an inductor (often constrained by current handling and physical size) and need to calculate the required capacitor value.

C = 1 / (4π² × fr² × L)

Worked Examples with Strict Unit Tracking

The most common point of failure in resonance calculations is unit mismanagement. The formula demands base SI units (Henries and Farads). Plugging in microhenries and picofarads directly will yield garbage. Here are two worked examples demonstrating strict unit tracking.

Example 1: RF Tank Circuit (Finding Frequency)

Given: An inductor of 10 µH and a capacitor of 100 pF.
Find: The resonant frequency (fr).

  1. Convert to base units:
    L = 10 µH = 10 × 10⁻⁶ H
    C = 100 pF = 100 × 10⁻¹² F = 1 × 10⁻¹⁰ F
  2. Multiply L and C:
    L × C = (10 × 10⁻⁶) × (1 × 10⁻¹⁰) = 1 × 10⁻¹⁵
  3. Take the square root:
    √(1 × 10⁻¹⁵) = 3.162 × 10⁻⁸
  4. Multiply by 2π:
    2 × π × 3.162 × 10⁻⁸ = 1.9869 × 10⁻⁷
  5. Invert (1 / x):
    fr = 1 / 1.9869 × 10⁻⁷ = 5,032,910 Hz

Result: 5.03 MHz. This is a realistic magnitude for an HF RF oscillator.

Example 2: Audio Crossover (Finding Capacitance)

Given: A target resonant frequency of 60 Hz and a woofer compensation inductor of 100 mH.
Find: The required capacitance (C).

  1. Convert to base units:
    fr = 60 Hz
    L = 100 mH = 0.1 H
  2. Square the frequency:
    fr² = 60² = 3600
  3. Calculate the denominator (4π² × fr² × L):
    4 × (3.14159)² × 3600 × 0.1 = 39.478 × 360 = 14,212.2
  4. Invert to find C:
    C = 1 / 14,212.2 = 0.00007036 F

Result: 70.36 µF. In practice, you would use a standard 68 µF or 75 µF non-polarized electrolytic or film capacitor. This magnitude (tens of microfarads) is exactly what is expected for sub-100Hz audio applications.

Assumptions, Real-World Limits, and Unit Traps

⚠️ Critical Unit Trap: The "Micro-Pico Multiplier"
When multiplying µH (10⁻⁶) by pF (10⁻¹²), the product is 10⁻¹⁸. The square root of 10⁻¹⁸ is 10⁻⁹. If you forget to convert and just multiply the raw numbers (e.g., 10 × 100 = 1000), your final frequency will be off by a factor of a billion. Always convert to base scientific notation before calculating.

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

The ideal resonance formula assumes purely reactive components with zero resistance. In reality, every inductor has DC resistance (DCR) and parasitic parallel capacitance, and every capacitor has Equivalent Series Resistance (ESR) and Equivalent Series Inductance (ESL).

  • High-Q Circuits (Q > 10): For RF tank circuits using high-quality air-core or powdered-iron inductors and C0G/NP0 ceramics, the ideal formula is accurate to within 1-2%. The resistive losses are negligible.
  • Low-Q Circuits (Q < 5): In power electronics or heavily damped audio filters, the ESR of the components shifts the actual resonant peak. The true damped resonant frequency is fd = fr × √(1 - (R²C / 4L)). If your circuit has high resistance, the ideal formula will overestimate the resonant frequency.
  • VHF/UHF Limits (>100 MHz): At very high frequencies, the parasitic capacitance of the inductor windings and the ESL of the capacitor dominate. A 10 pF capacitor might self-resonate at 500 MHz, acting like an inductor. Always check the component's Self-Resonant Frequency (SRF) on the datasheet; your operating frequency must be well below the SRF of both components.

Decision Path: Sizing a Tank Circuit for a 13.56 MHz RFID Reader

Let's apply this to a concrete bench scenario. You are building an NFC/RFID reader antenna matching network. The target frequency is strictly 13.56 MHz. Follow this decision tree to arrive at a specific bill of materials.

Decision Node Action & Rationale
1. Fix Target Frequency fr = 13.56 MHz (13,560,000 Hz). This is non-negotiable for ISO 14443 compliance.
2. Select Inductor (L) If space is constrained and current is moderate (< 500mA), then pick a standard chip inductor around 2.2 µH. This provides a good balance of Q-factor and physical size.
Selection: L = 2.2 µH (2.2 × 10⁻⁶ H).
3. Calculate Capacitance (C) Using the rearranged formula: C = 1 / (4π² × (13.56 × 10⁶)² × 2.2 × 10⁻⁶).
C = 1 / (39.478 × 1.838 × 10¹⁴ × 2.2 × 10⁻⁶) = 1 / 1.595 × 10¹⁰ = 6.26 × 10⁻¹¹ F.
Result: 62.6 pF.
4. Select Standard Cap Value Standard E24 values do not include 62.6 pF. The closest standard values are 62 pF and 68 pF. Choose 62 pF to stay slightly below resonance, which is safer for NFC reader ICs that can tune upwards via internal varactors.
5. Select Capacitor Dielectric If using X7R or Y5V, then FAIL. These dielectrics exhibit severe voltage coefficients and high RF losses, shifting the resonance under load.
If using C0G/NP0, then PASS. C0G is electrically stable across temperature and voltage, with near-zero ESR at 13.56 MHz.

The Final Concrete Pick

Based on the decision path above, do not waste time experimenting with random parts. Order these specific components for your 13.56 MHz tank circuit:

  • Inductor: Coilcraft 1008CS-222X (2.2 µH, 0805 footprint, high Q ceramic core).
  • Capacitor: Murata GRM2185C1H620JA01 (62 pF, 50V, C0G/NP0 dielectric, 0805 footprint).

By locking in the math with strict unit tracking and respecting the physical limitations of real-world dielectrics, your LC tank will hit 13.56 MHz on the first power-up, saving you hours of debugging with a spectrum analyzer. For further reading on the behavior of reactive components in AC circuits, refer to the comprehensive guides on Series Resonance at Electronics Tutorials and the practical AC circuit analysis provided by All About Circuits.