A low pass filter is an electronic circuit that allows low-frequency signals to pass through to the output while attenuating frequencies above a designated cutoff threshold. Whether you are trying to strip 60 Hz mains hum from a sensitive thermocouple reading, smooth out a microcontroller's PWM output into a clean DC voltage, or route bass frequencies to a subwoofer, the low pass filter is the fundamental building block that makes it possible. In this guide, we will break down the exact mechanics, run through a bench-ready numeric design example, and clear up the most common misconceptions hobbyists and technicians face when deploying these circuits.
The Core Mechanics: What It Changes in a Real Circuit
To understand what a low pass filter changes in a real installation, you have to look at it as a frequency-dependent voltage divider. The most common implementation is the passive first-order RC (Resistor-Capacitor) filter, where the resistor is placed in series with the signal path and the capacitor is placed in parallel to ground.
Think of it like a mechanical mesh sieve used in construction: fine sand (low frequencies) falls easily through to the other side, while large gravel (high frequencies) is caught and blocked by the screen. In electrical terms, a capacitor's reactance ($X_C$) is inversely proportional to frequency ($X_C = \frac{1}{2 \pi f C}$). At DC (0 Hz), the capacitor's reactance is infinite, acting as an open circuit, so 100% of the input voltage reaches the output. As frequency increases, the capacitor's impedance drops, effectively shorting high-frequency signals to ground before they can reach your load.
- Amplitude: High-frequency voltage peaks are shunted to ground, reducing the output signal's peak-to-peak voltage.
- Phase: The filter introduces a time delay. At the exact cutoff frequency, the output signal lags the input by exactly 45 degrees.
- Impedance: The output impedance of the filter is no longer just the source; it becomes a complex parallel combination of the resistor and capacitor, which heavily impacts how the filter interacts with downstream loads.
The defining metric of any low pass filter is its -3dB cutoff frequency ($f_c$). At this exact frequency, the output power is halved, and the output voltage drops to 70.7% ($\frac{1}{\sqrt{2}}$) of the input voltage. According to standard filter theory documented by Electronics Tutorials, this point marks the boundary between the "passband" and the "stopband."
Worked Numeric Example: Designing a 15 Hz Sensor Noise Filter
Let's design a filter for a real-world bench scenario. You are reading a slow-moving temperature sensor via an Arduino's 10-bit ADC. The signal changes at about 1 Hz, but your breadboard is picking up 60 Hz AC mains hum and high-frequency RF noise from a nearby switching power supply. We need a cutoff frequency that passes the 1 Hz signal but aggressively crushes the 60 Hz hum.
We will target a cutoff frequency ($f_c$) of 15.9 Hz. The formula for a first-order RC low pass filter is:
$$f_c = \frac{1}{2 \pi R C}$$
Step 1: Choose a standard capacitor value.
Capacitors have fewer standard values than resistors, so we pick $C$ first. A 100 nF (0.1 µF) ceramic capacitor (like a standard Murata or Vishay part) is cheap, readily available, and perfect for this range.
Step 2: Calculate the required resistance.
Rearranging the formula to solve for $R$:
$$R = \frac{1}{2 \pi \times f_c \times C}$$
$$R = \frac{1}{2 \pi \times 15.9 \text{ Hz} \times 0.0000001 \text{ F}} \approx 100,103 \, \Omega$$
Step 3: Select the nearest standard resistor.
A standard E12 series 100 kΩ resistor is a perfect match. Using 100 kΩ and 100 nF yields an actual cutoff of exactly 15.92 Hz.
Performance Table: Attenuation Across the Spectrum
Assuming a 5.0V peak-to-peak input signal, here is how this specific 100k/100nF filter behaves at critical frequencies. Note the roll-off rate of a first-order filter is -20 dB per decade (or -6 dB per octave).
| Frequency | Signal Type | Attenuation (dB) | Output Voltage (Vpp) | Phase Shift |
|---|---|---|---|---|
| 0.1 Hz | Target Sensor Data | -0.002 dB | 4.99 V | -0.36° |
| 15.9 Hz | Cutoff Point ($f_c$) | -3.0 dB | 3.53 V | -45.0° |
| 60 Hz | Mains Hum (Noise) | -12.1 dB | 1.24 V | -75.1° |
| 1,000 Hz | Switching RF Noise | -36.0 dB | 0.079 V | -87.7° |
As the table shows, the 60 Hz hum is reduced to roughly 25% of its original amplitude, and the 1 kHz switching noise is practically eliminated, dropping to under 80 mV. For a more comprehensive mathematical breakdown of RC networks, All About Circuits provides excellent textbook-level derivations of these reactance curves.
Where You Meet Low Pass Filters in Practice
You will rarely build a standalone filter just for the sake of it; they are usually embedded into larger systems to solve specific signal integrity problems.
- PWM to Analog Conversion (DAC Smoothing): Microcontrollers like the ESP32 or Arduino Uno lack true digital-to-analog converters (or have limited ones). By outputting a high-frequency PWM signal (e.g., 30 kHz) and passing it through an RC low pass filter with a cutoff around 1 kHz, the capacitor averages the square wave pulses into a smooth, variable DC voltage.
- Audio Crossovers: In multi-speaker setups, an inductor-capacitor (LC) low pass filter is wired in series with a subwoofer. The inductor blocks high frequencies, while the capacitor shunts them to ground, ensuring only deep bass reaches the woofer cone.
- Power Supply Ripple Reduction: Linear voltage regulators (like the LM7805) are great, but they struggle with high-frequency noise. A "Pi filter" (Capacitor-Inductor-Capacitor) acts as a heavy-duty low pass filter on the DC power rail, blocking RF interference from entering sensitive analog stages.
- Anti-Aliasing in ADCs: Before an analog signal hits a high-speed Analog-to-Digital Converter, it must pass through a steep active low pass filter. This prevents frequencies higher than half the sampling rate (the Nyquist limit) from folding back into the digital data as false low-frequency artifacts.
Common Confusions: Low Pass vs. High Pass vs. Band Pass
The most frequent mistake beginners make is confusing a low pass filter with a high pass filter. The physical difference is simply swapping the positions of the resistor and the capacitor. If the capacitor is in series and the resistor is to ground, it blocks DC and passes high frequencies (high pass). If the resistor is in series and the capacitor is to ground, it passes DC and blocks high frequencies (low pass).
Another major point of confusion is the difference between passive and active low pass filters. A passive RC filter relies entirely on the source's drive strength and suffers from "loading effects" (which we cover in the FAQ). An active low pass filter incorporates an operational amplifier (like the ubiquitous TL072 or LM358) to buffer the output. People often confuse the two, wiring a passive filter directly into a low-impedance load and wondering why their cutoff frequency has shifted and their signal amplitude has collapsed.
Frequently Asked Questions
How do you define the cutoff frequency of a low pass filter mathematically?
The cutoff frequency ($f_c$) is defined as the exact point where the capacitive reactance ($X_C$) equals the resistance ($R$). Mathematically, this occurs at $f_c = \frac{1}{2 \pi R C}$. At this frequency, the output voltage is exactly $\frac{1}{\sqrt{2}}$ (or roughly 0.707) of the input voltage, which corresponds to a power reduction of -3 decibels. It is not the point where the signal completely stops; rather, it is the standardized boundary where the "roll-off" becomes significant.
What happens to the phase shift in a first-order low pass filter?
A first-order RC low pass filter introduces a negative phase shift (a time delay) that varies with frequency. At DC (0 Hz), the phase shift is 0°. As frequency increases, the delay grows. At the exact cutoff frequency ($f_c$), the phase shift is exactly -45°. As the frequency approaches infinity, the phase shift asymptotically approaches -90°. If you are feeding this signal into a feedback loop (like a PID controller), this phase lag can cause system instability if not properly compensated.
Can I cascade two passive RC low pass filters to get a steeper roll-off?
You can, but not simply by wiring them end-to-end. If you connect two identical passive RC filters in series, the second stage acts as a load on the first stage. This "loading effect" alters the impedance, shifting the cutoff frequency higher and ruining the expected -40 dB/decade roll-off. To properly cascade passive stages for a sharper filter, you must insert a unity-gain buffer (an op-amp configured as a voltage follower) between the stages to isolate their impedances, effectively creating a second-order active filter.
Why does my low pass filter output drop voltage even at DC or very low frequencies?
This is the classic passive filter loading effect. A passive RC low pass filter has an output impedance roughly equal to the value of the series resistor at DC. If your resistor is 100 kΩ, and you connect the output to a load that also has an impedance of 100 kΩ (like a cheap multimeter or a microcontroller ADC with low input impedance), you have accidentally created a 50/50 voltage divider. Your output voltage will drop by half, even at 0 Hz. The fix is to either use a much smaller series resistor (and a proportionally larger capacitor) or buffer the output with an op-amp.






