Chapter 8
Introduction

We think of this package as being useful for at least 4 things:

1. Simplifying complicated expressions (Chapter 9).
2. Eliminating unknowns from collections of polynomial equations and sorting the result. Indeed the package is aimed at discovering algebraic theorems and appealing formulas semi-automatically (Chapters 16 and 15 with examples in Chapters 14 and 17).
3. Finding small bases for ideals in a noncommuting algebra (Chapter 21).
4. Producing Groebner Bases in noncommuting situations (Chapter 9

This package can be used with the NCAlgebra package to add powerful automatic methods for handling collections of equations in noncommuting variables.

Most commutative algebra packages contain commands based on Gröbner Bases and uses of Gröbner Basis. For example, in Mathematica, the Solve command puts collections of equations in a “canonical” form which, for simple collections, readily yields a solution. Likewise, the Mathematica Eliminate command tries to convert a collection of polynomial equations (e.g., {pj(x1,,xn) = 0 : 1 j k1}) in unknowns x1,x2,xn to a “triangular” form in unknowns, that is, a new collection of equations like

         q1(x1) = 0                                 (8.1)
      q2(x1,x2) = 0                                 (8.2)

      q3(x1,x2) = 0                                 (8.3)

   q4(x1,x2,x3) = 0                                 (8.4)

                ...                                 (8.5)
qk2(x1,...,xn) = 0.                                 (8.6)
Here the polynomials {qj : 1 j k2} generate the same ideal that the polynomials {pj : 1 j k1} generate. Therefore, the set of solutions to the collection of polynomial equations {pj = 0 : 1 j k1} equals the set of solutions to the collection of polynomial equations {qj = 0 : 1 j k2}. This canonical form greatly simplifies the task of solving collections of polynomial equations by facilitating backsolving for xj in terms of x1,,xj-1.

The user who is not acquainted at all with Gröbner Basis should still be able to read and use most of the material which is contained within this document.

In [FMora], c.f. [TMora], F. Mora described a version of the Gröbner basis algorithm which applies to noncommutative free algebras. We refer to this algorithm as Mora’s algorithm and as the Gröbner Basis Algorithm. This strategy also puts collections of equations into a “canonical form” which we believe has considerable possibilities in the noncommutative case.

           How to read this document

To learn how to install the program or use someone else’s installation, read Chapter ?? or Chapter ??.

The first thing you should do is read Part 1 to see examples of the basic commands.

If you are interested in simplification of expressions, you should read Chapter 9. Simplification is discussed in the papers [HW] and [HSW].

If you are interested in proving theorems and want to understand the ideas, you should read Chapter 16.

If you are interested in proving theorems and want to see examples, you should read Chapter 14. and Chapter 17 to see examples of the software in action.

If you want to understand the commands which were used to do the example in Chapter 14, then read Chapter 15.

If you want to compute Gröbner Bases, read Chapter 9.3 or read Chapter 20 without first reading anything else.

In addition,

(1) The computer commands given in the text are generally shown in verbatim (e.g., NCProcess1) or italics.
(2) The Mathematica variables are in bold face (e.g., MathVariable).
(3) Filenames are in bold face (e.g., output.txt).