BCH code

from Wikipedia, the free encyclopedia

BCH codes (Bose-Chaudhuri-Hocquenghem codes) are cyclical error-correcting codes that are used in digital signal processing and data storage . The name BCH is derived from the first letters of the three scientists who developed this code: RC Bose , DK Ray-Chaudhuri and A. Hocquenghem (1908–1990). BCH codes correct several 1-bit errors in a longer user data word.

definition

Let be a primitive -th root of unity in an extension field of the finite field . Be , and C is the cyclic code whose generator is the product of different minimal polynomials of is. (Then C consists of all with ), then C is called a BCH code with a planned minimum distance , where C has the minimum distance .

In this case , one speaks of a BCH code in the usual sense .

If an m exists with (i.e. is a generator of the multiplicative group of a field ), then one speaks of a primitive BCH code.

A Reed-Solomon code is a primitive BCH code in the ordinary sense to which applies. So here the minimal polynomials are of the form .

Areas of application

  • The so-called Reed-Solomon codes are special BCH codes and are used e.g. B. used to correct errors on audio CDs .
  • The BCH code is also used to back up the TPS data in the DVB-T standard.
  • The POCSAG and FLEX paging protocols use the BCH (31,21) code

BCH (15, 7, 5)

A BCH code is given as an example . The parameters are to be interpreted as follows. The code generates code words with a length of bits , bits of which contain the coded information and bits of redundancy are used to correct transmission errors. The parameter indicates the minimum Hamming distance of the code.

The following applies: transmission errors of up to single bit errors can be detected, transmission errors of up to single bit errors can be corrected. Bundle errors of up to bits are recognized.

A BCH code is usually described by its generator polynomial. In the example given, the generator polynomial is . The number of check bits nk can always be read from the generator polynomial. It applies .

For the dimension of the code applies: .

Encode

The multiplication or division method can be used for coding with BCH codes.

Multiplication method

During the multiplication method for encoding Quellkodewort out is bits simply multiplied by the generator polynomial of the BCH code. The following applies: . Stands for the coded channel code word , stands for the uncoded source code word. The multiplication can be carried out both with polynomials and with a binary representation of the polynomials.

Here we want to calculate an example in binary representation:

The given generator polynomial can be represented in binary as the sequence (the sequence is to be interpreted as ).

In our example, or serves as the source code word to be coded .

In order to get the encoded channel codeword, we now simply have to multiply by:

Division procedure

The division method makes it possible for a given source code word to determine precisely that channel code word which has the given source code word as a prefix, which is why it is said that the method delivers a systematic code. For a given generator polynomial and a source code word , the associated channel code word is calculated using the division method as follows:

That means you have to find the remainder of the polynomial division and subtract it from. Using the example from above:

The division in coefficient notation is then:

 100101100000000 : 111010001 = 1100111
  111111010
   001010110
    010101100
     101011000
      100010010
       110000110
        --------
        01010111


This applies .

Decode

The decoding can be done using various methods according to the following pattern:

  1. Determination of the syndrome value (division remainder) by dividing the received channel code word by the generator polynomial . If the remainder is not equal to 0, one or more errors have occurred.
  2. Determine the error polynomial.
  3. Determination of the zeros of the error polynomial to determine the error positions in the code word.
  4. Determination of the error values

Common algorithms for decoding BCH codes are the Berlekamp-Massey algorithm or the Peterson-Gorenstein-Zierler algorithm .

example

If the code word from the example above is transmitted without errors, the remainder of the division remains zero. The division in coefficient notation is then:

<!-- Berechnungen können hier nachgerechnet werden: http://www.flechtmann.net/crc/index.php -->
  100101101010111 : 111010001 = 1100111
   111010001
    001010011
     010100110
      111010001
       100111001
        111010001
         --------
         '''00000000'''

If the code word were falsified during transmission, for example to 10 1 101 01 1010111 (digits 3, 7 and 8), an error syndrome different from 0 would result after the polynomial division:

  101101011010111 : 111010001 = 1111100
   101110100
    101001011
     100110100
      111001011
       000110101
        001101011
         --------
         '''01101001'''

literature

  • Shu Lin, Daniel J. Costello: Error Control Coding. Fundamentals and applications . 2nd Edition. Prentice Hall, Upper Saddle River NJ 2004, ISBN 0-13-042672-5 .
  • Robert H. Morelos-Zaragoza: The Art of Error Correcting Coding . 2nd Edition. Wiley, New York NY 2006, ISBN 0-470-01558-6 .