The phonetic pattern is some how the time-dependent Fourier transform of the inital pressure wave.
They both carry somehow the same information, but in a very different way.
Fourier Transform is formally defined on continuous functions:
for a function $f$ defined from $\mathbb{R}$ to $\mathbb{R}$ (or more precisely from $\mathbb{R}$ to $\mathbb{C}$), the Fourier transform of $f$ is another function $F$ (from $\mathbb{R}$ to $\mathbb{C}$) defined as: $$ F(X) = \int_{-\infty}^{+\infty} f(x) e^{-2i \pi x X} dx $$
$x$ and $X$ represent two different quantities.
There are called reciproqual quantitites, and can be found in many domains
$x$ | $X$ |
---|---|
$t$ : time (sec) | $\omega$ : frequency (Hz) |
$x$ : space (Å) | $k$ : spacial frequency (Å$^{-1}$) |
$\lambda$ : wavelength ($cm$) | $k$ : spacial frequency ($cm^{-1}$) |
etc... |
complex numbers are central to Fourier analysis, and their understanding is needed to fully commprehend the beauty of Fourier analysis
Real numbers are regular numbers, going from $-\infty$ to $+\infty$ through every number you might want to use. They are said to belong to $\mathbb{R}$, the set of all real numbers, $\mathbb{R}$ can be seen as a line, going from $-\infty$ to $+\infty$.
If Reals are on a line, Complex numbers are on a plane. As any plane, the coordinates are defined on two axes, the horizontal axis is the $\mathbb{R}$ line, the vertical one is the Imaginary axis, also holding real numbers, and labeled with $i$. This plane is called $\mathbb{C}$ the complex plane.
A complex number $z$ (a point in this plane) is thus described with two numbers, $a$ and $b$: $$z = a +ib$$ $a$ is the real part, and $b$ the imaginary part.
The position of the complex point $z$ can also be described by its module (the distance to the center) $$ |z| = \sqrt{a^2 + b^2} $$ and the angle with the horizontal axis, called the argument, usually noted with a greek letter: $$ arg(z) = \arctan \left(\frac b a \right) = \theta$$ It is defined only between $[0 .. 2\pi]$ as any other angle.
A complex number is fully determined by $a$ and $b$, as well as by its modulus and argument. This is noted using the Euler notation: $$ z = a+ib \\ z = |z|e^{i \arg(z)} = |z|e^{i \theta} $$
Complex numbers can be added and multiplied, they form an algebra. You have a more detailed (in interactive) presentation in the complex_reminder file.
see also: Wikipedia:Complex_plane
Fourier transform (or FT) is defined as a transformation of continuous functions $f$ from $\mathbb{R}$ to $\mathbb{C}$), they have to be integrable over $]-\infty ... \infty[$, and can be extended to the limit to distributions which somehow drops this later condition.
What we're doing here is very different, it is another transform, called digital Fourier transform (or DFT), perfectly defined in mathematical terms, but very different in its form, that applies to finite series of values $y_k$.
DFT applies in the computer, were we are going to compute of vectors of values x[k]
as a representation of the series $x_k$.
we do not deal with continuous functions, but rather with series $x[n]$ and $X[k]$, instead of $f$ and $F$. The DFT is defined as: $$ X[k] = \sum_{n=0}^{N-1} e^{-2i \pi \frac{kn}{N}}x[n] $$ (you recognize the $N^{th}$ roots of 1 here.)
In the computer, DFT transforms thus a vector into another vector, as it is a linear operation, it can be represented by a (usually square) matrix, and would take a burden proportional to $N^2$ to compute for a vector of length $N$. Thanks to Cooley & Tuckey(1) there is an very efficient algorithm that does it in $N \log_2(N)$ operations provided $N$ is a power of two ($N=2^k$), and which is called Fast Fourier transform (or FFT). FFT and DFT are strictly equivalent, as there are now effecient implementations that work well for nearly all $N$ values. DFT and FT share so many properties in common that they will be considered as one same thing in the course*
1) Cooley, J., & Tukey, J. (1965). An algorithm for the machine calculation of complex Fourier series. Mathematics of Computation, 19(90), 297–301.
end of remark)