Suvarna Garge (Editor)

Decoding methods

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In coding theory, decoding is the process of translating received messages into codewords of a given code. There have been many common methods of mapping messages to codewords. These are often used to recover messages sent over a noisy channel, such as a binary symmetric channel.

Contents

Notation

C F 2 n is considered a binary code with the length n ; x , y shall be elements of F 2 n ; and d ( x , y ) is the distance between those elements.

Ideal observer decoding

One may be given the message x F 2 n , then ideal observer decoding generates the codeword y C . The process results in this solution:

P ( y  sent x  received )

For example, a person can choose the codeword y that is most likely to be received as the message x after transmission.

Decoding conventions

Each codeword does not have an expected possibility: there may be more than one codeword with an equal likelihood of mutating into the received message. In such a case, the sender and receiver(s) must agree ahead of time on a decoding convention. Popular conventions include:

  1. Request that the codeword be resent -- automatic repeat-request
  2. Choose any random codeword from the set of most likely codewords which is nearer to that.
  3. If another code follows, mark the ambiguous bits of the codeword as erasures and hope that the outer code disambiguates them

Maximum likelihood decoding

Given a received codeword x F 2 n maximum likelihood decoding picks a codeword y C that maximizes

P ( x  received y  sent ) ,

that is, the codeword y that maximizes the probability that x was received, given that y was sent. If all codewords are equally likely to be sent then this scheme is equivalent to ideal observer decoding. In fact, by Bayes Theorem,

P ( x  received y  sent ) = P ( x  received , y  sent ) P ( y  sent ) = P ( y  sent x  received ) P ( x  received ) P ( y  sent ) .

Upon fixing P ( x  received ) , x is restructured and P ( y  sent ) is constant as all codewords are equally likely to be sent. Therefore P ( x  received y  sent ) is maximised as a function of the variable y precisely when P ( y  sent x  received ) is maximised, and the claim follows.

As with ideal observer decoding, a convention must be agreed to for non-unique decoding.

The maximum likelihood decoding problem can also be modeled as an integer programming problem.

The maximum likelihood decoding algorithm is an instance of the "marginalize a product function" problem which is solved by applying the generalized distributive law.

Minimum distance decoding

Given a received codeword x F 2 n , minimum distance decoding picks a codeword y C to minimise the Hamming distance :

d ( x , y ) = # { i : x i y i }

i.e. choose the codeword y that is as close as possible to x .

Note that if the probability of error on a discrete memoryless channel p is strictly less than one half, then minimum distance decoding is equivalent to maximum likelihood decoding, since if

d ( x , y ) = d ,

then:

P ( y  received x  sent ) = ( 1 p ) n d p d = ( 1 p ) n ( p 1 p ) d

which (since p is less than one half) is maximised by minimising d.

Minimum distance decoding is also known as nearest neighbour decoding. It can be assisted or automated by using a standard array. Minimum distance decoding is a reasonable decoding method when the following conditions are met:

  1. The probability p that an error occurs is independent of the position of the symbol
  2. Errors are independent events - an error at one position in the message does not affect other positions

These assumptions may be reasonable for transmissions over a binary symmetric channel. They may be unreasonable for other media, such as a DVD, where a single scratch on the disk can cause an error in many neighbouring symbols or codewords.

As with other decoding methods, a convention must be agreed to for non-unique decoding.

Syndrome decoding

Syndrome decoding is a highly efficient method of decoding a linear code over a noisy channel, i.e. one on which errors are made. In essence, syndrome decoding is minimum distance decoding using a reduced lookup table. This is allowed by the linearity of the code.

Suppose that C F 2 n is a linear code of length n and minimum distance d with parity-check matrix H . Then clearly C is capable of correcting up to

t = d 1 2

errors made by the channel (since if no more than t errors are made then minimum distance decoding will still correctly decode the incorrectly transmitted codeword).

Now suppose that a codeword x F 2 n is sent over the channel and the error pattern e F 2 n occurs. Then z = x + e is received. Ordinary minimum distance decoding would lookup the vector z in a table of size | C | for the nearest match - i.e. an element (not necessarily unique) c C with

d ( c , z ) d ( y , z )

for all y C . Syndrome decoding takes advantage of the property of the parity matrix that:

H x = 0

for all x C . The syndrome of the received z = x + e is defined to be:

H z = H ( x + e ) = H x + H e = 0 + H e = H e

To perform ML decoding in a Binary symmetric channel, one has to look-up a precomputed table of size 2 n k , mapping H e to e .
Note that this is already of significantly less complexity than that of a Standard array decoding.

However, under the assumption that no more than t errors were made during transmission, the receiver can look up the value H e in a further reduced table of size

i = 0 t ( n i ) < | C |

only (for a binary code). The table is against pre-computed values of H e for all possible error patterns e F 2 n .

Knowing what e is, it is then trivial to decode x as:

x = z e

Partial response maximum likelihood

Partial response maximum likelihood (PRML) is a method for converting the weak analog signal from the head of a magnetic disk or tape drive into a digital signal.

Viterbi decoder

A Viterbi decoder uses the Viterbi algorithm for decoding a bitstream that has been encoded using forward error correction based on a convolutional code. The Hamming distance is used as a metric for hard decision Viterbi decoders. The squared Euclidean distance is used as a metric for soft decision decoders.

References

Decoding methods Wikipedia