Sampling the World

In this fast world of digital signals, the following article provides a brief moment to pause and ponder upon the concepts that serve as corner stones of digitization.

sampling_gif

History: An Analog Road to the Digital World

Our world is inherently analog. All the naturally occurring information is in form of analog signal or waves. The sound waves carrying generated by our voice box as we speak or the optical signals perceived by our eyes, carry information in a continuous fabric of time and space, hence are analog. The nature of analog signals inspired various early techniques for recording and transmission of the information.

sine_wave
Fig 1: An exemplary analog sine wave

The magnetic tape recorders or vinyl records(shown below) were some of the primitive analog methods for data recording. Similarly, early AM and FM systems were purely analog. Early telephone system, which was designed primarily to transmit the human voice, translated sound waves into analog signals for transmission, which were reconverted into sound waves at the receiving handset.

vinylRecord
Fig 2: A vinyl record being played

The process of recording an analog signal may cause a significant loss of information. The loss continues as we create more copies from original existing recordings. For e.g the quality of originally recorded vinyl would me much higher than its copy. This is similar to creating a xerox copy. The first copy is slightly less brighter than original and the subsequent copy printed using the first copy has further reduction in quality. Hence, each step incurs loss of information.

Another problem with an analog signal is that it is prone to electronic noise and distortion. These distortions are introduced by communication channels and signal processing operations, which can progressively degrade the signal. In contrast, converting an analog signal to digital form introduces a low-level noise quantization noise (discussed later) into the signal. However, once in digital form, the signal can be processed or transmitted without introducing significant additional noise or distortion. In addition, digital systems allow degradation detection and correction, not available in analog systems.

These benefits of a digital signal over analog drove the innovation towards a much promising world of digital information.


The Digital Shift

The first step of establishing a digital regime is to invent a device that converts a given analog signal to a digital signal. At the heart of this descritization of signal are devices known as Analog to Digital (A/D) converters. These devices serve as a bridge between the two worlds.

An A/D converter converts a continuous time, continuous-amplitude analog signal (for e.g. a voice signal entering a microphone or light entering a camera) to discrete time, discrete-amplitude digital signal. This conversion involves sampling and quantization of the signal.

a/d
Fig 3: Analog to Digital Converter

Sampling

Sampling is a process of handpicking values out of continuous range of values. This is done at regular intervals by multiplying the entire signal with a train of impulses.

\[y[n]_{sampled} = x(t)_{analog} \times \sum_{\tau=-\infty}^{\infty} \delta(t-\tau)\tag{1} \label{one}\]
Sampling
Fig 4: Multiplication of signal with an impulse train

It is quite intersting to look at sampling operation in the frequency domain. Assume that, signal \(x(t)\) has maximum frequency component as \(w_b\) (\(w=2 \pi f\) where f is the frequency of the signal). When we take Fourier transform of equation \eqref{one}, we have:

\[\begin{align*} & Y(w)_{sampled} = 1/(2\pi) \times [X(w)_{analog} \ast \sum_{\phi=-\infty}^{\infty} 2\pi \times \delta(w-\phi w_0)]\\ & Y(w)_{sampled} = ...+ X(w+w_0)+ X(w) + X(w-w_0)+ X(w-2w_0)+...\tag{2}\label{two}\\ \end{align*}\]

As shown above in equation \eqref{two}, the frequency component of the signal gets shifted by the impulse train. The various possibilities of shifting in frequency domain is shown below.

nyquist
Fig 5: Sampling at different frequencies

The important thing to observe is that the shifting should be at least twice the max frequency component of the signal, i.e. \(w_0 \geq 2w_b\) or \(f_0 \geq 2f_b\). This is known as the Nyquist Criterion. If the relation is not satisfied, the shifted components can interfere with each other. The phenomenon is known as Aliasing. Hence, to avoid aliasing the sampling of the signal should be at a frequency higher than twice it’s maximum frequency.

Nyquist theorem or Sampling theorem states that, given a signal with maximum frequency component of \(f\)Hz, a sampling rate of at least \(2f\)Hz is required to avoid aliasing. This minimum acceptable sampling rate is called the Nyquist rate.

Quantization

After sampling, each sample value is replaced by a binary number. If the sampling frequency is high, number of samples are higher. And as number of unique sample values are high, number of bits required for the representation of the entire signal also increases. Further, more number of bits would require more memory space to store the samples. This memory overhead is greatly reduced by the process of quantization.

Quantization is the process of mapping continuous infinite values to a smaller set of discrete finite values. In this process the entire range of the signal is divided into finite number of levels.

In the example shown below, the sine wave ranges between -4V to 4V. This range is divided into 8 equally spaced levels. Quantization maps every sample to its closest level. For e.g \(1.8 \rightarrow 2\), \(0.2 \rightarrow 0\), etc.

Quantization
Fig 6: Quantization

In theory, N unique samples can be represented using n bits iff \(2^{n} \geq N\). In this example there are 20 samples. If we consider representation of all these samples, it will require 5 bits per sample as \(2^{4}< N<2^{5}\). With 8 level quantization, there are only 8 unique samples which can further be represented using 3 bits per sample. This saves 40% memory usage.

But there is no free lunch. The process of quantization approximates original samples to the nearest quantized level, introducing distortions in the original signal. This is known as the Quantization Noise or Quantisation error. The reduced memory requirements come at the cost of small distortions in the signal. There are different types of Quantizer designs in the industry that aim to reduce the quantisaion noise to the maximum excent possible. However, the important thing to note is that, quantization noise is something that can be reduced, but can never be completely eradicated.


Example: Audio Recording

Suppose you wish to record a voice note. The figure below shows a typical setup used for this purpose.

recording
Fig 7: Audio recording setup

The setup includes a microphone which converts the pressure waves of your voice into analog electrical signals. The microphone is connected to an A/D converter. The output of the A/D converter is a digital stream of bits which is wired into a memory for recording.

As human voice typically ranges from 20Hz to 20kHz, the sampling rate \((f_s)\) of the A/D converter needs to be more that twice the highest frequency i.e \(f_s \geq 40\)kHz. Standard CD-quality audio uses a sample rate of 44.1 kHz. Now we need to decide number of levels in the quantizer. In audio industry this is known as the bit depth. Some commonly used audio standards such as MP3 use are 8 bits or 16 bits of bit depth.

The recorded bits can further be retrived from the memory and fed to a digital to analog converter software in your phone which converts it back to analog signal and outputs it via speaker. Here’s a picture showing the entire picture.

recording
Fig 8: Audio recording and replay [Source]

Further Reading

Read more about various audio formats here. Detailed discussion on digitization is covered at digitalsoundandmusic.com


If you are interested in my work and thoughts, check out my Twitter or connect with me on LinkedIn.

Written on June 10, 2020