The Coding Theory Workbook: a Companion to EE

Total Page:16

File Type:pdf, Size:1020Kb

The Coding Theory Workbook: a Companion to EE The Coding Theory Workbook A companion to EE 567 Version 1.1 Spring 2016 Matthew C. Valenti, Ph.D., P.E. West Virginia University Copyright 2012, Matthew C. Valenti Contents 1 Finite Fields 1 1.1 Sets (Ryan and Lin Section 2.1) . 1 1.2 Binary Operations (Ryan and Lin Section 2.1) . 2 1.3 Groups (Ryan and Lin Section 2.2) . 2 1.3.1 Examples . 3 1.3.2 Modulo-m Addition . 3 1.3.3 Modulo-m Multiplication . 4 1.3.4 Cyclic Groups . 4 1.3.5 Subgroups . 5 1.3.6 Cosets . 5 1.4 Fields (Ryan and Lin Section 2.3) . 6 1.4.1 Examples . 6 1.4.2 Subfields . 7 1.4.3 Galois Fields . 7 2 Vector Spaces 9 2.1 Definition of a Vector Space (Ryan and Lin Section 2.4) . 9 2.2 Linear Dependence . 10 2.3 Vector Subspaces . 11 2.4 Bases and Dimensionality . 11 2.4.1 Some Definitions . 11 2.4.2 Binary Linear Codes . 11 2.4.3 Finding a Basis . 12 2.5 Vector and Matrix Multiplication . 13 2.6 Hamming Space . 14 2.7 Subspaces of Vn ....................................... 14 2.7.1 Binary Linear Codes . 15 2.7.2 Generator Matrices . 15 2.8 Dual Spaces . 16 2.8.1 Dual Codes . 17 2.8.2 Parity-Check Matrices . 17 2.9 Systematic Codes . 18 iii 3 Binary Linear Codes 21 3.1 Binary Codes . 21 3.1.1 Hamming Space . 21 3.1.2 Binary Codes . 21 3.1.3 Linear Codes . 21 3.1.4 Nonlinear Codes . 21 3.1.5 Cosets of C ..................................... 21 3.1.6 Dual Code . 22 3.2 Binary Linear Codes . 22 3.2.1 Bases and Generators . 22 3.2.2 Dimension of a Code and its Dual . 22 3.2.3 Generator and Parity-Check Matrices . 22 3.2.4 Systematic Codes . 23 3.2.5 Syndromes . 24 3.2.6 Error Detection . 25 3.2.7 Error Correction . 26 3.3 Minimum Distance . 26 3.3.1 Definitions . 26 3.3.2 Error Correction and Detection Capability . 27 3.3.3 Minimum Distance of a Linear Code . 28 3.4 Finding the Minimum Distance from H . 29 4 The Many-Uses of H: Design, Encoding, and Decoding 31 4.1 Properties of Parity-Check Matrices . 31 4.1.1 Non-uniqueness of the H matrix: . 31 4.1.2 Finding the Minimum Distance from H . 32 4.2 Code Design . 32 4.2.1 Optimizing Codes of Particular n and dmin ................... 32 4.2.2 Designing Codes with dmin ≥ 3.......................... 32 4.2.3 Hamming Codes . 33 4.2.4 Shortening . 34 4.2.5 The Singleton Bound . 35 4.2.6 Codes of dmin =4 ................................. 35 4.3 Systematic Encoding Using the H Matrix . 36 4.4 Decoding Using H ..................................... 37 4.4.1 Standard Array Decoding . 37 4.4.2 Syndrome Table Decoding . 39 4.4.3 A Simple Decoder for the Hamming Code . 39 4.5 The Hamming Bound . 40 4.6 Perfect Codes . 40 4.7 Summary of Terms . 41 iv 5 Cyclic Codes 43 5.1 Cyclic Codes: Motivation . 43 5.2 Cyclic Codes: Definitions . 43 5.3 Polynomial Representation of Vectors . 44 5.4 Polynomial Arithmetic . 44 5.5 Factoring Polynomials . 47 5.6 Cyclic Shift of Polynomials . 48 5.7 Code, Generator, and Parity Polynomials . 49 6 BCH Codes 51 6.1 Review of Cyclic Codes . 51 6.2 Overview of BCH Codes . 52 6.3 Advanced Polynomial Theory . 52 6.3.1 Primitive Polynomials . 52 6.3.2 Constructing GF (2`)................................ 53 6.3.3 Minimal Polynomials . 55 6.3.4 Conjugates . 56 6.4 BCH Code Generators . 56 v Chapter 1 Finite Fields 1.1 Sets (Ryan and Lin Section 2.1) A set is a collection of elements. The convention is to use uppercase letters to denote sets, such as X or Y . The elements of a set may be represented by lowercase letters, which could be subscripted, e.g. x1 or y1.A finite set has a finite number of elements, for instance: X = fx1; x2g Y = fy1; y2; y3g are two finite sets. The cardinality of a finite set is the number of elements in the set. The cardinality of a set S is denoted jSj. For the above examples, determine jXj and jY j: jXj = jY j = A set X is said to be a subset of another set Y if all the elements in X are also in Y . For instance, if X = f4; 5g Y = f4; 5; 6g then X is a subset of Y and we would express this relationship as X ⊆ Y . X is said to be a proper subset of Y if jXj < jY j, and we indicate this by X ⊂ Y . Note that any set X is a subset of itself but not a proper subset of itself, therefore we can write X ⊆ X but we cannot write X ⊂ X. We are often interested in the following set operations: Union: X [ Y contains all elements in X or Y (or both). Intersection: X \ Y contains all elements in X and Y . Difference: Y n X contains the elements in Y that are not in X. Two sets are said to be disjoint if they have no elements in common, i.e. X \ Y = ?. 1 2 1.2 Binary Operations (Ryan and Lin Section 2.1) A binary operation is a rule that assigns a value to a pair of elements called operands. The word binary means that there are exactly two operands. While a variety of symbols may be used for the operator, we will use the notation `∗' to denote an arbitrary operator. Thus, we would write a binary operator as: a ∗ b = c Properties: A binary operator defined over a set S may or may not satisfy the following properties: Closure: for all a; b 2 S, a ∗ b = c 2 S. Associativity: for all a; b; c 2 S,(a ∗ b) ∗ c = a ∗ (b ∗ c). Commutativity: for all a; b 2 S, a ∗ b = b ∗ a. Examples: Some typical binary operations: 1. Arithmetic operations on scalars: Addition, multiplication, subtraction, division. 2. Exponentiation: ab. 3. Matrix addition; matrix multiplication. 1 4. Modulo-m addition a b; modulo-m and multiplication a b. 5. Logicals: AND, OR, XOR, NOR, NAND. 1.3 Groups (Ryan and Lin Section 2.2) A group is an algebraic system consisting of a set G on which a binary operation ∗ is defined with properties: 1. Closure: if a; b 2 G then a ∗ b = c 2 G. 2. Associativity: for all a; b; c 2 G,(a ∗ b) ∗ c = a ∗ (b ∗ c). 3. Identity: there exists a unique element e 2 G such that a ∗ e = e ∗ a = a. 4. Inverse: for all a 2 G there exists a unique element a0 2 G such that a ∗ a0 = a0 ∗ a = e. A group is said to be commutative or abelian if it satisfies the above properties as well as: 5. Commutativity: for all a; b 2 G, a ∗ b = b ∗ a. The order of a group is the number of elements it contains, i.e. jGj, which is the cardinality of set G. If the order is finite, then the group is said to be finite. 1 a b is defined as the remainder that results when (a+b) is divided by m. The result is contained in the set f0; :::; m − 1g. Similarly, a b is the remainder.
Recommended publications
  • Sequence Distance Embeddings
    Sequence Distance Embeddings by Graham Cormode Thesis Submitted to the University of Warwick for the degree of Doctor of Philosophy Computer Science January 2003 Contents List of Figures vi Acknowledgments viii Declarations ix Abstract xi Abbreviations xii Chapter 1 Starting 1 1.1 Sequence Distances . ....................................... 2 1.1.1 Metrics ............................................ 3 1.1.2 Editing Distances ...................................... 3 1.1.3 Embeddings . ....................................... 3 1.2 Sets and Vectors ........................................... 4 1.2.1 Set Difference and Set Union . .............................. 4 1.2.2 Symmetric Difference . .................................. 5 1.2.3 Intersection Size ...................................... 5 1.2.4 Vector Norms . ....................................... 5 1.3 Permutations ............................................ 6 1.3.1 Reversal Distance ...................................... 7 1.3.2 Transposition Distance . .................................. 7 1.3.3 Swap Distance ....................................... 8 1.3.4 Permutation Edit Distance . .............................. 8 1.3.5 Reversals, Indels, Transpositions, Edits (RITE) . .................... 9 1.4 Strings ................................................ 9 1.4.1 Hamming Distance . .................................. 10 1.4.2 Edit Distance . ....................................... 10 1.4.3 Block Edit Distances . .................................. 11 1.5 Sequence Distance Problems . .................................
    [Show full text]
  • Bilinear Forms Over a Finite Field, with Applications to Coding Theory
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector JOURNAL OF COMBINATORIAL THEORY, Series A 25, 226-241 (1978) Bilinear Forms over a Finite Field, with Applications to Coding Theory PH. DELSARTE MBLE Research Laboratory, Brussels, Belgium Communicated by J. H. can Lint Received December 7, 1976 Let 0 be the set of bilinear forms on a pair of finite-dimensional vector spaces over GF(q). If two bilinear forms are associated according to their q-distance (i.e., the rank of their difference), then Q becomes an association scheme. The characters of the adjacency algebra of Q, which yield the MacWilliams transform on q-distance enumerators, are expressed in terms of generalized Krawtchouk polynomials. The main emphasis is put on subsets of s2 and their q-distance structure. Certain q-ary codes are attached to a given XC 0; the Hamming distance enumerators of these codes depend only on the q-distance enumerator of X. Interesting examples are provided by Singleton systems XC 0, which are defined as t-designs of index 1 in a suitable semilattice (for a given integer t). The q-distance enumerator of a Singleton system is explicitly determined from the parameters. Finally, a construction of Singleton systems is given for all values of the parameters. 1. INTRODUCTION Classical coding theory may be introduced as follows. Let r denote a finite-dimensional vector space over the finite field K. The Hamming weight wt(f) of a vector f E r is the number of nonzero coordinates off in a fixed K-basis of lY Then (r, wt) is a normed space, called Hamming space; and a code simply is a nonempty subset of r endowed with the Hamming distance attached to wt.
    [Show full text]
  • Scribe Notes
    6.440 Essential Coding Theory Feb 19, 2008 Lecture 4 Lecturer: Madhu Sudan Scribe: Ning Xie Today we are going to discuss limitations of codes. More specifically, we will see rate upper bounds of codes, including Singleton bound, Hamming bound, Plotkin bound, Elias bound and Johnson bound. 1 Review of last lecture n k Let C Σ be an error correcting code. We say C is an (n, k, d)q code if Σ = q, C q and ∆(C) d, ⊆ | | | | ≥ ≥ where ∆(C) denotes the minimum distance of C. We write C as [n, k, d]q code if furthermore the code is a F k linear subspace over q (i.e., C is a linear code). Define the rate of code C as R := n and relative distance d as δ := n . Usually we fix q and study the asymptotic behaviors of R and δ as n . Recall last time we gave an existence result, namely the Gilbert-Varshamov(GV)→ ∞ bound constructed by greedy codes (Varshamov bound corresponds to greedy linear codes). For q = 2, GV bound gives codes with k n log2 Vol(n, d 2). Asymptotically this shows the existence of codes with R 1 H(δ), which is similar≥ to− Shannon’s result.− Today we are going to see some upper bound results, that≥ is,− code beyond certain bounds does not exist. 2 Singleton bound Theorem 1 (Singleton bound) For any code with any alphabet size q, R + δ 1. ≤ Proof Let C Σn be a code with C Σ k. The main idea is to project the code C on to the first k 1 ⊆ | | ≥ | | n k−1 − coordinates.
    [Show full text]
  • The Chromatic Number of the Square of the 8-Cube
    The chromatic number of the square of the 8-cube Janne I. Kokkala∗ and Patric R. J. Osterg˚ard¨ † Department of Communications and Networking Aalto University School of Electrical Engineering P.O. Box 13000, 00076 Aalto, Finland Abstract A cube-like graph is a Cayley graph for the elementary abelian group of order 2n. In studies of the chromatic number of cube-like k graphs, the kth power of the n-dimensional hypercube, Qn, is fre- quently considered. This coloring problem can be considered in the k framework of coding theory, as the graph Qn can be constructed with one vertex for each binary word of length n and edges between ver- tices exactly when the Hamming distance between the corresponding k words is at most k. Consequently, a proper coloring of Qn corresponds to a partition of the n-dimensional binary Hamming space into codes with minimum distance at least k + 1. The smallest open case, the 2 chromatic number of Q8, is here settled by finding a 13-coloring. Such 13-colorings with specific symmetries are further classified. 1 Introduction arXiv:1607.01605v1 [math.CO] 6 Jul 2016 A cube-like graph is a Cayley graph for the elementary abelian group of order 2n. One of the original motivations for studying cube-like graphs was the fact that they have only integer eigenvalues [5]. Cube-like graphs also form a generalization of the hypercube. ∗Supported by Aalto ELEC Doctoral School, Nokia Foundation, Emil Aaltonen Foun- dation, and by Academy of Finland Project 289002. †Supported in part by Academy of Finland Project 289002.
    [Show full text]
  • Constructing Covering Codes
    Research Collection Master Thesis Constructing Covering Codes Author(s): Filippini, Luca Teodoro Publication Date: 2016 Permanent Link: https://doi.org/10.3929/ethz-a-010633987 Rights / License: In Copyright - Non-Commercial Use Permitted This page was generated automatically upon download from the ETH Zurich Research Collection. For more information please consult the Terms of use. ETH Library Constructing Covering Codes Master Thesis Luca Teodoro Filippini Thursday 24th March, 2016 Advisors: Prof. Dr. E. Welzl, C. Annamalai Department of Theoretical Computer Science, ETH Z¨urich Abstract Given r, n N, the problem of constructing a set C 0,1 n such that every∈ element in 0,1 n has Hamming distance at⊆ most { }r from some element in C is called{ }the covering code construction problem. Con- structing a covering code of minimal size is such a hard task that even for r = 1, n = 10 we don’t know the exact size of the minimal code. Therefore, approximations are often studied and employed. Among the several applications that such a construction has, it plays a key role in one of the fastest 3-SAT algorithms known to date. The main contribution of this thesis is presenting a Las Vegas algorithm for constructing a covering code with linear radius, derived from the famous Monte Carlo algorithm of random codeword sampling. Our algorithm is faster than the deterministic algorithm presented in [5] by a cubic root factor of the polynomials involved. We furthermore study the problem of determining the covering radius of a code: it was already proven -complete for r = n/2, and we extend the proof to a wider range ofN radii.
    [Show full text]
  • About Chapter 13
    Copyright Cambridge University Press 2003. On-screen viewing permitted. Printing not permitted. http://www.cambridge.org/0521642981 You can buy this book for 30 pounds or $50. See http://www.inference.phy.cam.ac.uk/mackay/itila/ for links. About Chapter 13 In Chapters 8{11, we established Shannon's noisy-channel coding theorem for a general channel with any input and output alphabets. A great deal of attention in coding theory focuses on the special case of channels with binary inputs. Constraining ourselves to these channels simplifies matters, and leads us into an exceptionally rich world, which we will only taste in this book. One of the aims of this chapter is to point out a contrast between Shannon's aim of achieving reliable communication over a noisy channel and the apparent aim of many in the world of coding theory. Many coding theorists take as their fundamental problem the task of packing as many spheres as possible, with radius as large as possible, into an N-dimensional space, with no spheres overlapping. Prizes are awarded to people who find packings that squeeze in an extra few spheres. While this is a fascinating mathematical topic, we shall see that the aim of maximizing the distance between codewords in a code has only a tenuous relationship to Shannon's aim of reliable communication. 205 Copyright Cambridge University Press 2003. On-screen viewing permitted. Printing not permitted. http://www.cambridge.org/0521642981 You can buy this book for 30 pounds or $50. See http://www.inference.phy.cam.ac.uk/mackay/itila/ for links.
    [Show full text]
  • Lincode – Computer Classification of Linear Codes
    LINCODE – COMPUTER CLASSIFICATION OF LINEAR CODES SASCHA KURZ ABSTRACT. We present an algorithm for the classification of linear codes over finite fields, based on lattice point enumeration. We validate a correct implementation of our algorithm with known classification results from the literature, which we partially extend to larger ranges of parameters. Keywords: linear code, classification, enumeration, code equivalence, lattice point enumeration ACM: E.4, G.2, G.4 1. INTRODUCTION Linear codes play a central role in coding theory for several reasons. They permit a compact representation via generator matrices as well as efficient coding and decoding algorithms. Also multisets of points in the projective space PG(k − 1; Fq) of cardinality n correspond to linear [n; k]q codes, see e.g. [7]. So, let q be a prime power and Fq be the field of order q.A q-ary linear code of length n, dimension k, and minimum (Hamming) distance at least d is called an [n; k; d]q code. If we do not want to specify the minimum distance d, then we also speak of an [n; k]q code or of an [n; k; fw1; : : : ; wlg]q if the non-zero codewords have weights in fw1; : : : ; wkg. If for the binary case q = 2 all weights wi are divisible by 2, we also speak of an even code. We can also n look at those codes as k-dimensional subspaces of the Hamming space Fq . An [n; k]q code can be k×n k represented by a generator matrix G 2 Fq whose row space gives the set of all q codewords of the code.
    [Show full text]
  • An Index Structure for Fast Range Search in Hamming Space By
    An Index Structure for Fast Range Search in Hamming Space by Ernesto Rodriguez Reina A Thesis Submitted in Partial Fulfillment of the Requirements for the Degree of Master in Computer Science in Faculty of Science Computer Science University of Ontario Institute of Technology November 2014 c Ernesto Rodriguez Reina, 2014 Abstract An Index Structure for Fast Range Search in Hamming Space Ernesto Rodriguez Reina Master in Computer Science Faculty of Science University of Ontario Institute of Technology 2014 This thesis addresses the problem of indexing and querying very large databases of binary vectors. Such databases of binary vectors are a common occurrence in domains such as information retrieval and computer vision. We propose an indexing structure consisting of a compressed trie and a hash table for supporting range queries in Hamming space. The index structure, which can be updated incrementally, is able to solve the range queries for any radius. Out approach minimizes the number of memory access, and as result significantly outperforms state-of-the-art approaches. Keywords: range queries, r-neighbors queries, hamming distance. ii To my beloved wife for being my source of inspiration. iii Acknowledgements I would like to express my special appreciation and thanks to my advisors Professor Dr. Ken Pu and Professor Dr. Faisal Qureshi for the useful comments, remarks and engagement throughout the learning process of this master thesis. You both have been tremendous mentors for me. Your advices on both research as well as on my career have been priceless. I owe my deepest gratitude to my college Luis Zarrabeitia for introducing me to Professor Qureshi and Professor Pu, and also for all your help to came to study to the UOIT.
    [Show full text]
  • L Repository
    University of Warwick institutional repository: http://go.warwick.ac.uk/wrap A Thesis Submitted for the Degree of PhD at the University of Warwick http://go.warwick.ac.uk/wrap/61310 This thesis is made available online and is protected by original copyright. Please scroll down to view the document itself. Please refer to the repository record for this item for information to help you to cite it. Our policy information is available from the repository home page. Sequence Distance Embeddings by Graham Cormode Thesis Submitted to the University of Warwick for the degree of Doctor of Philosophy Computer Science January 2003 Contents List of Figures vi Acknowledgments viii Declarations ix Abstract xi Abbreviations xii Chapter 1 Starting 1 1.1 Sequence Distances . ....................................... 2 1.1.1 Metrics ............................................ 3 1.1.2 Editing Distances ...................................... 3 1.1.3 Embeddings . ....................................... 3 1.2 Sets and Vectors ........................................... 4 1.2.1 Set Difference and Set Union . .............................. 4 1.2.2 Symmetric Difference . .................................. 5 1.2.3 Intersection Size ...................................... 5 1.2.4 Vector Norms . ....................................... 5 1.3 Permutations ............................................ 6 1.3.1 Reversal Distance ...................................... 7 1.3.2 Transposition Distance . .................................. 7 1.3.3 Swap Distance ......................................
    [Show full text]
  • A Tutorial on Quantum Error Correction
    Proceedings of the International School of Physics “Enrico Fermi”, course CLXII, “Quantum Computers, Algorithms and Chaos”, G. Casati, D. L. Shepelyansky and P. Zoller, eds., pp. 1–32 (IOS Press, Amsterdam 2006). c Societ`aItaliana di Fisica. ° A Tutorial on Quantum Error Correction Andrew M. Steane Centre for Quantum Computation, Department of Physics, University of Oxford, Clarendon Laboratory, Parks Road, Oxford OX1 3PU, England. A Tutorial on Quantum Error Correction 2 1. Introduction Quantum error correction (QEC) comes from the marriage of quantum mechanics with the classical theory of error correcting codes. Error correction is a central concept in classical information theory, and quantum error correction is similarly foundational in quantum information theory. Both are concerned with the fundamental problem of communication, and/or information storage, in the presence of noise. The codewords which arise in QEC are also interesting objects in their own right, displaying rich forms of entanglement. This introduction will concentrate on the essential ideas of QEC and on the construction and use of quantum error correcting codes. The motivation is that although QEC is now quite a well established subject, it remains only vaguely understood by many people interested in quantum information and computing, or little studied by students learning it, because it appears to require mathematical knowledge they do not possess, and to be limited in application. Introductions tend to stay at the level of single- error-correcting codes, and single-qubit encoding codes, but this is a mistake because some of the essential properties only emerge when multiple errors and encoding of multiple qubits are considered.
    [Show full text]
  • Notes 5.1: Fourier Transform, Macwillams Identities, and LP Bound February 2010 Lecturer: Venkatesan Guruswami Scribe: Venkat Guruswami & Srivatsan Narayanan
    Introduction to Coding Theory CMU: Spring 2010 Notes 5.1: Fourier Transform, MacWillams identities, and LP bound February 2010 Lecturer: Venkatesan Guruswami Scribe: Venkat Guruswami & Srivatsan Narayanan We will discuss the last and most sophisticated of our (upper) bounds on rate of codes with certain relative distance, namely the first linear programming bound or the first JPL bound due to McEliece, Rodemich, Rumsey, and Welch, 1977 (henceforth, MRRW). This bound is the best known asymptotic upper bound on the rate of a binary code for a significant range of relative distances (which is roughly δ 2 (0:273; 1=2)). We will present a complete and self-contained proof of the this bound. A variant called the second JPL bound gives the best known upper bound for the remainder of the range, and we will mention this bound (without proof) at the end. The linear programming bound is so-called because it is based on Delsarte's linear programming approach which shows that the distance distribution of a binary code satisfies a family of linear constraints whose coefficients are the evaluations of a certain family of orthogonal polynomials (in this case, the Krawtchouk polynomials). The optimum (maximum) of this linear program gives an upper bound on A(n; d). MRRW constructed good feasible solutions to the dual of linear program using tools from the theory of orthogonal polynomials, and their value gave an upper bound on A(n; d) by weak duality. In these notes, we will use Fourier analysis of functions defined on the hypercube to derive a relationship between the weight distribution of a linear code and its dual, called the MacWilliams identifies.
    [Show full text]
  • Generalizations of the Macwilliams Extension Theorem Serhii Dyshko
    Generalizations of the MacWilliams Extension Theorem Serhii Dyshko To cite this version: Serhii Dyshko. Generalizations of the MacWilliams Extension Theorem. General Mathematics [math.GM]. Université de Toulon, 2016. English. NNT : 2016TOUL0018. tel-01565075 HAL Id: tel-01565075 https://tel.archives-ouvertes.fr/tel-01565075 Submitted on 19 Jul 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. ÉCOLE DOCTORALE Mer et Sciences (ED548) Institut de Mathématiques de Toulon THÈSE présentée par : Serhii DYSHKO soutenue le : 15 Décembre 2016 pour obtenir le grade de Docteur en Mathématiques Généralisations du Théorème d’Extension de MacWilliams THÈSE dirigée par : M. LANGEVIN Philippe Professeur, Université de Toulon JURY : M. AUBRY Yves Maître de conférence HDR, Université de Toulon M. GREFERATH Marcus Professeur, Aalto University M. LEROY André Professeur, Université d'Artois M. RANDRIAMBOLOLONA Hugues Maître de conférence, Telecom ParisTech M. WOOD Jay Professeur, Western Michigan University M. ZEMOR Gilles Professeur, Université de Bordeaux CONTENTS 1. Preliminaries :::::::::::::::::::::::::::::::: 1 1.1 Rings and modules . .1 1.2 Characters and the Fourier transform . .2 1.3 Hamming space and codes . .3 1.4 Categories of codes . .3 1.5 Additive codes . .4 2.
    [Show full text]