top of page
Search

Introduction to AWGN (Additive White Gaussian Noise)

Writer: Ravi ShekharRavi Shekhar

In the world of telecommunications and signal processing, noise is something that we always must deal with. It can mess up signals and make communication harder. Among the many types of noise, Additive White Gaussian Noise (AWGN) is particularly important because it’s used a lot in both theory and practice. This article will explain what AWGN is in simple terms, using examples to make it easy to understand.



What is AWGN?

AWGN stands for Additive White Gaussian Noise. Let's break down what each part of this term means with simple examples:

  • Additive: This means that the noise gets added to the signal. Think of it like adding salt to a soup. The salt (noise) doesn’t change the soup itself (signal), but it does affect the taste (the final output).

  • White: In this context, “white” means that the noise has the same intensity across all frequencies. Imagine white light that has all the colors mixed equally. In the same way, white noise has all the sound frequencies mixed equally.

  • Gaussian: This means that the noise values follow a Gaussian distribution, also known as a normal distribution. If you were to plot the noise values, they would form a bell-shaped curve, with most values being close to zero and fewer values being far from zero.


Properties of AWGN

AWGN has several important properties that affect how it interacts with signals. Here are those properties with simple examples:

  • Linearity: The noise is added to the signal in a straightforward way. If you have a clear signal that looks like a wave and you add noise to it, the result is just the clean wave plus some random noise on top.

  •  Spectral Density: The power of the noise is evenly spread out across all frequencies. Imagine the noise being a flat carpet that covers the entire floor equally.

  • Gaussian Distribution: The noise values follow a bell-shaped curve where most values are close to zero. Think of people’s heights in a large group: most people are of average height, with fewer people being very short or very tall.

  • Independence: The noise at one moment doesn’t affect the noise at another moment. Imagine each grain of sand falling on the floor separately, without any connection to the others.


Mathematical Representation

Let’s put this in a simple formula:

r(t)=s(t)+n(t)

Here,

r(t) = the received signal

s(t) = the original signal

n(t) = the noise (is like a random value that gets added to the signal)


If we want to describe the noise n(t) mathematically, we can use the Gaussian distribution:

But don't worry too much about this formula! It just means that most of the noise values are around zero, with fewer values being very high or very low.


Impact on Communication Systems

AWGN can significantly affect how well communication systems work. Here are a couple of important concepts:

Signal-to-Noise Ratio (SNR)

SNR is a measure of how strong the signal is compared to the noise.

Imagine trying to talk to someone in a noisy room.

The louder your voice (signal) compared to the background noise, the better they can hear you. SNR is usually measured in decibels (dB).

 

SNR (dB)=10log10​(Ps/Pn​​)

where Ps is the signal power and Pn ​ is the noise power. A higher SNR means a clearer signal.

 

Bit Error Rate (BER)

BER measures how often errors happen when transmitting data. If you're sending a message in Morse code, BER would tell you how many dots and dashes get messed up. AWGN increases the likelihood of these errors. Different types of signals and codes have different BERs when noise is present.

For example, if you're using a simple on/off keying method (like flashing a light on and off), the BER might be higher than if you use a more complex method that can better distinguish between signal and noise.

 

Modelling AWGN in Communication Systems

AWGN is often used in simulations to test communication systems. By adding simulated AWGN to signals, engineers can see how the systems perform under noisy conditions.


Channel Capacity

Shannon’s Theorem tells us about the maximum rate at which data can be sent over a channel with noise without errors. For an AWGN channel, the capacity

𝐶 (in bits per second) is given by:

where B= the bandwidth

P = the signal power, and

No​ = the noise power spectral density.



This equation shows that increasing the bandwidth or the signal power can improve the channel capacity, but only to a certain extent.

Simulation Models

In computer simulations, AWGN can be created using random number generators that produce values following a Gaussian distribution. These values are then added to the signal to see how it behaves with noise.


Mitigation Techniques

To deal with AWGN, various techniques are used:

Error-Correcting Codes

These are special codes that help detect and fix errors in transmitted data. Here are some examples:

  • Hamming Codes: Simple codes that can fix single-bit errors.

  • Reed-Solomon Codes: Can correct multiple errors in a block of data.

  • Turbo Codes and LDPC Codes: Advanced codes that can approach the theoretical limits of error correction.


Modulation Schemes

Choosing the right way to modulate the signal can make it more resistant to noise. For example, Quadrature Amplitude Modulation (QAM) and Phase Shift Keying (PSK) are methods designed to be robust against noise.


Spread Spectrum Techniques

Spread spectrum techniques, like Direct Sequence Spread Spectrum (DSSS) and Frequency Hopping Spread Spectrum (FHSS), spread the signal over a wider range of frequencies, making it harder for noise to disrupt the signal.


Filtering

Filters can remove some of the noise from the received signal. For example, a low-pass filter can cut out high-frequency noise, improving the signal quality.


Applications of AWGN

Understanding AWGN is crucial in many areas:

  • Communication System Design

Engineers use AWGN models to design and improve communication systems. By simulating noise, they can find out how much SNR is needed for reliable communication and choose the best modulation and coding techniques.

  • Performance Analysis

AWGN is a standard benchmark for comparing different communication technologies. Researchers use it to test new methods and improve existing ones.

  • Standards and Testing

Many communication standards require systems to perform well under AWGN conditions. Equipment and protocols are often tested with AWGN to ensure they meet these standards.

 

Additive White Gaussian Noise (AWGN) is a fundamental concept in telecommunications and signal processing. Its simplicity and well-defined properties make it essential for analysing and designing communication systems. Understanding AWGN helps engineers create more robust and efficient systems, ensuring reliable communication even in the presence of noise. As technology advances, the principles of AWGN will continue to play a crucial role in improving communication technologies.

Comments


bottom of page