Filter specifications define passband edge frequency, stopband edge frequency, passband ripple, and stopband attenuation. The transition band between passband and stopband cannot be arbitrarily sharp; narrower transition bands require higher filter order. Increasing filter order increases complexity and computational cost, creating fundamental trade-offs in filter design.
Given a filter specification, compute the required order using Butterworth or Chebyshev approximations. Observe how tightening specifications increases order exponentially.
From Bode plots, you already have a visual language for filter behavior: a magnitude plot that shows how much gain (or attenuation) a filter applies at each frequency. A lowpass filter has high gain at low frequencies and falls off at higher frequencies. But a Bode sketch is qualitative — it shows the shape without specifying how precisely a filter must perform. Filter specifications translate that qualitative shape into a set of quantitative requirements that a designer must meet. Once specifications are written, filter design becomes a well-defined optimization problem.
The four fundamental specification parameters define what the filter must do at each region of the frequency axis. The passband edge frequency ωp is the highest frequency that must pass with acceptable gain — everything below ωp should be transmitted. The stopband edge frequency ωs is the lowest frequency that must be blocked — everything above ωs should be attenuated. The passband ripple δp (or equivalently, the maximum allowable loss in the passband) specifies how much the gain can vary within the passband. The stopband attenuation As specifies the minimum attenuation required in the stopband, usually expressed in dB. The region between ωp and ωs is the transition band — the range of frequencies that falls between "must pass" and "must block." No ideal filter can be infinitely sharp, so this gap is where the filter makes its transition.
The fundamental constraint of filter design is that a narrower transition band requires a higher-order filter. A higher-order filter has more poles (and zeros), which means more reactive elements in an analog circuit, more multiplications per sample in a digital implementation, and more phase shift (group delay). The filter order n is the key design output: given your four specifications, you can calculate the minimum order required using approximation formulas for different filter types. Butterworth filters achieve a maximally flat passband (no ripple) but need higher order for a given transition width. Chebyshev filters accept equiripple in the passband in exchange for a sharper transition — lower order for the same specs. Elliptic filters allow ripple in both passband and stopband and achieve the steepest possible transition for a given order.
Understanding these tradeoffs means you can read a spec sheet and immediately know what you are paying for. If someone demands that a filter pass 0–1 kHz with 0.1 dB ripple and attenuate everything above 1.1 kHz by 80 dB, that narrow 100 Hz transition band over a 1 kHz passband is extraordinarily demanding — it requires very high order, regardless of filter type. If the stopband edge can be relaxed to 2 kHz, the required order drops dramatically and the design becomes far cheaper. Every practical filter specification is a negotiation between signal requirements, hardware cost, and computational budget, and knowing the order-complexity relationship is what lets you evaluate those tradeoffs quantitatively before building anything.