Athreya Chandramouli

I am an undergrad student interested, broadly, in theoretical computer science.

Visit my Profile Page to learn more about me. Here's an Introductory Post about this blog.

Topics in Coding Theory: List Decoding of RS Codes
25 May 2021 » coding_theory, tcs

In Spring 2021, I did a course called Topics in Coding Theory by Prof. Prasad Krishnan. I thought I’ll post some of my notes from the course here grouped by topic. Check out the previous posts on Berlekamp-Welch decoding.

A natural relaxation to the decoding problem is to remove the need to output a single candidate codeword. In the case of list decoding, we allow the decoder to output a list of candidate codewords. We consider the list decoding to be correct as long as one of the codewords in the list is the transmitted codeword.

Naturally, we are interested in lists of polynomial length. This could enable us to do a brute force search on these codewords for example. Thus we parameterize list decodability by a tuple \((\rho, L)\). \(\rho\) characterizes how far away a candidate can be from the received codeword. \(L\) is the list length. Johnson’s bound gives us a constraint on \(\rho\) for which the list size \(L\) is bounded by \(O(n^2)\).

Finally we explore three algorithms for List Decoding. Each algorithm build upon the previous one and gets closer and closer to acheiving Johnson’s bound.

In case you prefer LaTeX, I have the last lecture (with the third algorithm) scribed here.