|
The discrete Fourier transform (DFT) is an invertible transform widely employed in signal processing and analysis. It can be computed using stable efficient algorithms known as Fast Fourier Transform (FFT) algorithms.
Given a sequence $\{f_n\}_{n=0}^{N-1}$ of $N$ complex numbers, the DFT is defined as a sequence $\{F_k\}_{k=0}^{N-1}$ of $N$ complex numbers according to the equation
$$F_k = \frac{1}{N^{(1-p)/2}} \sum_{n=0}^{N-1} f_n\,W_N^{-k,n}\quad \quad k=0, 1, 2, \dots, N-1$$
where $W_N^{k,n}=e^{2\pi i q k n/N}$ are the basis functions, $p$ is an arbitrary real number and $q$ is either $1$ or $-1$ .
Similarly, we can reconstruct $\{f_n\}_{n=0}^{N-1}$ from $\{F_k\}_{k=0}^{N-1}$ via the inverse discrete Fourier transform (IDFT):
$$f_n = \frac{1}{N^{(1+p)/2}} \sum_{k=0}^{N-1} F_k\,W_N^{k,n}\quad \quad n = 0, 1, 2, \dots, N-1$$
Generically, if we have some vector
that we wish to project on to a set of unit basis vectors
, we find that the $k$ th component of the projection
is given by
where
is an inner product. Using the standard dot product of complex vectors, we have $$v_k' = \sum_{j=0}^m v_j\bar{B}_{k,j}$$ (where $\bar{z}$ represents the complex conjugate of $z$ ).
We may use a similar procedure to project a function onto basis functions. Here, the components of our vectors are the functions sampled at certain time intervals.
The idea of the Fourier transform is to project our discrete function $\{f_n\}$ onto a basis made up of sinusoidal functions of varying frequency.
We know from Euler's relation that $$e^{ix} = \cos x + i\sin x$$ so we can construct a sinusoidal function of any frequency $k$ : $$W_N^{k,n} = e^{2\pi i q k n/N} = \cos (2\pi i q k n/N) + i\sin(2\pi i q k n/N)$$
By Nyquist's theorem, any frequency components of $\{f_n\}$ above the Nyquist frequency $\frac{N}{2}$ will be aliased into lower frequencies, so we will only concern ourselves with the frequency components $\frac{-N}{2} \leq k \leq \frac{N}{2}$ .
Now we substitute these results into the standard formula for projection to reveal that
$$F_k = \sum_{n=0}^{N-1} f_n\,W_N^{-k,n}\quad \quad k=0, 1, 2, \dots, N-1$$
This procedure may be interpreted in terms of group theory as follows: The basis functions $\chi_k (j) e^{-2\pi \nu_k i j / f}$ are the characters of the irreducible representations of the group $\mathbb{Z}_M$ . The orthogonality relation $\langle \chi_m, \chi_n \rangle = \delta_{mn}$ which was used to obtain the transform as a projection is the orthogonality relation for characters.
Once we view the discrete Fourier transform in this fashion, it is not hard to generalize it by replacing $\mathbb{Z}_M$ with any discrete group $G$ . As it turns out, there are two versions of the generalization which turn out to coincide exactly in the case of commutative groups (such as $\mathbb{Z}_M$ ).
First generalization: Let $f \colon G \to \mathbb{C}$ be conjugation invariant, which means that, for every $y \in G$ , it is the case that $f(yxy^{-1}) = f(x)$ . Then one has $$ f(x) = \sum_k \frac{1}{d_k} \langle f, \chi_k \rangle \chi_k (x) $$
where the index $k$ runs over all irreducible representations and $d_k$ is the dimension of the representation $k$ . The inner product on vectors is the usual one:
The justification for this comes from the fact that the set of irreducible characters spans the space of conjugation invariant functions and the orthogonality of these characters.
Second generalization: If $f \colon G \to \mathbb{C}$ is any function on a group (not necessarily conjugation invariant), then we have the transform $$ f(x) = \sum_k \sum_{i,j = 1}^{d_k} \langle f, \rho^{k}_{mn} \rangle \rho^{k}_{mn} (x) $$
where $k$ and $d_k$ are as before and $\rho^k_{mn}$ are the matrix elements of the representation $k$ . The justification for this comes from the fact that the set of matrix elements of representations spans the space of functions on the group and the orthogonality relation for matrix elements.
Remarks: DFT is also generalized by two-dimensional Fourier transforms (2D-FT), and by Fourier-Stieltjes transforms, that can also be numerically computed by utilizing FFT, but tend to be much slower that the one-dimensional FFT.
References: Paul Bourke, "Discrete Fourier Transform"
|