The low pass cutoff frequency is the specific point in a filter circuit where the output signal's power drops to exactly half (-3 dB) of its maximum passband value, effectively marking the boundary between passed and attenuated frequencies.
When designing analog front-ends, audio crossovers, or microcontroller signal conditioning networks, the cutoff frequency ($f_c$) is the single most critical parameter you will calculate. It dictates not just which frequencies pass through your circuit, but also how the circuit alters the phase and amplitude of the signals near that boundary. Understanding the exact mathematical and physical behavior at this threshold prevents costly design errors, such as aliased ADC readings or excessive PWM ripple.
The Core Definition and the "-3 dB" Reality
In a real circuit, the low pass cutoff frequency changes two fundamental characteristics of the signal: it attenuates the amplitude and introduces a phase shift. However, a massive point of confusion for hobbyists and junior engineers is the definition of the "-3 dB" point.
Many assume that a -3 dB drop means the output voltage is half of the input voltage. This is incorrect. The decibel scale for power is defined as $10 \log_{10}(P_{out} / P_{in})$. When power drops to exactly 50% (0.5), the math yields $10 \log_{10}(0.5) = -3.01 \text{ dB}$. Because power is proportional to voltage squared ($P = V^2 / R$), a 50% drop in power corresponds to a voltage drop to $1 / \sqrt{2}$, which is approximately 70.7% of the input voltage.
If you feed a 5.0V peak-to-peak sine wave into a low pass filter and tune the signal generator to the exact cutoff frequency, your oscilloscope will not show a 2.5V peak-to-peak output. It will show a 3.535V peak-to-peak output. Expecting half voltage (-6.02 dB) at the cutoff frequency is one of the most common bench mistakes when validating filter designs.
Worked Example: Designing a 160 Hz PWM Smoothing Filter
Let’s look at a highly common embedded systems scenario: converting a digital PWM signal from an ESP32-WROOM-32 into a smooth pseudo-analog DC voltage to drive a control loop or an analog meter. The ESP32's LEDC peripheral is configured to output a 5 kHz PWM square wave. We need a passive RC low pass filter to strip away the 5 kHz fundamental frequency and its harmonics, leaving only the DC average.
The formula for the cutoff frequency of a first-order passive RC filter is:
$f_c = \frac{1}{2 \pi R C}$
We want the cutoff frequency well below the 5 kHz PWM frequency to ensure heavy attenuation of the ripple. Let's target roughly 160 Hz. We select standard component values from our bench drawer:
- Resistor (R): 10 k$\Omega$ (1% tolerance metal film)
- Capacitor (C): 100 nF (0.1 $\mu$F)
Plugging these real values into the formula:
$f_c = \frac{1}{2 \cdot \pi \cdot 10,000 \cdot 0.0000001} = \frac{1}{0.006283} \approx 159.15 \text{ Hz}$
At 5 kHz, this filter provides an attenuation of roughly -30 dB, reducing the PWM ripple to an acceptable millivolt-level noise floor. However, the physical component selection matters just as much as the math. If you use a standard X7R dielectric ceramic capacitor for the 100 nF part, you will likely see the cutoff frequency shift under load. X7R capacitors exhibit severe DC bias characteristics; a 100 nF X7R cap might drop to 60 nF when 3V DC is applied across it, pushing your cutoff frequency up to 265 Hz and increasing your output ripple. For precision analog filtering, always spend the extra $0.10 per part and specify C0G/NP0 dielectric capacitors, which maintain their exact capacitance regardless of applied voltage or temperature.
Where You Meet This in Practice
The concept of the low pass cutoff frequency extends far beyond simple PWM smoothing. You will encounter and need to calculate $f_c$ in several critical jobsite and bench scenarios:
ADC Anti-Aliasing Filters
When feeding real-world analog signals into an ADC like the ADS1115, you must prevent high-frequency noise from folding back into your digital data—a phenomenon called aliasing. According to the Nyquist-Shannon sampling theorem, any frequency above half your sampling rate will alias. If your microcontroller samples at 10 kSPS (kilo-samples per second), your Nyquist limit is 5 kHz. You must design a hardware low pass filter with a cutoff frequency safely below 5 kHz (typically 2 kHz to 4 kHz, depending on the filter order) to physically block ultrasonic noise before the ADC's sample-and-hold circuit captures it.
Audio Crossovers and Subwoofers
In audio installations, a low pass filter directs only bass frequencies to a subwoofer. A cutoff frequency set to 80 Hz (the THX standard reference point) ensures that directional mid-bass and vocal frequencies are blocked from the sub, keeping the bass localized to the main speakers. Here, the steepness of the roll-off (filter order) is just as critical as the cutoff point itself.
EMI and RFI Mains Filtering
On the AC mains side of a power supply, feedthrough capacitors and common-mode chokes form low pass filters designed to block high-frequency switching noise (from 150 kHz up to 30 MHz) from escaping back into the grid. The cutoff frequency here is intentionally set very low relative to the RF noise, but high enough to pass the 50/60 Hz line frequency without excessive reactive power loss.
First-Order vs. Second-Order Roll-Off Characteristics
A single RC pair creates a first-order filter, but many real-world applications require a steeper attenuation curve. The table below compares how different filter topologies behave at and beyond their designated low pass cutoff frequency.
| Filter Topology | Order | Roll-Off Rate | Phase Shift at $f_c$ | Component Complexity | Best Application |
|---|---|---|---|---|---|
| Passive RC | 1st | -20 dB/decade | -45° | 1 R, 1 C | PWM smoothing, basic signal cleanup |
| Passive LC | 2nd | -40 dB/decade | -90° | 1 L, 1 C | RF tuning, high-current power rails |
| Active Sallen-Key | 2nd | -40 dB/decade | -90° | 2 R, 2 C, 1 Op-Amp | Precision ADC anti-aliasing, audio crossovers |
Notice that the phase shift at the exact cutoff frequency doubles as you move from a first-order to a second-order filter. In control loop design (like PID tuning for a motor driver), this added phase lag at the cutoff frequency can eat into your phase margin and cause system oscillation if not properly modeled.
Frequently Asked Questions
How to calculate low pass cutoff frequency for an LC filter?
For a second-order passive LC low pass filter, the formula changes to account for the inductor's reactance interacting with the capacitor. The equation is $f_c = \frac{1}{2 \pi \sqrt{L C}}$. For example, if you use a 10 mH inductor and a 1 $\mu$F capacitor, the calculation is $1 / (2 \cdot \pi \cdot \sqrt{0.01 \cdot 0.000001})$, which yields a cutoff frequency of approximately 1,591 Hz. Unlike RC filters, LC filters can exhibit resonance peaking near the cutoff frequency if the circuit's Q-factor is not properly damped by load resistance.
Why is the low pass cutoff frequency called the 3dB point?
It is called the 3dB point (specifically, the -3 dB point) because the decibel scale is a logarithmic ratio of power. When a filter reaches its cutoff frequency, the output power is exactly half of the input passband power. Using the power decibel formula ($10 \log_{10}(P_{out}/P_{in})$), plugging in 0.5 for the ratio results in -3.01 dB. It is a universal engineering convention to define the boundary of a filter's passband at this exact half-power threshold, regardless of whether the filter is first-order or tenth-order.
What happens to phase shift at the low pass cutoff frequency?
In a standard first-order RC low pass filter, the phase shift at the exact cutoff frequency is always exactly -45 degrees. This means the output sine wave is delayed by one-eighth of a full cycle relative to the input. As frequencies increase further into the stopband, the phase shift asymptotically approaches -90 degrees. Conversely, at DC (0 Hz), the phase shift is 0 degrees. This predictable phase behavior is why first-order RC networks are frequently used as phase-shift oscillators and simple analog delay elements.
For further reading on passive filter design and transfer functions, refer to the RC Filter Tutorial on All About Circuits and the comprehensive Low Pass Filter guide on Electronics Tutorials.






