The Discrete Fourier Transform (DFT) of a sequence $x[n]$ of length $N$ is given by: $$X[k] = \sum_{n=0}^{N-1} x[n] e^{-j 2\pi k n / N} \quad \text{for } k = 0, 1, \ldots, N-1$$ For each value of $k$, we need to compute the sum of $N$ terms.
Each term $x[n] e^{-j 2\pi k n / N}$ involves one complex multiplication.
The sum of $N$ terms involves $N-1$ complex additions.Since there are $N$ values of $k$ (from $0$ to $N-1$), the total number of complex additions required for direct computation of DFT is $N \times (N-1)$.
In this problem, $N = 16$.Therefore, the number of complex additions needed is $16 \times (16-1)$.
Number of complex additions $= 16 \times 15$.Number of complex additions $= 240$.