The RC cutoff frequency is the specific point in a resistor-capacitor filter where the output signal power drops to exactly half its maximum value, corresponding to a -3dB drop in voltage amplitude. In a real circuit, this frequency dictates the boundary between the passband and the stopband, fundamentally changing both the amplitude and the phase shift (introducing exactly 45° of phase shift at the cutoff point) of the AC signal passing through the network. The most common mistake hobbyists make is confusing the RC cutoff frequency with a "brick-wall" threshold that completely blocks frequencies beyond the limit; in reality, an RC filter exhibits a gradual, continuous roll-off.
The Math Behind the -3dB Point
The cutoff frequency ($f_c$) of a standard first-order passive RC filter is determined by the resistance ($R$) in ohms and the capacitance ($C$) in farads. The formula is remarkably straightforward:
At this exact frequency, the capacitive reactance ($X_c$) equals the resistance ($R$). Because the capacitor and resistor form a voltage divider, the output voltage ($V_{out}$) becomes $V_{in} \times \frac{1}{\sqrt{2}}$, which is approximately 0.707 or 70.7% of the input voltage. In decibels, $20 \log_{10}(0.707)$ equals -3.01 dB. This is why the cutoff frequency is universally referred to as the "-3dB point" in audio and RF engineering.
Worked Numeric Example: Designing a 160Hz Low-Pass Filter
Let us design a low-pass filter to clean up a noisy sensor signal before it hits an Arduino Uno's ADC. We want to allow slow-changing temperature data through but block high-frequency switching noise from a nearby motor driver. We will target a cutoff frequency of roughly 160 Hz using standard, easily sourced E24 component values.
Step 1: Choose a standard capacitor.
A 100nF (0.1 µF) ceramic capacitor is a bench staple. Let us use $C = 100 \times 10^{-9}$ F.
Step 2: Calculate the required resistor.
Rearranging the formula to solve for R: $R = \frac{1}{2 \pi f_c C}$
$R = \frac{1}{2 \times 3.14159 \times 160 \times 0.0000001}$
$R = \frac{1}{0.00010053} \approx 9,947 \Omega$
Step 3: Select the nearest standard resistor.
The closest E24 standard value is 10 kΩ. Let us recalculate the exact cutoff frequency with this real-world part.
With a 10kΩ resistor and a 100nF capacitor, your RC cutoff frequency is 159.15 Hz. Any signal at 159.15 Hz will be attenuated to 70.7% of its original voltage. A 1.6 kHz noise spike (one decade higher) will be attenuated to roughly 10% (-20dB), and a 16 kHz spike will be attenuated to roughly 1% (-40dB).
Where You Meet RC Filters in Practice
You will encounter RC cutoff frequency calculations across nearly every sub-discipline of electronics. Here is where they matter most on the workbench:
| Application | Typical Target $f_c$ | Why It Matters |
|---|---|---|
| PWM to Analog DAC | 10 Hz - 50 Hz | Smoothing an ESP32 or Arduino PWM square wave into a steady DC voltage. The cutoff must be well below the PWM frequency (e.g., 5kHz) to eliminate ripple. |
| ADC Anti-Aliasing | $< \frac{1}{2}$ Sample Rate | Preventing high-frequency noise from folding back into your digital data. If sampling at 10 kHz (Nyquist limit 5 kHz), an RC filter at 2 kHz prevents aliasing artifacts. |
| Audio Subwoofer Crossover | 80 Hz - 120 Hz | Rolling off mid and high frequencies before they reach the subwoofer amplifier. Often implemented with active op-amp RC networks for steeper slopes. |
| I2C / SPI Bus Pull-ups | 1 MHz - 10 MHz | The trace capacitance and pull-up resistor form an accidental RC low-pass filter. If $f_c$ drops below the bus speed, your square waves turn into triangles, causing data corruption. |
Common RC Cutoff Frequency Confusions
When transitioning from theory to physical circuit debugging, a few non-ideal behaviors often catch makers off guard.
The Roll-Off Rate is Gradual, Not Absolute
A single-stage RC filter is a "first-order" filter. It attenuates signals at a rate of -20 dB per decade (or -6 dB per octave). If you need a sharper "brick-wall" cutoff to protect a sensitive RF mixer or a high-fidelity audio tweeter, you must cascade multiple RC stages (creating a second-order or higher filter) or switch to an LC (inductor-capacitor) topology. For deeper active filter design theory, the electronics-tutorials.ws filter guide provides excellent schematic breakdowns.
Impedance Loading Shifts Your Cutoff
The formula $f_c = \frac{1}{2 \pi R C}$ assumes the filter is driving an infinite impedance (an open circuit). If you connect your RC filter directly to a load with a low input impedance (like an 8Ω speaker or a poorly buffered ADC pin), that load acts in parallel with your capacitor or resistor, drastically altering the effective resistance and shifting your cutoff frequency. Always buffer passive RC filters with an op-amp voltage follower if driving a heavy load.
Phase Shift at the Cutoff
Amplitude is only half the story. At exactly the RC cutoff frequency, the output signal is delayed by 45 degrees relative to the input. As frequencies push deeper into the stopband, this phase shift approaches 90 degrees. In control loop systems or audio feedback networks, this unintended phase shift can cause instability or oscillation. The Analog Devices MT-213 tutorial details how phase shift impacts active filter stability.
Frequently Asked Questions
Does the RC cutoff frequency completely block higher frequencies?
No. An RC filter does not act as a brick wall. At the cutoff frequency ($f_c$), the signal is attenuated by -3dB (to 70.7% voltage). As frequency increases beyond $f_c$, the signal is progressively attenuated at a rate of -20dB per decade. For example, a signal 10 times higher than $f_c$ will be attenuated to roughly 10% of its original voltage, not 0%.
How do I calculate the RC cutoff frequency for a high-pass filter?
The formula is exactly the same: $f_c = \frac{1}{2 \pi R C}$. The only difference is the physical arrangement of the components. In a high-pass filter, the capacitor is placed in series with the signal path, and the resistor is placed in parallel to ground. The math governing the -3dB point remains identical because it is still based on the point where capacitive reactance equals resistance.
What happens to the phase shift at the RC cutoff frequency?
At exactly the RC cutoff frequency, the output signal experiences a phase shift of exactly 45 degrees relative to the input signal. In a low-pass filter, the output lags the input by 45°. As the frequency drops well below the cutoff (deep into the passband), the phase shift approaches 0°. As it rises well above the cutoff (deep into the stopband), the phase lag approaches 90°.
Why is the cutoff frequency called the -3dB point?
It is called the -3dB point because, at the cutoff frequency, the output power of the signal is exactly half of the input power. In the decibel scale, a 50% reduction in power is calculated as $10 \log_{10}(0.5)$, which equals -3.01 dB. Because voltage is proportional to the square root of power, the voltage at this point drops to $\frac{1}{\sqrt{2}}$ (about 70.7%) of the input, which corresponds to $20 \log_{10}(0.707)$, also equaling -3.01 dB.






