1.1. Preliminaries#

Before we get too far into digital signals, we’ll need to establish some basic notation and concepts. This section covers the following

  • What is a signal?

  • Mathematical notation

  • Standard conventions

It does not cover mathematical fundamentals. For the first few chapters, we will not need much math beyond basic algebra (variables and rules of arithmetic), and a bit of geometry. Later on, we’ll make use of more advanced concepts (complex numbers, polynomials, and exponentials), but those will be introduced as needed.

Note

I sometimes use the term basic when describing certain ideas. By this, I mean that these ideas are the base level upon which we will build. This is not the same thing as being easy. Many basic ideas can be complicated, and take quite some time to thoroughly understand.

If the mathematical concepts start to seem overwhelming at some point, don’t worry. Just take it slow, and don’t move on to the next section too soon. None of the contents here are magical: it all builds on basic ideas.


1.1.1. What is a signal?#

At a high level, a signal is a way of conveying information. There unfortunately isn’t a simple, concise, technical definition of signal that provides us with much insight. The most intuitive example of a signal, at least for acoustically inclined people, is the voltage on a wire connected to a microphone. If you were to watch the voltage change over time, you might see something like the figure below:

A waveform illustration showing voltage changing continuously as a function of time.

Fig. 1.1 An example signal, showing voltage changing over time.#

The blue curve above represents the voltage measured at every time \(t\), and we denote this curve (our signal) by the notation

\[ x(t). \]

If we want to know the voltage at a specific time, say, 4 seconds, we would substitute that value for \(t\) to get \(x(4)\). (In this case, \(x(4) \approx 0.3\).) Not all signals measure voltages, though at least recorded audio signals are typically constructed from electrical signals. For audio processing, the important thing is that the signal can be converted somehow into changes in air-pressure that our ears can detect and interpret as sound. Whether \(x(t)\) is measuring volts, Pascals (the standard unit of air pressure), or something else, is usually not too important, as we are primarily concerned with the relative changes in the signal and not its absolute interpretation. For that reason, we usually do not bother precisely annotating the units of whatever the signal is measuring.

To be a bit more precise, the signal \(x(t)\) above is a time-domain signal. There are other kinds of signals: for example, a gray-scale image can be thought of as a signal over two input coordinates (horizontal and vertical position), and the measurement is the brightness at that point. Most of the techniques we develop in this book can be carried over to more general types of signals, but we will focus on the time-domain.

1.1.2. Notation#

The first bit of notation that we’ll need is for signals.

  • \(x(t)\) denotes a continuous-time signal. \(t\) can be any real number: 0, 1, -53, \(\pi\), etc. We read this as “signal \(x\) at time \(t\).”

  • \(x[n]\) denotes a discrete-time signal. \(n\) must be an integer: \(0, 1, 2, -1, -2\), etc. We read this as “the \(n^\text{th}\) sample of signal \(x\).”

For this first chapter, we’ll deal only with continuous signals \(x(t)\). Discrete signals will be introduced in the next chapter, but it’s important to keep clear the distinction of notation: parentheses for continuous time, square brackets for discrete sample indices. When the usage is clear from context, we may omit the time or sample index and refer to a signal just by its name \(x\) – this should be understood as referring to the entire signal.

Because we often use the letter “x” to refer to signals, we’ll need a different symbol to represent multiplication. We’ll instead use the center dot \(\cdot\) for this, e.g., \(2\cdot 3 = 6\). This creates a bit of a disconnect between multiplication in software (usually denoted by *) and in text, but this is for good reason: the \(*\) operator will be used for a different purpose later on, known as convolution. Using \(\cdot\) instead of \(*\) for multiplication will help avoid confusion due to notation issues.

Usually, we’ll let \(x(t)\) represent an arbitrary signal. If we need to refer to a specific signal, it will be defined explicitly by a mathematical formula, such as this example

\[ x(t) = \sin(2\pi \cdot t) \]

would define a pure tone oscillating at 1 cycle per second.

Most of what we do in signal processing amounts to modifying a signal in some way, for example, applying a low-pass filter to remove high-frequency content. We can think of this as applying some function \(g\) to an input signal \(x\) and producing an output signal \(y\), which we write as

\[ y = g(x). \]

1.1.3. Standard conventions#

We’ll often use \(x(t)\) and \(y(t)\) to generally refer to input and output signals, respectively.

To keep things simple, time will always be referred to by the letter \(t\), and it will always be measured in units of seconds. As stated above, time should be understood to be continuously valued. Time will be measured starting from 0.

Discrete (i.e., integer-valued) quantities will be referred to by the letters \(n\), \(m\), or \(k\). These also will be measured starting from 0. This means that a sequence of length \(N\) has indices \(0, 1, 2, \dots, N-1\). If you’re not used to this, it can seem a bit awkward at first, but trust me: this convention will make the math much easier later on.

Unless otherwise stated, we will by default assume that signals are 0-valued when \(t\) (for continuous-time) or \(n\) (for discrete-time) are negative:

(1.1)#\[\begin{split}\begin{split} t < 0 &\Rightarrow x(t) = 0\\ n < 0 &\Rightarrow x[n] = 0. \end{split}\end{split}\]

You can think of this as pretending that signals are silent until you start recording.

A signal beginning at time 0 has value 0 for any negative time.

Fig. 1.2 An example signal showing that voltage \(x(t) = 0\) for all \(t < 0\) (negative time).#

Angles will be denoted by the Greek letters \(\theta\) (theta) or \(\phi\) (phi), and measured in units of radians, not degrees. There are \(2\pi\) radians in a full rotation (\(360^\circ\)); \(\pi\) radians in a half rotation (\(180^\circ\)), and \(\pi/2\) radians in a right angle (\(90^\circ\)).

Illustration of various angles measured in radians as a portion of a circle.

Fig. 1.3 Illustrations of angles measured in radians, denoted by \(\theta\).#

We’ll use the letter \(\mathrm{j}\) to refer to the imaginary unit, i.e., \(\mathrm{j} = \sqrt{-1}\). Mathematicians traditionally use \(i\) for this, but \(\mathrm{j}\) is more commonly used in electrical engineering because \(i\) is reserved for electrical current. Fortunately for us, the Python programming language also uses 1j to denote the imaginary unit, so translating from text to code should be fairly straightforward.

Complex numbers — numbers with both a real and imaginary component — will be denoted generally by the letter \(z\) (or occasionally \(w\)). This is primarily for consistency with other mathematical traditions. In general, \(x\) and \(y\) can assumed to be real-valued, and \(z\) can be assumed to be complex-valued unless otherwise stated.

Finally, we will occasionally see snippets of code that implement the abstract concepts being described in the text. This code will be written in the Python programming language, and will be typeset as follows:

for n in range(len(x)):
    y[n] = 2*x[n]  # Hurray! Now y is twice as big as x

More specifically, I will assume Python 3.6 or later, and will make use of the NumPy package for numerical computation. If you’re new to Python, I recommend getting started with the Anaconda distribution.