The Core Equation of Low Pass Filter Cutoff Frequency
When designing analog signal conditioning, audio crossovers, or PWM smoothing circuits, the foundational math relies on a single relationship. The equation of low pass filter cutoff frequency for a first-order passive RC (Resistor-Capacitor) network defines the exact point where the output signal power drops by half (-3 dB) relative to the input.
The standard cutoff frequency formula is:
fc = 1 / (2 π R C)
Every variable in this equation must be strictly defined in its base SI unit to prevent calculation errors. Below is the definitive symbol and unit reference for this formula.
| Symbol | Parameter | SI Base Unit | Common Practical Units |
|---|---|---|---|
| fc | Cutoff Frequency (-3 dB point) | Hertz (Hz) | kHz, MHz |
| R | Resistance | Ohms (Ω) | kΩ, MΩ |
| C | Capacitance | Farads (F) | μF, nF, pF |
| π | Archimedes' Constant | Dimensionless | ≈ 3.14159 |
To ground this formula in reality, hobbyists and engineers rarely calculate from scratch; they select from standard E12/E24 component values. The table below maps common, off-the-shelf RC combinations to their resulting cutoff frequencies, demonstrating what realistic answer magnitudes look like across different applications.
| Application Scenario | Resistor (R) | Capacitor (C) | Calculated fc | Actual fc (Nearest E12) |
|---|---|---|---|---|
| Audio Subwoofer Crossover | 10 kΩ | 100 nF (104) | 159.15 Hz | 159 Hz |
| ESP32 ADC Anti-Aliasing | 4.7 kΩ | 10 nF | 3,386 Hz | 3.38 kHz |
| PWM DAC Smoothing (1 kHz) | 1 kΩ | 1 μF | 159.15 Hz | 159 Hz |
| RF Interference Snubber | 100 Ω | 1 nF | 1,591,549 Hz | 1.59 MHz |
| DC Motor Tachometer Filter | 47 kΩ | 4.7 μF | 0.72 Hz | 0.72 Hz |
Assumptions, Applicability, and Unit Traps
The equation of low pass filter cutoff frequency is elegant, but it relies on strict physical assumptions. If your physical circuit violates these assumptions, the math will lie to you.
When the Formula Applies (and When It Doesn't)
- Ideal Source and Load: The formula assumes the filter is driven by a zero-impedance voltage source and is measured by an infinite-impedance load (like an oscilloscope or an op-amp buffer).
- The Loading Effect: If you connect this RC filter directly to a low-impedance load (e.g., an 8 Ω speaker or a 50 Ω coaxial cable), the load resistance (RL) appears in parallel with your capacitor's reactance at DC, and effectively alters the resistance seen by the capacitor. The true resistance becomes Reffective = R || RL. If RL is not at least 100 times larger than R, you must use the parallel equivalent in the formula.
- First-Order Roll-off: This equation only applies to a single-pole (first-order) filter, which attenuates signals at -20 dB per decade (or -6 dB per octave) past fc. For steeper roll-offs, you need cascaded stages or active Sallen-Key topologies.
Unit Mistakes That Break the Math
The most common reason a DIY filter fails to pass the intended frequencies is a unit conversion error during the design phase.
- The Microfarad Trap: The variable C must be entered in Farads. A 1 μF capacitor is not "1"; it is 1 × 10-6 F. Plugging "1" into the equation will yield a cutoff frequency one million times lower than expected.
- Ceramic Capacitor Codes: Hobbyists frequently misread the three-digit code on ceramic capacitors. A "104" capacitor is 10 × 104 picofarads, which equals 100,000 pF, or 100 nF (0.1 μF). Entering 104 as nanofarads or microfarads will drastically skew fc.
- Angular vs. Linear Frequency: Do not confuse fc (Hertz) with ωc (radians per second). The relationship is ωc = 2πfc. If your signal generator is set to radians/sec, you must divide by 2π before using the standard formula.
Algebraic Rearrangements for Component Selection
In practice, you rarely know all variables and just need fc. Usually, you have a target cutoff frequency and a bin of standard resistors, and you need to find the required capacitor (or vice versa). Here are the rearranged forms solving for each variable:
- Solving for Resistance (R):
R = 1 / (2 π fc C)
Use case: You have a fixed capacitor value (e.g., a 10 μF electrolytic) and need to select a resistor to hit a specific audio frequency. - Solving for Capacitance (C):
C = 1 / (2 π fc R)
Use case: You want to minimize thermal noise by maximizing R (e.g., 100 kΩ), and need to calculate the tiny parallel capacitance required. - Solving for Angular Cutoff Frequency (ωc):
ωc = 1 / (R C)
Use case: Working directly in Laplace domain control loop math or SPICE simulations where radians/sec is the native unit.
Worked Examples with Strict Unit Tracking
Let's walk through two real-world design problems. Notice how every intermediate step explicitly tracks unit conversions to scientific notation to prevent order-of-magnitude errors.
Problem 1: Finding Cutoff Frequency for an Audio Tweeter Filter
Scenario: You are building a passive crossover for a tweeter. You have wired a 2.2 kΩ resistor in series with a 47 nF film capacitor. What is the exact cutoff frequency?
Step 1: Identify and convert to base SI units.
- R = 2.2 kΩ = 2,200 Ω
- C = 47 nF = 47 × 10-9 F
Step 2: Calculate the denominator (2 π R C).
- Denominator = 2 × 3.14159 × 2200 × (47 × 10-9)
- Denominator = 13,823 × (47 × 10-9)
- Denominator = 0.00064968 (unitless in this intermediate step, technically seconds)
Step 3: Invert to find fc.
- fc = 1 / 0.00064968
- fc = 1,539.2 Hz (or 1.54 kHz)
Sanity Check: A 1.5 kHz crossover is perfectly reasonable for a mid-range tweeter. The magnitude is correct.
Problem 2: Sizing a Capacitor for ESP32 PWM Smoothing
Scenario: You are using an ESP32 to generate a 5 kHz PWM signal to act as a crude DAC (Digital-to-Analog Converter) for a DC voltage reference. You need an RC filter to smooth the PWM ripple. You want a cutoff frequency of 50 Hz (one decade below the PWM frequency to ensure deep ripple attenuation). You have chosen a 10 kΩ resistor to limit current draw. What capacitor do you need?
Step 1: Identify knowns and select the rearranged formula.
- fc = 50 Hz
- R = 10,000 Ω
- Formula: C = 1 / (2 π fc R)
Step 2: Calculate the denominator.
- Denominator = 2 × 3.14159 × 50 × 10,000
- Denominator = 314.159 × 10,000
- Denominator = 3,141,590
Step 3: Invert to find C.
- C = 1 / 3,141,590
- C = 3.183 × 10-7 Farads
Step 4: Convert to practical units and select a real component.
- 3.183 × 10-7 F = 318.3 nF (or 0.318 μF).
- The nearest standard E12 capacitor value is 330 nF.
Step 5: Verify the actual cutoff with the selected component.
- fc_actual = 1 / (2 × π × 10,000 × 330 × 10-9)
- fc_actual = 48.2 Hz
Result: 48.2 Hz is close enough to 50 Hz for PWM smoothing. The -3dB point is safely below the 5 kHz carrier, providing excellent ripple rejection.
Beyond Cutoff: The Complex Transfer Function
While the fc equation tells you where the filter begins to heavily attenuate, it doesn't tell you the exact voltage output at a specific frequency. For that, you need the complex transfer function, H(jω), which accounts for both magnitude and phase shift.
|H(jω)| = 1 / √(1 + (ωRC)2)
Where ω is the angular frequency (2πf) of your input signal. This equation reveals a critical characteristic of the RC low pass filter: at the exact cutoff frequency fc, the term (ωRC) equals 1.
Plugging 1 into the magnitude equation yields:
|H(jωc)| = 1 / √(1 + 12) = 1 / √2 ≈ 0.707
This proves mathematically why fc is called the "-3 dB point." The output voltage is exactly 70.7% of the input voltage. Since power is proportional to voltage squared (P = V2/R), (0.707)2 = 0.5, meaning exactly half the power is delivered to the load at the cutoff frequency. Furthermore, at fc, the phase shift between input and output is exactly -45°, meaning the output sine wave lags the input by one-eighth of a full cycle.
For deeper study on active filter topologies that buffer these passive RC stages to eliminate loading effects, refer to the comprehensive filter design guides provided by All About Circuits and the classic analog application notes from Texas Instruments. Understanding the fundamental equation of low pass filter networks is the mandatory first step before scaling up to multi-pole active designs.






