Snell envelope: Difference between revisions
en>David Eppstein →References: start class, not stub |
en>John |
||
Line 1: | Line 1: | ||
{{Multiple issues| | |||
{{refimprove |date= May 2012}} | |||
{{overly detailed|date=August 2013}} | |||
}} | |||
In [[coding theory]], [[list decoding]] is an alternative to unique decoding of error-correcting codes for large error rates. Using unique decoder one can correct up to <math> \delta / 2 </math>fraction of errors. But when error rate is greater than <math> \delta / 2 </math>, unique decoder will not able to output the correct result. List decoding overcomes that issue. List decoding can correct more than <math> \delta / 2 </math> fraction of errors. | |||
There are many efficient algorithms that can perform List decoding. list decoding algorithm for [[RS code|Reed–Solomon (RS) codes]] by [[Madhu Sudan|Sudan]] which can correct up to <math> 1 - \sqrt{2R}</math> errors is give first. Later on more efficient [[Venkatesan Guruswami|Guruswami]]–[[Madhu Sudan|Sudan]] list decoding algorithm, which can correct up to <math> 1 - \sqrt{R}</math> errors is discussed. | |||
Here is the plot between rate R and distance <math> \delta</math> for different algorithms. | |||
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/81/Graph.jpg | |||
== Algorithm 1 (Sudan's list decoding algorithm) == | |||
===Problem statement=== | |||
'''Input :''' A field <math>\mathbb {F}</math>; n distinct pairs of elements <math>{(x_{i},y_{i})_{i=1}^n} </math> from <math>F \times F</math>; and integers <math>d</math> and <math>t</math>. | |||
'''Output:''' A list of all functions <math>f: F\mapsto F </math> satisfying | |||
<math> f(x)</math> is a polynomial in <math> x</math> of degree at most d with | {<math> i|f(x_{i}) = y_{i}</math> } |<math> \ge t </math> -- (1) | |||
To understand Sudan's Algorithm better, one may want to first know another algorithm which can be considered as the earlier version or the fundamental version of the algorithms for list decoding RS codes - the [[Berlekamp–Welch algorithm]]. | |||
Welch and Berlekamp initially came with an [[Berlekamp–Welch algorithm|algorithm]] which can solve the problem in polynomial time with best threshold on <math>t</math> to be <math> t \ge (n+d+1)/2</math>. | |||
The mechanism of Sudan's Algorithm is almost the same as the algorithm of Berlekamp–Welch Algorithm, except in the step 1, one wants to compute a bivariate polynomial of bounded <math>(1, k)</math> degree. Sudan's list decoding algorithm for Reed–Solomon code which is an improvement on Berlekamp and Welch algorithm, can solve the problem with <math> t = (\sqrt{2nd})</math>.This bound is better than the unique decoding bound <math> 1 - \left (\frac{R} {2} \right)</math> for <math>R < 0.07</math>. | |||
===Algorithm=== | |||
'''Definition 1 (weighted degree)''' | |||
For weights <math>w_x,w_y , \epsilon Z^+ </math>, the <math>(w_x,w_y)</math> – weighted degree of monomial <math> q_{ij}x^i y^j</math> is <math>iw_x + jw_y</math>. The <math>(w_x,w_y)</math> – weighted degree of a polynomial <math>Q(x,y) = \sum_{ij} q_{ij}x^iy^j</math> is the maximum, over the monomials with non-zero coefficients, of the <math>(w_x,w_y)</math> – weighted degree of the monomial. | |||
E.g. : <math>3xy</math> is a monomial in variables <math>x,y</math> with a coefficient of 3. | |||
'''Algorithm:''' | |||
Inputs: <math>n,d,t</math>; {<math>(x_1,y_1)\cdots(x_n,y_n)</math>} /* Parameters l,m to be set later. */ | |||
Step 1: Find any function <math>Q : F^2 \mapsto F</math> satisfying | |||
<math>Q(x,y)</math> has (1,''d'')-weighted degree at most <math>m+ld</math>, (2) | |||
for every <math> i </math> <math>\in</math> n, <math>Q(x,y) = 0,</math> | |||
<math>Q</math> is not identically zero. | |||
Step 2. Factor the polynomial Q into irreducible factors. | |||
Step 3. Output all the polynomials <math> f </math> such that <math> (y- f(x))</math> is a factor of Q and <math>f(x_i) = y_i</math> for at least t values of <math>i</math> <math>\in</math> n | |||
=== Analysis === | |||
One have to prove that the above algorithm runs in polynomial time and outputs the correct result. That can be done by proving following set of claims. | |||
'''Claim 1:''' | |||
If a function <math>Q : F^2 \mapsto F</math> satisfying (2) exists, then one can find it in polynomial time. | |||
'''Proof:''' | |||
Note that a bivariate polynomial <math>Q(x, y )</math> of <math>(1, k)</math> degree at most <math>D</math> can be represented as | |||
follows: | |||
Let <math>Q(x,y) = \sum_{j=0}^l \sum_{k=0}^{m+(l-j)d} q_{kj} x^k y^j</math>. Then one have to find the coefficients <math>q_{kj}</math> satisfying the constraints <math>\sum_{j=0}^l \sum_{k=0}^{m+(l-j)d} q_{kj} x^k y^j = 0</math>, for every <math> i \epsilon [n]</math>. This is a linear set of equations in the unknowns {<math>q_{kj}</math>}. One can find a solution using [[Gaussian elimination]] in polynomial time. | |||
'''Claim 2:''' | |||
If <math>(m+1)(l+1)+d \begin{pmatrix}l + 1\\2\end{pmatrix} > n</math> then there exists a function <math> Q(x,y)</math> satisfying (2) | |||
'''Proof:''' | |||
To ensure a non zero solution exists, the number of variables in <math>Q(x,y)</math> should be greater than the number of constraints. Assume that maximum degree <math>deg_X(Q)</math> of <math> X </math>in <math>Q(x,y) </math> be m and maximum degree <math>deg_Y(Q)</math> of <math> Y </math>in <math>Q(x,y) </math> be l. Then the degree of <math>Q(x,y)</math> will be atmost <math> m+ld </math>. | |||
One have to see that the linear system is homogenous. The setting <math>q_{jk} = 0</math> satisfies all linear constraints. However this does not satisfy (2), since the solution can be identically zero. To ensure that non-zero solutions exists, One have to make sure that number of unknowns in the linear system to be <math>(m+1)(l+1)+d \begin{pmatrix}l + 1\\2\end{pmatrix} > n</math>, so that one can have a non zero <math> Q(x,y)</math>. Since this value is greater than n, there are more variables than constraints and therefore a non-zero solution exists. | |||
'''Claim 3:''' | |||
If <math>Q(x,y)</math> is a function satisfying (2) and <math>f(x)</math> is function satisfying (1) and <math>t>m+ld</math>, then <math>(y-f(x)) </math> divides <math>Q(x,y)</math> | |||
'''Proof:''' | |||
Consider a function <math>p(x) = Q(x,f(x))</math>. This is a polynomial in <math>x</math>, and argue that it has degree at most <math>m+ld</math>. Consider any monomial <math>q_{jk}x^k y^j</math> of <math>Q(x)</math>. Since <math>Q</math> has <math>(1,d)</math>-weighted degree at most <math>m+ld</math>, one can say that <math>k+jd \le m+ld</math>. Thus the term <math>q_{kj}x^kf(x)^j</math> is a polynomial in <math>x</math> of degree at most <math>k+jd \le m+ld</math>. Thus <math>p(x) </math> has degree at most <math>m+ld</math> | |||
Next argue that <math>p(x)</math> is identically zero. Since <math>Q(x_i,f(x_i)) </math> is zero whenever <math> y_i = f(x_i) </math>, one can say that <math>p(x_i)</math> is zero for strictly greater than <math> m+ld </math> points. Thus <math>p </math>has more zeroes than its degree and hence is identically zero, implying <math> Q(x,f(x)) \equiv 0</math> | |||
Finding optimal values for <math>m</math> and <math>l</math>. | |||
Note that <math> m+ld <t </math> and <math>(m+1)(l+1)+d \begin{pmatrix}l + 1\\2\end{pmatrix} > n </math> | |||
For a given value <math>l</math>, one can compute the smallest <math>m</math> for which the second condition holds | |||
By interchanging the second condition one can get <math>m</math> to be at most <math>(n+1-d \begin{pmatrix}l + 1\\2\end{pmatrix})/2 - 1 </math> | |||
Substituting this value into first condition one can get <math>t</math> to be at least <math>\frac{n+1}{l+1} + \frac{dl}{2}</math> | |||
Next minimize the above equation of unknown parameter <math>l</math>. One can do that by taking derivative of the equation and equating that to zero | |||
By doing that one will get, <math> l = \sqrt{\frac{2(n+1)}{d}} -1 </math> | |||
Substituting back the <math>l</math> value into <math>m</math> and <math>t</math> one will get | |||
<math> m \ge \sqrt{\frac{(n+1)d}{2}} - \sqrt{\frac {(n+1)d}{2}} + \frac{d}{2} - 1 = \frac{d}{2} -1 </math> | |||
<math> t > \sqrt{\frac{2(n+1)d^2}{d}} - \frac {d}{2} -1 </math> | |||
<math> t > \sqrt{2(n+1)d} - \frac {d}{2} -1 </math> | |||
==Algorithm 2 (Guruswami–Sudan list decoding algorithm) == | |||
===Definition=== | |||
Consider a <math>(n,k)</math> Reed–Solomon code over the finite field <math>\mathbb{F} = GF(q)</math> with evaluation set <math>(\alpha_1,\alpha_2,\ldots,\alpha_n)</math> and a positive integer <math>r</math>, the Guruswami-Sudan List Decoder accepts a vector <math>\beta = (\beta_1,\beta_2,\ldots,\beta_n)</math> <math>\in</math> <math>\mathbb{F}^n</math> as input, and outputs a list of polynomials of degree <math>\le k</math> which are in 1 to 1 correspondence with codewords. | |||
The idea is to add more restrictions on the bi-variate polynomial <math>Q(x,y)</math> which results in the increment of constraints along with the number of roots. | |||
===Multiplicity=== | |||
A bi-variate polynomial <math>Q(x,y)</math> has a zero of multiplicity <math>r</math> at <math>(0,0)</math> means that <math>Q(x,y)</math> has no term of degree <math>\le r</math>, where the ''x''-degree of <math>f(x)</math> is defined as the maximum degree of any x term in <math>f(x)</math> | |||
<math>\qquad</math> <math>deg_x f(x)</math> <math>=</math> <math>\max_{i \in I} \{i\}</math> | |||
For example: | |||
Let <math>Q(x,y) = y - 4x^2</math>. | |||
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/76/Fig1.jpg | |||
Hence, <math>Q(x,y)</math> has a zero of multiplicity 1 at (0,0). | |||
Let <math>Q(x,y) = y + 6x^2</math>. | |||
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/76/Fig2.jpg | |||
Hence, <math>Q(x,y)</math> has a zero of multiplicity 1 at (0,0). | |||
Let <math>Q(x,y) = (y - 4x^2) (y + 6x^2)</math> | |||
<math>Q(x,y) = y^2 + 6x^2y - 4x^2y -24x^4</math> | |||
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/76/Fig3.jpg | |||
Hence, <math>Q(x,y)</math> has a zero of multiplicity 2 at (0,0). | |||
Similarly, if <math>Q(x,y) = [(y - \beta) - 4(x - \alpha)^2)] [(y - \beta) + 6(x - \alpha)^2)]</math> | |||
Then, <math>Q(x,y)</math> has a zero of multiplicity 2 at <math>(\alpha,\beta)</math>. | |||
====General definition of multiplicity==== | |||
<math>Q(x,y)</math> has <math>r</math> roots at <math>(\alpha,\beta)</math> if <math>Q(x,y)</math> has a zero of multiplicity <math>r</math> at <math>(\alpha,\beta)</math> when <math>(\alpha,\beta) \ne (0,0)</math>. | |||
===Algorithm=== | |||
Let the transmitted codeword be <math>( f(\alpha_1), f(\alpha_2),\ldots,f(\alpha_n))</math>,<math>(\alpha_1,\alpha_2,\ldots,\alpha_n)</math> be the support set of the transmitted codeword & the received word be <math>(\beta_1,\beta_2,\ldots,\beta_n)</math> | |||
The algorithm is as follows: | |||
• '''Interpolation step''' | |||
For a received vector <math>(\beta_1,\beta_2,\ldots,\beta_n)</math>, construct a non-zero bi-variate polynomial <math>Q(x,y)</math> with <math>(1,k)-</math>weighted degree of at most <math>d</math> such that <math>Q</math> has a zero of multiplicity <math>r</math> at each of the points <math>(\alpha_i,\beta_i)</math> where <math> 1 \le i \le n</math> | |||
: <math>Q(\alpha_i,\beta_i) = 0 \, </math> | |||
• '''Factorization step''' | |||
Find all the factors of <math>Q(x,y)</math> of the form <math>y - p(x)</math> and <math>p(\alpha_i) = \beta_i</math> for at least <math>t</math> values of <math>i</math> | |||
where <math>0 \le i \le n</math> & <math>p(x)</math> is a polynomial of degree <math>\le k</math> | |||
Recall that polynomials of degree <math>\le k</math> are in 1 to 1 correspondence with codewords. Hence, this step outputs the list of codewords. | |||
===Analysis=== | |||
====Interpolation step==== | |||
'''Lemma:''' | |||
Interpolation step implies <math>\begin{pmatrix}r + 1\\2\end{pmatrix}</math> constraints on the coefficients of <math>a_i</math> | |||
Let <math>Q(x,y) = \sum_{i = 0, j = 0} ^{i = m, j = p} a_{i,j} x^i y^j</math> | |||
where <math>\deg_x Q(x,y) = m</math> and <math>\deg_y Q(x,y) = p</math> | |||
Then, <math>Q(x + \alpha, y + \beta)</math> <math>=</math> <math>\sum_{u = 0, v = 0} ^{r}</math> <math>Q_{u,v}</math> <math>(\alpha, \beta)</math> <math>x^{u}</math> <math>y^{v}</math> ........................(Equation 1) | |||
where <math>Q_{u,v}</math> <math>(x, y)</math> <math>=</math> <math>\sum_{i = 0, j = 0} ^{i = m, j = p}</math> <math>\begin{pmatrix}i\\u\end{pmatrix}</math> <math>\begin{pmatrix}j\\v\end{pmatrix}</math> <math>a_{i,j}</math> <math>x^{i-u}</math> <math>y^{j-v}</math> | |||
'''Proof of Equation 1:''' | |||
: <math>Q(x + \alpha,y + \beta) = \sum_{i,j} a_{i,j} (x + \alpha)^i (y + \beta)^j</math> | |||
:<math>Q(x + \alpha,y + \beta)=\sum_{i,j} a_{i,j} \Bigg ( \sum_u \begin{pmatrix}i\\u\end{pmatrix} x^u \alpha^{i-u} \Bigg ) \Bigg ( \sum_v \begin{pmatrix}i\\v\end{pmatrix} y^v \beta^{j-v} \Bigg )</math>.................Using binomial expansion | |||
: <math>Q(x + \alpha,y + \beta) = \sum_{u,v} x^u y^v \Bigg ( \sum_{i,j} \begin{pmatrix}i\\u\end{pmatrix} \begin{pmatrix}i\\v \end{pmatrix} a_{i,j} \alpha^{i-u} \beta^{j-v} \Bigg )</math> | |||
: <math>Q(x + \alpha,y + \beta) = \sum_{u,v}</math> <math>Q_{u,v} (\alpha, \beta) x^u y^v </math> | |||
'''Proof of Lemma:''' | |||
The polynomial <math>Q(x, y)</math> has a zero of multiplicity <math>r</math> at <math>(\alpha,\beta)</math> if | |||
: <math>Q_{u,v}</math> <math>(\alpha,\beta)</math> <math>\equiv</math> <math>0</math> such that <math>0 \le u + v \le r - 1</math> | |||
: <math>u</math> can take <math>r - v</math> values as <math>0 \le v \le r-1</math>. Thus, the total number of constraints is | |||
<math>\sum_{v = 0}^{r-1} {r - v}</math> <math>=</math> <math>\begin{pmatrix}r + 1\\2\end{pmatrix}</math> | |||
Thus, <math>\begin{pmatrix}r + 1\\2\end{pmatrix}</math> number of selections can be made for <math>(u,v)</math> and each selection implies constraints on the coefficients of <math>a_i</math> | |||
===Factorization step=== | |||
'''Proposition:''' | |||
<math>Q(x, p(x)) \equiv 0</math> if <math>y - p(x)</math> is a factor of <math>Q(x,y)</math> | |||
'''Proof:''' | |||
Since, <math>y - p(x)</math> is a factor of <math>Q(x,y)</math>, <math>Q(x,y)</math> can be represented as | |||
<math>Q(x,y) = L(x,y) (y - p(x))</math> <math>+</math> <math>R(x)</math> | |||
where, <math>L(x,y)</math> is the quotient obtained when <math>Q(x,y)</math> is divided by <math>y - p(x)</math> | |||
<math>R(x)</math> is the remainder | |||
Now, if <math>y</math> is replaced by <math>p(x)</math>, | |||
<math>Q(x, p(x))</math> <math>\equiv</math> <math>0</math>, only if <math>R(x)</math> <math>\equiv</math> <math>0</math> | |||
'''Theorem:''' | |||
If <math>p(\alpha) = \beta</math>, then <math>(x - \alpha) ^r</math> is a factor of <math>Q(x,p(x))</math> | |||
'''Proof:''' | |||
<math>Q(x, y)</math> <math>=</math> <math>\sum_{u,v}</math> <math>Q_{u,v}</math> <math>(\alpha, \beta)</math> <math>(x - \alpha)^{u}</math> <math>(y - \beta)^{v}</math>...........................From Equation 2 | |||
<math>Q(x, p(x))</math> <math>=</math> <math>\sum_{u,v}</math> <math>Q_{u,v}</math> <math>(\alpha, \beta)</math> <math>(x - \alpha)^{u}</math> <math>(p(x) - \beta)^{v}</math> | |||
Given, <math>p(\alpha)</math> <math>=</math> <math>\beta</math> | |||
<math>(p(x) - \beta)</math> mod <math>(x - \alpha)</math> <math>=</math> <math>0</math> | |||
Hence, <math>(x - \alpha)^{u}</math> <math>(p(x) - \beta)^{v}</math> mod <math>(x - \alpha) ^{u+v}</math> <math>=</math> <math>0</math> | |||
Thus, <math>(x - \alpha) ^r</math> is a factor of <math>Q(x,p(x))</math>. | |||
As proved above, | |||
<math>t \cdot r > D</math> | |||
<math>t > \frac{D} {r}</math> | |||
<math>\frac{D(D+2)} {2(k-1)} > n\begin{pmatrix}r + 1\\2\end{pmatrix}</math> | |||
where LHS is the upper bound on the number of coefficients of <math>Q(x,y)</math> and RHS is the earlier proved Lemma. | |||
: <math>D = \sqrt{knr(r-1)} \, </math> | |||
Therefore, <math>t = \left \lceil{\sqrt{kn (1 - \frac{1}{r})}} \right \rceil</math> | |||
Substitute <math>r = 2kn</math>, | |||
: <math>t > \left \lceil {\sqrt{kn - \frac{1}{2}}} \right \rceil > \left \lceil {\sqrt{kn}} \right \rceil</math> | |||
Hence proved, that Guruswami–Sudan List Decoding Algorithm can list decode [http://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction Reed-Solomon(RS) codes] up to <math>1 - \sqrt{R}</math> errors. | |||
==References== | |||
*http://www.cse.buffalo.edu/~atri/courses/coding-theory/ | |||
* http://www.cs.cmu.edu/~venkatg/pubs/papers/listdecoding-NOW.pdf | |||
*http://www.mendeley.com/research/algebraic-softdecision-decoding-reedsolomon-codes/ | |||
* R. J. McEliece. The Guruswami-Sudan Decoding Algorithm for Reed-Solomon Codes. | |||
* M Sudan. Decoding of Reed Solomon codes beyond the error-correction bound. | |||
{{DEFAULTSORT:Guruswami-Sudan list decoding algorithm}} | |||
[[Category:Coding theory]] |
Latest revision as of 20:45, 13 May 2013
In coding theory, list decoding is an alternative to unique decoding of error-correcting codes for large error rates. Using unique decoder one can correct up to fraction of errors. But when error rate is greater than , unique decoder will not able to output the correct result. List decoding overcomes that issue. List decoding can correct more than fraction of errors.
There are many efficient algorithms that can perform List decoding. list decoding algorithm for Reed–Solomon (RS) codes by Sudan which can correct up to errors is give first. Later on more efficient Guruswami–Sudan list decoding algorithm, which can correct up to errors is discussed.
Here is the plot between rate R and distance for different algorithms.
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/81/Graph.jpg
Algorithm 1 (Sudan's list decoding algorithm)
Problem statement
Input : A field ; n distinct pairs of elements from ; and integers and .
Output: A list of all functions satisfying
is a polynomial in of degree at most d with | { } | -- (1)
To understand Sudan's Algorithm better, one may want to first know another algorithm which can be considered as the earlier version or the fundamental version of the algorithms for list decoding RS codes - the Berlekamp–Welch algorithm. Welch and Berlekamp initially came with an algorithm which can solve the problem in polynomial time with best threshold on to be . The mechanism of Sudan's Algorithm is almost the same as the algorithm of Berlekamp–Welch Algorithm, except in the step 1, one wants to compute a bivariate polynomial of bounded degree. Sudan's list decoding algorithm for Reed–Solomon code which is an improvement on Berlekamp and Welch algorithm, can solve the problem with .This bound is better than the unique decoding bound for .
Algorithm
Definition 1 (weighted degree)
For weights , the – weighted degree of monomial is . The – weighted degree of a polynomial is the maximum, over the monomials with non-zero coefficients, of the – weighted degree of the monomial.
E.g. : is a monomial in variables with a coefficient of 3.
Algorithm:
Inputs: ; {} /* Parameters l,m to be set later. */
Step 1: Find any function satisfying has (1,d)-weighted degree at most , (2) for every n, is not identically zero.
Step 2. Factor the polynomial Q into irreducible factors.
Step 3. Output all the polynomials such that is a factor of Q and for at least t values of n
Analysis
One have to prove that the above algorithm runs in polynomial time and outputs the correct result. That can be done by proving following set of claims.
Claim 1:
If a function satisfying (2) exists, then one can find it in polynomial time.
Proof:
Note that a bivariate polynomial of degree at most can be represented as follows: Let . Then one have to find the coefficients satisfying the constraints , for every . This is a linear set of equations in the unknowns {}. One can find a solution using Gaussian elimination in polynomial time.
Claim 2:
If then there exists a function satisfying (2)
Proof:
To ensure a non zero solution exists, the number of variables in should be greater than the number of constraints. Assume that maximum degree of in be m and maximum degree of in be l. Then the degree of will be atmost . One have to see that the linear system is homogenous. The setting satisfies all linear constraints. However this does not satisfy (2), since the solution can be identically zero. To ensure that non-zero solutions exists, One have to make sure that number of unknowns in the linear system to be , so that one can have a non zero . Since this value is greater than n, there are more variables than constraints and therefore a non-zero solution exists.
Claim 3:
If is a function satisfying (2) and is function satisfying (1) and , then divides
Proof:
Consider a function . This is a polynomial in , and argue that it has degree at most . Consider any monomial of . Since has -weighted degree at most , one can say that . Thus the term is a polynomial in of degree at most . Thus has degree at most
Next argue that is identically zero. Since is zero whenever , one can say that is zero for strictly greater than points. Thus has more zeroes than its degree and hence is identically zero, implying
Finding optimal values for and . Note that and For a given value , one can compute the smallest for which the second condition holds By interchanging the second condition one can get to be at most Substituting this value into first condition one can get to be at least Next minimize the above equation of unknown parameter . One can do that by taking derivative of the equation and equating that to zero By doing that one will get, Substituting back the value into and one will get
Algorithm 2 (Guruswami–Sudan list decoding algorithm)
Definition
Consider a Reed–Solomon code over the finite field with evaluation set and a positive integer , the Guruswami-Sudan List Decoder accepts a vector as input, and outputs a list of polynomials of degree which are in 1 to 1 correspondence with codewords.
The idea is to add more restrictions on the bi-variate polynomial which results in the increment of constraints along with the number of roots.
Multiplicity
A bi-variate polynomial has a zero of multiplicity at means that has no term of degree , where the x-degree of is defined as the maximum degree of any x term in
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/76/Fig1.jpg
Hence, has a zero of multiplicity 1 at (0,0).
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/76/Fig2.jpg
Hence, has a zero of multiplicity 1 at (0,0).
https://wiki.cse.buffalo.edu/cse545/sites/wiki.cse.buffalo.edu.cse545/files/76/Fig3.jpg
Hence, has a zero of multiplicity 2 at (0,0).
Similarly, if Then, has a zero of multiplicity 2 at .
General definition of multiplicity
has roots at if has a zero of multiplicity at when .
Algorithm
Let the transmitted codeword be , be the support set of the transmitted codeword & the received word be
The algorithm is as follows:
• Interpolation step
For a received vector , construct a non-zero bi-variate polynomial with weighted degree of at most such that has a zero of multiplicity at each of the points where
• Factorization step
Find all the factors of of the form and for at least values of
where & is a polynomial of degree
Recall that polynomials of degree are in 1 to 1 correspondence with codewords. Hence, this step outputs the list of codewords.
Analysis
Interpolation step
Lemma: Interpolation step implies constraints on the coefficients of
Then, ........................(Equation 1)
Proof of Equation 1:
Proof of Lemma:
The polynomial has a zero of multiplicity at if
Thus, number of selections can be made for and each selection implies constraints on the coefficients of
Factorization step
Proposition:
Proof:
Since, is a factor of , can be represented as
where, is the quotient obtained when is divided by is the remainder
Now, if is replaced by , , only if
Theorem:
Proof:
...........................From Equation 2
As proved above,
where LHS is the upper bound on the number of coefficients of and RHS is the earlier proved Lemma.
Hence proved, that Guruswami–Sudan List Decoding Algorithm can list decode Reed-Solomon(RS) codes up to errors.
References
- http://www.cse.buffalo.edu/~atri/courses/coding-theory/
- http://www.cs.cmu.edu/~venkatg/pubs/papers/listdecoding-NOW.pdf
- http://www.mendeley.com/research/algebraic-softdecision-decoding-reedsolomon-codes/
- R. J. McEliece. The Guruswami-Sudan Decoding Algorithm for Reed-Solomon Codes.
- M Sudan. Decoding of Reed Solomon codes beyond the error-correction bound.