In linear algebra, the Hermite normal form is an analogue of reduced echelon form for matrices over the integers Z. Just as reduced echelon form can be used to solve problems about the solution to the linear system Ax=b where x is in Rn, the Hermite normal form can solve problems about the solution to the linear system Ax=b where this time x is restricted to have integer coordinates only. Other applications of the Hermite normal form include integer programming, and cryptography, and abstract algebra.
Contents
Definition
Various authors may prefer to talk about Hermite Normal Form in either row-style or column-style. They are essentially the same up to transposition.
Row-style Hermite Normal Form
An m by n matrix A with integer entries has a (row) Hermite normal form (HNF) H if there is a square unimodular matrix U where H=U*A and H has the following restrictions:
- H is upper triangular, hij = 0 for i > j', and any rows of zeros are located below any other row.
- The leading coefficient (the first nonzero entry from the left, also called the pivot) of a nonzero row is always strictly to the right of the leading coefficient of the row above it; moreover, it is positive.
- The elements below pivots are zero and elements above pivots are nonnegative and strictly smaller than the pivot.
The third condition is not standard among authors, for example some sources force non-pivots to be nonpositive or place no sign restriction on them. However, these definitions are equivalent by using a different unimodular matrix U. A unimodular matrix is a square invertible integer matrix whose determinant is 1 or -1.
Column-style Hermite Normal Form
A m by n matrix A with integer entries has a (column) Hermite normal form (HNF) H if there is a square unimodular matrix U where H=A*U and H has the following restrictions:
- H is lower triangular, hij = 0 for i < j, and any columns of zeros are located on the right.
- The leading coefficient (the first nonzero entry from the top, also called the pivot) of a nonzero column is always strictly below of the leading coefficient of the column before it; moreover, it is positive.
- The elements to the right of pivots are zero and elements to the left of pivots are nonnegative and strictly smaller than the pivot.
Note that the row-style definition has a unimodular matrix U multiplying A on the left (meaning U is acting on the rows of A), while the column-style definition has the unimodular matrix action on the columns of A. The two definitions of Hermite normal forms are simply transposes of each other.
Existence and uniqueness of the Hermite normal form
For every m by n matrix A with integer entries has a unique m by n matrix H (HNF), such that H=UA for some square unimodular matrix U.
Examples
In the examples below, H is the Hermite normal form of the matrix A, and U is a unimodular matrix such that UA=H.
If A has only one row then either H = A or H = -A, depending on whether the single row of A has a positive or negative leading coefficient.
Algorithms
There are many algorithms for computing the Hermite normal form dating back to 1851. It was not until 1979 when an algorithm for computing the Hermite normal form that ran in strongly polynomial time was first developed; that is, the number of steps to compute the Hermite normal form is bounded above by a polynomial in the dimensions of the input matrix, and the space used by the algorithm (intermediate numbers) is bounded by a polynomial in the binary encoding size of the numbers in the input matrix. One class of algorithms is based on Gaussian elimination in that special elementary matrices are repeatedly used. The LLL algorithm can also be used to efficiently compute the Hermite normal form.
Lattice calculations
A typical lattice in Rn has the form
Integer solutions to linear systems
The linear system Ax=b has an integer solution x if and only if the system Hy=b has an integer solution y where Uy=x and H is the column-style Hermit normal form of H. Checking that Hy=b has an integer solution is easier than Ax=b because the matrix H is triangular.
Implementations
Many mathematical software packages can compute the Hermite normal form