The corner frequency of a low pass filter is the specific point where the output signal's power drops to half (-3 dB) of its passband value, effectively marking the boundary between frequencies that pass through and those that are attenuated. In a real circuit or installation, this parameter dictates your signal bandwidth, stripping away high-frequency noise—like PWM ripple, switching harmonics, or RF interference—while preserving the underlying DC or low-frequency AC data. Beginners frequently confuse the corner frequency (the -3 dB threshold where attenuation begins) with the stopband frequency (where attenuation is practically total) or the resonant frequency of an LC tank circuit. Think of it like a mechanical mesh sieve: low-frequency signals are small enough to fall through the holes, high-frequency noise gets blocked, and the corner frequency is the exact physical size of those mesh holes.
The Math Behind the Boundary
For a standard first-order passive RC (resistor-capacitor) low pass filter, the corner frequency ($f_c$) is determined by the resistance and capacitance values. The formula is:
$f_c = \frac{1}{2 \pi R C}$
Let us walk through a concrete bench example. Suppose you are building a sensor interface and need to filter out high-frequency noise from a 3.3V analog temperature sensor. You select a 10 kΩ resistor and a 10 nF (0.01 µF) capacitor.
- R = 10,000 Ω
- C = 0.00000001 F
- $f_c$ = 1 / (2 × 3.14159 × 10,000 × 0.00000001)
- $f_c$ = 1,591.5 Hz
At exactly 1,591.5 Hz, the output voltage will be 70.7% of the input voltage ($\frac{1}{\sqrt{2}}$). If your input signal is a clean 3.3V sine wave at 1,591.5 Hz, the output amplitude will measure 2.33V. Frequencies below this point pass with minimal loss; frequencies above this point are increasingly attenuated at a rate of -20 dB per decade.
Where You Meet This in Practice
Theory is useful, but knowing where to apply the corner frequency low pass filter on a workbench is what separates hobbyists from competent designers. Here are the three most common practical applications:
1. PWM to DAC Conversion (Smoothing)
Microcontrollers like the Arduino Uno or ESP32 often lack true digital-to-analog converters (DACs), relying instead on Pulse Width Modulation (PWM). If you output a 5 kHz PWM signal to simulate a 1.5V analog level, the raw output is a harsh 0V-to-3.3V square wave. By placing an RC filter with a corner frequency of roughly 50 Hz (e.g., R = 10 kΩ, C = 330 nF), you smooth the square wave into a flat DC voltage. The trade-off is step-response time: a lower corner frequency yields less ripple but a slower reaction time when changing the PWM duty cycle.
2. ADC Anti-Aliasing
When sampling analog signals with a microcontroller's Analog-to-Digital Converter (ADC), any noise above half your sampling rate (the Nyquist frequency) will fold back into your data as false low-frequency signals, a phenomenon called aliasing. If your ESP32 is sampling a vibration sensor at 10 kHz, your Nyquist limit is 5 kHz. You must place a low pass filter with a corner frequency safely below 5 kHz (e.g., 2 kHz) in front of the ADC pin to guarantee data integrity. For the notoriously noisy ESP32 SAR ADC, a localized 100 Ω series resistor and a 1 µF capacitor right at the pin provides a 1.59 kHz corner frequency, acting as both an anti-aliasing filter and a charge reservoir.
3. EMI and Sensor Debouncing
Long analog sensor wires act as antennas, picking up 60 Hz mains hum and high-frequency RF interference from nearby switching power supplies. A low pass filter tailored just above your signal's maximum expected frequency rejects this EMI before it reaches your logic or measurement ICs.
First-Order vs. Second-Order Roll-Off
A single RC pair gives you a first-order filter. If you need a sharper cutoff to protect a high-resolution ADC or an audio circuit, you must move to a second-order active filter using an operational amplifier.
| Characteristic | First-Order (Passive RC) | Second-Order (Active Sallen-Key) |
|---|---|---|
| Roll-Off Rate | -20 dB / decade | -40 dB / decade |
| Phase Shift at $f_c$ | -45° | -90° |
| Component Count | 1 Resistor, 1 Capacitor | 2 Resistors, 2 Capacitors, 1 Op-Amp |
| Typical IC Example | N/A (Passive) | TI TLV2372 or Microchip MCP6002 |
| Best Used For | PWM smoothing, basic EMI rejection | Audio crossovers, precision ADC anti-aliasing |
For a deep dive into active filter topologies, the Electronics Tutorials guide on active low pass filters provides excellent Sallen-Key design equations.
Component Selection and Real-World Edge Cases
The math assumes ideal components. In reality, parasitic effects and material science will shift your corner frequency if you are not careful.
Another common failure mode is impedance loading. If your 10 kΩ / 10 nF filter (output impedance ~10 kΩ at DC) feeds directly into a load that also has an input impedance of 10 kΩ, the two resistors form a voltage divider. More importantly, the load resistance effectively parallels your filter resistor, altering the RC time constant and shifting the corner frequency. The fix is to buffer the filter output with a unity-gain op-amp, presenting a near-infinite input impedance to the filter and a near-zero output impedance to the next stage.
For comprehensive standard definitions regarding filter network analysis and decibel measurements, refer to the Wikipedia technical breakdown of low-pass filter transfer functions or the Analog Devices filter tutorial library.
Frequently Asked Questions
How do I choose the right corner frequency low pass filter for an ADC?
Apply the Nyquist-Shannon sampling theorem: your corner frequency must be strictly lower than half of your ADC's sampling rate. For example, if you are reading a pressure sensor at 100 Hz, set your sampling rate to 200 Hz minimum, and set your filter corner frequency to roughly 20 Hz to 40 Hz. This ensures high-frequency noise is heavily attenuated before the ADC's internal sample-and-hold circuit captures the voltage, preventing aliasing artifacts in your digital data.
Why is the corner frequency low pass filter also called the -3 dB point?
In electrical engineering, power is proportional to the square of the voltage ($P = \frac{V^2}{R}$). At the corner frequency, the output voltage drops to $\frac{1}{\sqrt{2}}$ (approximately 0.707) of the input voltage. If you square 0.707, you get 0.5. This means the power of the signal has been reduced to exactly half of its original value. In the decibel scale, a 50% reduction in power is calculated as $10 \times \log_{10}(0.5)$, which equals exactly -3.01 dB. Therefore, the corner frequency is universally known as the half-power or -3 dB point.
What happens if my corner frequency low pass filter is too close to my signal frequency?
If your target signal sits right at or slightly above the corner frequency, two things happen. First, the signal's amplitude will be noticeably attenuated (e.g., a 1V signal might arrive at your microcontroller as 0.6V). Second, the filter introduces a phase shift. At exactly the corner frequency, a first-order filter introduces a -45° phase shift. In closed-loop control systems or audio applications, this phase delay can cause instability, feedback oscillation, or audible distortion.
Can I cascade two passive RC filters to make a sharper corner frequency low pass filter?
You can, but it rarely works the way beginners expect. If you simply connect a second RC stage directly to the output of the first, the second stage loads down the first stage. This interaction alters the transfer function, resulting in a sloppy, poorly defined roll-off rather than a clean -40 dB/decade drop. To properly cascade passive filters, you must isolate them using op-amp voltage followers (buffers) between each stage, or simply design a single active second-order Sallen-Key filter, which is much more component-efficient and mathematically predictable.






