Coding Theory: a Gröbner Basis Approach

Total Page:16

File Type:pdf, Size:1020Kb

Coding Theory: a Gröbner Basis Approach Eindhoven University of Technology Department of Mathematics and Computer Science Coding Theory: A Gr¨obnerBasis Approach Master's Thesis by D.W.C. Kuijsters Supervised by Dr. G.R. Pellikaan February 6, 2017 Abstract One of the central topics in algorithmic coding theory is the design of efficient decoding algorithms. For a large subclass of cyclic codes, the so-called BCH codes, such efficient algorithms are known. The number of errors which a code is capable of correcting is entirely specified by its minimum distance. If we write d for the minimum distance, then a code d−1 should be able to correct up to b 2 c errors. The problem with the algorithms used for dBCH −1 decoding BCH codes is that they only correct up to b 2 c errors where dBCH is the BCH bound. Often the real minimum distance is much larger than this lower bound. It would be satisfactory to come up with algorithms for correcting up to the true minimum distance. It is possible to translate the problem of decoding into a parametrized system of equations. Solving this system is then equivalent to solving the decoding problem. Related to this is the problem of computing the (often unknown) minimum distance. It turns out that the same system of equations can be used to solve this problem. The polynomials constituting a system of equations determine an ideal. Every ideal has a finite set of \small" generators called a Gr¨obnerbasis. From this basis the solution set to the original system can easily be read off. In his 1965 dissertation Buchberger presented the first algorithm for computing such a basis. Unfortunately, it turns out that this is a computationally hard problem. Over the years, many variations improving on Buchberger's algorithm have been presented, including Faug`ere'sF5 algorithm and, more recently, Gao, Volny, and Wang's GVW algorithm. In general, useless reductions, i.e., reductions to zero, are the primary bottleneck in Gr¨obnerbasis computations. Therefore, both algorithms incorporate a number of criteria based on the notion of a signature to detect these useless reductions in advance. If the polynomials constituting a system form a semi-regular sequence, then no useless reductions are performed at all. Unfortunately, not all systems are given by a semi-regular sequence, hence much attention has been devoted to exploiting the algebraic structure of the system under consideration in order to speed up the algorithms. 1 Preface This thesis is the result of my graduation project in completion of the Master of Science degree. The graduation project was conducted under the supervision and guidance of Ruud Pellikaan within the Coding Theory and Cryptology group at Eindhoven University of Tech- nology. The thesis consists of two parts. The first part deals with Gr¨obnerbasis techniques. In particular, we will discuss the abstract framework and two particular algorithms in great detail. The second part deals with coding theory. In particular, we will discuss how the problem of decoding and finding the minimum distance can be translated into a system of polynomial equations. In turn, the techniques discussed in the first part of this thesis can be used to solve these problems. • Chapter 1 gives a very brief overview of the background expected from the reader. • Chapter 2 introduces the notion of a Gr¨obner basis. Moreover, we give a brief intro- duction to the language of algebraic geometry. With it, we formalize what it means to solve a system and give a number of invariants of the system, such as its dimension and degree. Finally, we present a number of algebraic tools which are useful for analyzing these invariants. • Chapter 3 extends the notion of a Gr¨obner basis by incorporating signatures. These are pieces of data associated with a polynomial encoding how that polynomial depends on a given basis. • Chapter 4 introduces the first example of a signature-based Gr¨obnerbasis algorithm, the Matrix-F5 algorithm. Using the F5-criterion, it is able to predict useless reductions to zero. Moreover, it shows how one can use fast linear algebra algorithms to speed up the reduction process. In addition to describing the original Matrix-F5 algoritm, we discuss a number of extensions that appear in the literature. Finally, we show for the first time how the so-called syzygy criterion can be incorporated into the algorithm. • Chapter 5 presents a relatively new signature-based Gr¨obnerbasis algorithm, the GVW algorithm. The novel idea in this algorithm is to look at a larger module than just the ideal itself. Instead of discarding a zero reduction, it stores the signature corresponding to the reduction and uses it to predict future zero reductions. • Chapter 6 discusses a small number of experiments related to the algorithms that we have implemented. 2 • Chapter 7 gives an introduction to linear codes, the second part of this thesis. Moreover, it discusses the problem of decoding. • Chapter 8 gives an overview of cyclic codes, which are linear codes with more structure, and presents a number of ways of translating the decoding problem for cyclic codes to a system of polynomial equations. • Chapter 9 extends the ideas of the previous chapter to a method of translating the decoding problem for general linear codes into a system of quadratic equations. Finally, we will look at two possible applications. • Chapter 10 describes the link between linear codes and a particular type of ideal which appears quite often in applied mathematics, a toric ideal. At the end of the chapter, we present a heuristic for the decoding problem. Unfortunately, this heuristic is not very practical. • Chapter 11 discusses a number of experiments related to the various ways of translating the decoding problem into a system of equations. • The appendix contains the implementation in Magma of several algorithms appearing throughout this thesis. I would like to express my gratitude to Wieb Bosma, Cees Jansen, and Hans Sterk for taking part in my assessment committee. A special word of thanks goes to my graduation supervi- sor Ruud Pellikaan for the many useful comments that I have received over the span of this project. Riethoven, the Netherlands. Dani¨elKuijsters February 6, 2017 3 Contents 1 Preliminaries7 I Gr¨obnerbasis theory9 2 Classical Gr¨obnerbasis theory 10 2.1 Order theory.................................... 10 2.2 Multivariate division................................ 11 2.3 The notion of a Gr¨obnerbasis........................... 14 2.4 Buchberger's algorithm............................... 15 2.5 The algebra of solving equations......................... 17 2.5.1 The finite field case............................ 22 2.6 Some projective geometry............................. 24 2.7 Some algebraic tools................................ 26 2.7.1 Projective Hilbert series.......................... 26 2.7.2 Affine Hilbert Series............................ 29 2.7.3 Regular sequences............................. 30 3 Signature-based Gr¨obnerbasis theory 33 3.1 The module perspective.............................. 33 3.1.1 Relations between the generators: syzygies............... 33 3.1.2 Monomial orders and Gr¨obnerbases for modules............ 34 3.2 Buchberger's algorithm using signatures..................... 35 4 Linearization and the Matrix-F5 algorithm 39 4.1 The homogeneous case............................... 39 4.2 Using known linear dependencies......................... 44 4.3 Predicting zero reductions............................. 47 4.4 A modification: the syzygy criterion....................... 50 4.5 Regular sequences in the context of Matrix-F5................. 54 4.6 Semi-regular sequences: a generalization of regular sequences......... 55 4.7 The inhomogeneous case.............................. 56 4.7.1 Homogenization.............................. 56 4.7.2 Sugar degree................................ 56 4.7.3 Degree fall................................. 57 4.8 Complexity..................................... 58 4.9 Choosing D ..................................... 59 4 4.10 An improvement for sequences over F2 ...................... 59 4.11 An improvement for sequences of bilinear forms................. 61 4.11.1 A further decomposition.......................... 66 5 State of the art: the GVW algorithm 67 5.1 Theoretical foundations.............................. 67 5.2 The algorithm.................................... 72 5.3 Complexity..................................... 76 6 Experimental results 77 II Algebraic coding theory 79 7 Basic concepts of linear codes 80 7.1 Introduction..................................... 80 7.2 The Golay codes.................................. 83 7.3 Syndrome decoding................................. 84 8 Cyclic codes 86 8.1 Introduction..................................... 86 8.2 BCH codes..................................... 87 8.3 Decoding beyond the BCH error-correcting capability............. 87 8.3.1 Cooper's method.............................. 89 8.3.2 On- and offline decoding.......................... 91 8.3.3 Newton identities based method..................... 94 9 Decoding general linear codes 99 9.1 The method of unknown syndromes....................... 99 9.2 Complexity..................................... 106 9.3 Applications..................................... 106 9.3.1 The McEliece cryptosystem........................ 106 9.3.2 Finding the minimum distance...................... 107 10 Linear codes as binomial ideals 108 10.1 Toric ideals..................................... 108 10.2 The code ideal................................... 109 10.3 A heuristic
Recommended publications
  • Homogeneous Polynomial Solutions to Constant Coefficient Pde’S
    HOMOGENEOUS POLYNOMIAL SOLUTIONS TO CONSTANT COEFFICIENT PDE'S Bruce Reznick University of Illinois 1409 W. Green St. Urbana, IL 61801 [email protected] October 21, 1994 1. Introduction Suppose p is a homogeneous polynomial over a field K. Let p(D) be the differen- @ tial operator defined by replacing each occurence of xj in p by , defined formally @xj 2 in case K is not a subset of C. (The classical example is p(x1; · · · ; xn) = j xj , for which p(D) is the Laplacian r2.) In this paper we solve the equation p(DP)q = 0 for homogeneous polynomials q over K, under the restriction that K be an algebraically closed field of characteristic 0. (This restriction is mild, considering that the \natu- ral" field is C.) Our Main Theorem and its proof are the natural extensions of work by Sylvester, Clifford, Rosanes, Gundelfinger, Cartan, Maass and Helgason. The novelties in the presentation are the generalization of the base field and the removal of some restrictions on p. The proofs require only undergraduate mathematics and Hilbert's Nullstellensatz. A fringe benefit of the proof of the Main Theorem is an Expansion Theorem for homogeneous polynomials over R and C. This theorem is 2 2 2 trivial for linear forms, goes back at least to Gauss for p = x1 + x2 + x3, and has also been studied by Maass and Helgason. Main Theorem (See Theorem 4.1). Let K be an algebraically closed field of mj characteristic 0. Suppose p 2 K[x1; · · · ; xn] is homogeneous and p = j pj for distinct non-constant irreducible factors pj 2 K[x1; · · · ; xn].
    [Show full text]
  • Algebra Polynomial(Lecture-I)
    Algebra Polynomial(Lecture-I) Dr. Amal Kumar Adak Department of Mathematics, G.D.College, Begusarai March 27, 2020 Algebra Dr. Amal Kumar Adak Definition Function: Any mathematical expression involving a quantity (say x) which can take different values, is called a function of that quantity. The quantity (x) is called the variable and the function of it is denoted by f (x) ; F (x) etc. Example:f (x) = x2 + 5x + 6 + x6 + x3 + 4x5. Algebra Dr. Amal Kumar Adak Polynomial Definition Polynomial: A polynomial in x over a real or complex field is an expression of the form n n−1 n−3 p (x) = a0x + a1x + a2x + ::: + an,where a0; a1;a2; :::; an are constants (free from x) may be real or complex and n is a positive integer. Example: (i)5x4 + 4x3 + 6x + 1,is a polynomial where a0 = 5; a1 = 4; a2 = 0; a3 = 6; a4 = 1a0 = 4; a1 = 4; 2 1 3 3 2 1 (ii)x + x + x + 2 is not a polynomial, since 3 ; 3 are not integers. (iii)x4 + x3 cos (x) + x2 + x + 1 is not a polynomial for the presence of the term cos (x) Algebra Dr. Amal Kumar Adak Definition Zero Polynomial: A polynomial in which all the coefficients a0; a1; a2; :::; an are zero is called a zero polynomial. Definition Complete and Incomplete polynomials: A polynomial with non-zero coefficients is called a complete polynomial. Other-wise it is incomplete. Example of a complete polynomial:x5 + 2x4 + 3x3 + 7x2 + 9x + 1. Example of an incomplete polynomial: x5 + 3x3 + 7x2 + 9x + 1.
    [Show full text]
  • Using Elimination to Describe Maxwell Curves Lucas P
    Louisiana State University LSU Digital Commons LSU Master's Theses Graduate School 2006 Using elimination to describe Maxwell curves Lucas P. Beverlin Louisiana State University and Agricultural and Mechanical College Follow this and additional works at: https://digitalcommons.lsu.edu/gradschool_theses Part of the Applied Mathematics Commons Recommended Citation Beverlin, Lucas P., "Using elimination to describe Maxwell curves" (2006). LSU Master's Theses. 2879. https://digitalcommons.lsu.edu/gradschool_theses/2879 This Thesis is brought to you for free and open access by the Graduate School at LSU Digital Commons. It has been accepted for inclusion in LSU Master's Theses by an authorized graduate school editor of LSU Digital Commons. For more information, please contact [email protected]. USING ELIMINATION TO DESCRIBE MAXWELL CURVES A Thesis Submitted to the Graduate Faculty of the Louisiana State University and Agricultural and Mechanical College in partial ful¯llment of the requirements for the degree of Master of Science in The Department of Mathematics by Lucas Paul Beverlin B.S., Rose-Hulman Institute of Technology, 2002 August 2006 Acknowledgments This dissertation would not be possible without several contributions. I would like to thank my thesis advisor Dr. James Madden for his many suggestions and his patience. I would also like to thank my other committee members Dr. Robert Perlis and Dr. Stephen Shipman for their help. I would like to thank my committee in the Experimental Statistics department for their understanding while I completed this project. And ¯nally I would like to thank my family for giving me the chance to achieve a higher education.
    [Show full text]
  • Effective Noether Irreducibility Forms and Applications*
    Appears in Journal of Computer and System Sciences, 50/2 pp. 274{295 (1995). Effective Noether Irreducibility Forms and Applications* Erich Kaltofen Department of Computer Science, Rensselaer Polytechnic Institute Troy, New York 12180-3590; Inter-Net: [email protected] Abstract. Using recent absolute irreducibility testing algorithms, we derive new irreducibility forms. These are integer polynomials in variables which are the generic coefficients of a multivariate polynomial of a given degree. A (multivariate) polynomial over a specific field is said to be absolutely irreducible if it is irreducible over the algebraic closure of its coefficient field. A specific polynomial of a certain degree is absolutely irreducible, if and only if all the corresponding irreducibility forms vanish when evaluated at the coefficients of the specific polynomial. Our forms have much smaller degrees and coefficients than the forms derived originally by Emmy Noether. We can also apply our estimates to derive more effective versions of irreducibility theorems by Ostrowski and Deuring, and of the Hilbert irreducibility theorem. We also give an effective estimate on the diameter of the neighborhood of an absolutely irreducible polynomial with respect to the coefficient space in which absolute irreducibility is preserved. Furthermore, we can apply the effective estimates to derive several factorization results in parallel computational complexity theory: we show how to compute arbitrary high precision approximations of the complex factors of a multivariate integral polynomial, and how to count the number of absolutely irreducible factors of a multivariate polynomial with coefficients in a rational function field, both in the complexity class . The factorization results also extend to the case where the coefficient field is a function field.
    [Show full text]
  • Quadratic Form - Wikipedia, the Free Encyclopedia
    Quadratic form - Wikipedia, the free encyclopedia http://en.wikipedia.org/wiki/Quadratic_form Quadratic form From Wikipedia, the free encyclopedia In mathematics, a quadratic form is a homogeneous polynomial of degree two in a number of variables. For example, is a quadratic form in the variables x and y. Quadratic forms occupy a central place in various branches of mathematics, including number theory, linear algebra, group theory (orthogonal group), differential geometry (Riemannian metric), differential topology (intersection forms of four-manifolds), and Lie theory (the Killing form). Contents 1 Introduction 2 History 3 Real quadratic forms 4 Definitions 4.1 Quadratic spaces 4.2 Further definitions 5 Equivalence of forms 6 Geometric meaning 7 Integral quadratic forms 7.1 Historical use 7.2 Universal quadratic forms 8 See also 9 Notes 10 References 11 External links Introduction Quadratic forms are homogeneous quadratic polynomials in n variables. In the cases of one, two, and three variables they are called unary, binary, and ternary and have the following explicit form: where a,…,f are the coefficients.[1] Note that quadratic functions, such as ax2 + bx + c in the one variable case, are not quadratic forms, as they are typically not homogeneous (unless b and c are both 0). The theory of quadratic forms and methods used in their study depend in a large measure on the nature of the 1 of 8 27/03/2013 12:41 Quadratic form - Wikipedia, the free encyclopedia http://en.wikipedia.org/wiki/Quadratic_form coefficients, which may be real or complex numbers, rational numbers, or integers. In linear algebra, analytic geometry, and in the majority of applications of quadratic forms, the coefficients are real or complex numbers.
    [Show full text]
  • Solving Quadratic Equations in Many Variables
    Snapshots of modern mathematics № 12/2017 from Oberwolfach Solving quadratic equations in many variables Jean-Pierre Tignol 1 Fields are number systems in which every linear equa- tion has a solution, such as the set of all rational numbers Q or the set of all real numbers R. All fields have the same properties in relation with systems of linear equations, but quadratic equations behave dif- ferently from field to field. Is there a field in which every quadratic equation in five variables has a solu- tion, but some quadratic equation in four variables has no solution? The answer is in this snapshot. 1 Fields No problem is more fundamental to algebra than solving polynomial equations. Indeed, the name algebra itself derives from a ninth century treatise [1] where the author explains how to solve quadratic equations like x2 +10x = 39. It was clear from the start that some equations with integral coefficients like x2 = 2 may not have any integral solution. Even allowing positive and negative numbers with infinite decimal expansion as solutions (these numbers are called real numbers), one cannot solve x2 = −1 because the square of every real number is positive or zero. However, it is only a small step from the real numbers to the solution 1 Jean-Pierre Tignol acknowledges support from the Fonds de la Recherche Scientifique (FNRS) under grant n◦ J.0014.15. He is grateful to Karim Johannes Becher, Andrew Dolphin, and David Leep for comments on a preliminary version of this text. 1 of every polynomial equation: one gives the solution of the equation x2 = −1 (or x2 + 1 = 0) the name i and defines complex numbers as expressions of the form a + bi, where a and b are real numbers.
    [Show full text]
  • Degree Bounds for Gröbner Bases in Algebras of Solvable Type
    Degree Bounds for Gröbner Bases in Algebras of Solvable Type Matthias Aschenbrenner University of California, Los Angeles (joint with Anton Leykin) Algebras of Solvable Type • . introduced by Kandri-Rody & Weispfenning (1990); • . form a class of associative algebras over fields which generalize • commutative polynomial rings; • Weyl algebras; • universal enveloping algebras of f. d. Lie algebras; • . are sometimes also called polynomial rings of solvable type or PBW-algebras (Poincaré-Birkhoff-Witt). Weyl Algebras Systems of linear PDE with polynomial coefficients can be represented by left ideals in the Weyl algebra An(C) = Chx1,..., xn, ∂1, . , ∂ni, the C-algebra generated by the xi , ∂j subject to the relations: xj xi = xi xj , ∂j ∂i = ∂i ∂j and ( xi ∂j if i 6= j ∂j xi = xi ∂j + 1 if i = j. The Weyl algebra acts naturally on C[x1,..., xn]: ∂f (∂i , f ) 7→ , (xi , f ) 7→ xi f . ∂xi Universal Enveloping Algebras Let g be a Lie algebra over a field K . The universal enveloping algebra U(g) of g is the K -algebra obtained by imposing the relations g ⊗ h − h ⊗ g = [g, h]g on the tensor algebra of the K -linear space g. Poincaré-Birkhoff-Witt Theorem: the canonical morphism g → U(g) is injective, and g generates the K -algebra U(g). If g corresponds to a Lie group G, then U(g) can be identified with the algebra of left-invariant differential operators on G. Affine Algebras and Monomials N Let R be a K -algebra, and x = (x1,..., xN ) ∈ R . Write α α1 αN N x := x1 ··· xN for a multi-index α = (α1, .
    [Show full text]
  • Hyperbolicity and Stable Polynomials in Combinatorics and Probability
    Hyperbolicity and stable polynomials in combinatorics and probability Robin Pemantle 1,2 ABSTRACT: These lectures survey the theory of hyperbolic and stable polynomials, from their origins in the theory of linear PDE’s to their present uses in combinatorics and probability theory. Keywords: amoeba, cone, dual cone, G˚arding-hyperbolicity, generating function, half-plane prop- erty, homogeneous polynomial, Laguerre–P´olya class, multiplier sequence, multi-affine, multivariate stability, negative dependence, negative association, Newton’s inequalities, Rayleigh property, real roots, semi-continuity, stochastic covering, stochastic domination, total positivity. Subject classification: Primary: 26C10, 62H20; secondary: 30C15, 05A15. 1Supported in part by National Science Foundation grant # DMS 0905937 2University of Pennsylvania, Department of Mathematics, 209 S. 33rd Street, Philadelphia, PA 19104 USA, pe- [email protected] Contents 1 Introduction 1 2 Origins, definitions and properties 4 2.1 Relation to the propagation of wave-like equations . 4 2.2 Homogeneous hyperbolic polynomials . 7 2.3 Cones of hyperbolicity for homogeneous polynomials . 10 3 Semi-continuity and Morse deformations 14 3.1 Localization . 14 3.2 Amoeba boundaries . 15 3.3 Morse deformations . 17 3.4 Asymptotics of Taylor coefficients . 19 4 Stability theory in one variable 23 4.1 Stability over general regions . 23 4.2 Real roots and Newton’s inequalities . 26 4.3 The Laguerre–P´olya class . 31 5 Multivariate stability 34 5.1 Equivalences . 36 5.2 Operations preserving stability . 38 5.3 More closure properties . 41 6 Negative dependence 41 6.1 A brief history of negative dependence . 41 6.2 Search for a theory . 43 i 6.3 The grail is found: application of stability theory to joint laws of binary random variables .
    [Show full text]
  • Resultant and Discriminant of Polynomials
    RESULTANT AND DISCRIMINANT OF POLYNOMIALS SVANTE JANSON Abstract. This is a collection of classical results about resultants and discriminants for polynomials, compiled mainly for my own use. All results are well-known 19th century mathematics, but I have not inves- tigated the history, and no references are given. 1. Resultant n m Definition 1.1. Let f(x) = anx + ··· + a0 and g(x) = bmx + ··· + b0 be two polynomials of degrees (at most) n and m, respectively, with coefficients in an arbitrary field F . Their resultant R(f; g) = Rn;m(f; g) is the element of F given by the determinant of the (m + n) × (m + n) Sylvester matrix Syl(f; g) = Syln;m(f; g) given by 0an an−1 an−2 ::: 0 0 0 1 B 0 an an−1 ::: 0 0 0 C B . C B . C B . C B C B 0 0 0 : : : a1 a0 0 C B C B 0 0 0 : : : a2 a1 a0C B C (1.1) Bbm bm−1 bm−2 ::: 0 0 0 C B C B 0 bm bm−1 ::: 0 0 0 C B . C B . C B C @ 0 0 0 : : : b1 b0 0 A 0 0 0 : : : b2 b1 b0 where the m first rows contain the coefficients an; an−1; : : : ; a0 of f shifted 0; 1; : : : ; m − 1 steps and padded with zeros, and the n last rows contain the coefficients bm; bm−1; : : : ; b0 of g shifted 0; 1; : : : ; n−1 steps and padded with zeros. In other words, the entry at (i; j) equals an+i−j if 1 ≤ i ≤ m and bi−j if m + 1 ≤ i ≤ m + n, with ai = 0 if i > n or i < 0 and bi = 0 if i > m or i < 0.
    [Show full text]
  • Algebraic Combinatorics and Resultant Methods for Polynomial System Solving Anna Karasoulou
    Algebraic combinatorics and resultant methods for polynomial system solving Anna Karasoulou To cite this version: Anna Karasoulou. Algebraic combinatorics and resultant methods for polynomial system solving. Computer Science [cs]. National and Kapodistrian University of Athens, Greece, 2017. English. tel-01671507 HAL Id: tel-01671507 https://hal.inria.fr/tel-01671507 Submitted on 5 Jan 2018 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. ΕΘΝΙΚΟ ΚΑΙ ΚΑΠΟΔΙΣΤΡΙΑΚΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΑΘΗΝΩΝ ΣΧΟΛΗ ΘΕΤΙΚΩΝ ΕΠΙΣΤΗΜΩΝ ΤΜΗΜΑ ΠΛΗΡΟΦΟΡΙΚΗΣ ΚΑΙ ΤΗΛΕΠΙΚΟΙΝΩΝΙΩΝ ΠΡΟΓΡΑΜΜΑ ΜΕΤΑΠΤΥΧΙΑΚΩΝ ΣΠΟΥΔΩΝ ΔΙΔΑΚΤΟΡΙΚΗ ΔΙΑΤΡΙΒΗ Μελέτη και επίλυση πολυωνυμικών συστημάτων με χρήση αλγεβρικών και συνδυαστικών μεθόδων Άννα Ν. Καρασούλου ΑΘΗΝΑ Μάιος 2017 NATIONAL AND KAPODISTRIAN UNIVERSITY OF ATHENS SCHOOL OF SCIENCES DEPARTMENT OF INFORMATICS AND TELECOMMUNICATIONS PROGRAM OF POSTGRADUATE STUDIES PhD THESIS Algebraic combinatorics and resultant methods for polynomial system solving Anna N. Karasoulou ATHENS May 2017 ΔΙΔΑΚΤΟΡΙΚΗ ΔΙΑΤΡΙΒΗ Μελέτη και επίλυση πολυωνυμικών συστημάτων με
    [Show full text]
  • Etienne Bézout on Elimination Theory Erwan Penchevre
    Etienne Bézout on elimination theory Erwan Penchevre To cite this version: Erwan Penchevre. Etienne Bézout on elimination theory. 2017. hal-01654205 HAL Id: hal-01654205 https://hal.archives-ouvertes.fr/hal-01654205 Preprint submitted on 3 Dec 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. Etienne Bézout on elimination theory ∗ Erwan Penchèvre Bézout’s name is attached to his famous theorem. Bézout’s Theorem states that the degree of the eliminand of a system a n algebraic equations in n unknowns, when each of the equations is generic of its degree, is the product of the degrees of the equations. The eliminand is, in the terms of XIXth century algebra1, an equation of smallest degree resulting from the elimination of (n − 1) unknowns. Bézout demonstrates his theorem in 1779 in a treatise entitled Théorie générale des équations algébriques. In this text, he does not only demonstrate the theorem for n > 2 for generic equations, but he also builds a classification of equations that allows a better bound on the degree of the eliminand when the equations are not generic. This part of his work is difficult: it appears incomplete and has been seldom studied.
    [Show full text]
  • Spherical Harmonics and Homogeneous Har- Monic Polynomials
    SPHERICAL HARMONICS AND HOMOGENEOUS HAR- MONIC POLYNOMIALS 1. The spherical Laplacean. Denote by S ½ R3 the unit sphere. For a function f(!) de¯ned on S, let f~ denote its extension to an open neighborhood N of S, constant along normals to S (i.e., constant along rays from the origin). We say f 2 C2(S) if f~ is a C2 function in N , and for such functions de¯ne a di®erential operator ¢S by: ¢Sf := ¢f;~ where ¢ on the right-hand side is the usual Laplace operator in R3. With a little work (omitted here) one may derive the expression for ¢ in polar coordinates (r; !) in R2 (r > 0;! 2 S): 2 1 ¢u = u + u + ¢ u: rr r r r2 S (Here ¢Su(r; !) is the operator ¢S acting on the function u(r; :) in S, for each ¯xed r.) A homogeneous polynomial of degree n ¸ 0 in three variables (x; y; z) is a linear combination of `monomials of degree n': d1 d2 d3 x y z ; di ¸ 0; d1 + d2 + d3 = n: This de¯nes a vector space (over R) denoted Pn. A simple combinatorial argument (involving balls and separators, as most of them do), seen in class, yields the dimension: 1 d := dim(P ) = (n + 1)(n + 2): n n 2 Writing a polynomial p 2 Pn in polar coordinates, we necessarily have: n p(r; !) = r f(!); f = pjS; where f is the restriction of p to S. This is an injective linear map p 7! f, but the functions on S so obtained are rather special (a dn-dimensional subspace of the in¯nite-dimensional space C(S) of continuous functions-let's call it Pn(S)) We are interested in the subspace Hn ½ Pn of homogeneous harmonic polynomials of degree n (¢p = 0).
    [Show full text]