Questions: Polyphase Filter Decomposition and Structure

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A 64-tap FIR lowpass filter is used to decimate by 4. In the naive approach, you apply the full filter at the input rate and keep every 4th output. Using a polyphase structure instead, how much is computation reduced per unit time?

ANo reduction — both approaches require 64 multiplications per output sample
B4× reduction — the polyphase structure computes at 1/4 the rate, so the per-input-sample cost drops from 64 to 16 multiplications
C64× reduction — the filter is split into 64 independent subfilters each of length 1
D2× reduction — half the computations are avoided because every other sample is discarded
Question 2 Multiple Choice

Why does a polyphase decimation structure produce exactly the same output as naive decimation (filter first, then downsample)?

AIt uses a different set of optimized filter coefficients that happen to give the same frequency response
BBoth methods alias the same frequency components in the same way during downsampling
CPolyphase decomposition is a mathematical reorganization of the same filter computation — it reorders operations without changing the result
DThe outputs are approximately equal, with the difference decreasing as the number of polyphase branches increases
Question 3 True / False

Polyphase decomposition works by splitting a single filter into multiple independent bandpass filters, each processing a different frequency range of the input signal.

TTrue
FFalse
Question 4 True / False

In a polyphase decimation-by-M structure, each polyphase subfilter operates at 1/M the original input sample rate, and this is the source of the computational efficiency gain.

TTrue
FFalse
Question 5 Short Answer

Explain in your own words why naive decimation is computationally wasteful, and how polyphase decomposition eliminates that waste without changing the filtering result.

Think about your answer, then reveal below.