Zyablov bound

From testwiki
Jump to navigation Jump to search

In coding theory, the Zyablov bound is a lower bound on the rate r and relative distance δ that are achievable by concatenated codes.

Statement of the bound

The bound states that there exists a family of q-ary (concatenated, linear) codes with rate r and relative distance δ whenever

rmax\limits 0r1Hq(δ)r(1δHq1(1r)),

where Hq is the q-ary entropy function

Hq(x)=xlogq(q1)xlogq(x)(1x)logq(1x)

.

Figure 1: The Zyablov bound. For comparison, the GV bound (which gives achievable parameters for general codes that may not be efficiently decodable) is also plotted.

Description

The bound is obtained by considering the range of parameters that are obtainable by concatenating a "good" outer code Cout with a "good" inner code Cin. Specifically, we suppose that the outer code meets the Singleton bound, i.e. it has rate rout and relative distance δout satisfying rout+δout=1. Reed Solomon codes are a family of such codes that can be tuned to have any rate rout(0,1) and relative distance 1rout (albeit over an alphabet as large as the codeword length). We suppose that the inner code meets the Gilbert–Varshamov bound, i.e. it has rate rin and relative distance δin satisfying rin+Hq(δin)1. Random linear codes are known to satisfy this property with high probability, and an explicit linear code satisfying the property can be found by brute-force search (which requires time polynomial in the size of the message space).

The concatenation of Cout and Cin, denoted CoutCin, has rate r=rinrout and relative distance δ=δoutδin(1rout)Hq1(1rin).

Expressing rout as a function of δ,rin,

rout1δH1(1rin)

Then optimizing over the choice of rin, we see it is possible for the concatenated code to satisfy,

rmax\limits 0rin1Hq(δ)rin(1δHq1(1rin))

See Figure 1 for a plot of this bound.

Note that the Zyablov bound implies that for every δ>0, there exists a (concatenated) code with positive rate and positive relative distance.

Remarks

We can construct a code that achieves the Zyablov bound in polynomial time. In particular, we can construct explicit asymptotically good code (over some alphabets) in polynomial time.

Linear Codes will help us complete the proof of the above statement since linear codes have polynomial representation. Let Cout be an [N,K]Q Reed–Solomon error correction code where N=Q1 (evaluation points being 𝔽Q* with Q=qk, then k=θ(logN).

We need to construct the Inner code that lies on Gilbert-Varshamov bound. This can be done in two ways

  1. To perform an exhaustive search on all generator matrices until the required property is satisfied for Cin. This is because Varshamov's bound states that there exists a linear code that lies on Gilbert-Varshamon bound which will take qO(kn) time. Using k=rn we get qO(kn)=qO(k2)=NO(logN), which is upper bounded by nNO(lognN), a quasi-polynomial time bound.
  2. To construct Cin in qO(n) time and use (nN)O(1) time overall. This can be achieved by using the method of conditional expectation on the proof that random linear code lies on the bound with high probability.

Thus we can construct a code that achieves the Zyablov bound in polynomial time.

See also