Lattice reduction

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
File:Lattice-reduction.svg
Lattice reduction in two dimensions: the black vectors are the given basis for the lattice (represented by blue dots), the red vectors are the reduced basis

In mathematics, the goal of lattice basis reduction is given an integer lattice basis as input, to find a basis with short, nearly orthogonal vectors. This is realized using different algorithms, whose running time is usually at least exponential in the dimension of the lattice.

Nearly Orthogonal

One measure of nearly orthogonal is the orthogonality defect. This compares the product of the lengths of the basis vectors with the volume of the parallelepiped they define. For perfectly orthogonal basis vectors, these quantities would be the same.

Any particular basis of n vectors may be represented by a matrix B, whose columns are the basis vectors b_i, i = 1, \ldots, n. In the fully dimensional case where the number of basis vectors is equal to the dimension of the space they occupy, this matrix is square, and the volume of the fundamental parallelepiped is simply the absolute value of the determinant of this matrix \det(B). If the number of vectors is less than the dimension of the underlying space, then volume is \sqrt{\det(B^T B)}. For a given lattice \Lambda, this volume is the same (up to sign) for any basis, and hence is referred to as the determinant of the lattice \det(\Lambda) or lattice constant d(\Lambda).

The orthogonality defect is the product of the basis vector lengths divided by the parallelepiped volume;

\delta(B) = \frac{\Pi_{i=1}^n ||b_i||}{\sqrt{\det(B^T B)}} = \frac{\Pi_{i=1}^n ||b_i||}{d(\Lambda)}

From the geometric definition it may be appreciated that \delta(B) \ge 1 with equality if and only if the basis is orthogonal.

If the lattice reduction problem is defined as finding the basis with the smallest possible defect, then the problem is NP complete. However, there exist polynomial time algorithms to find a basis with defect \delta(B) \le c where c is some constant depending only on the number of basis vectors and the dimension of the underlying space (if different). This is a good enough solution in many practical applications.

In two dimensions

For a basis consisting of just two vectors, there is a simple and efficient method of reduction closely analogous to the Euclidean algorithm for the greatest common divisor of two integers. As with the Euclidean algorithm, the method is iterative; at each step the larger of the two vectors is reduced by adding or subtracting an integer multiple of the smaller vector.

Applications

Lattice reduction algorithms are used in a number of modern number theoretical applications, including in the discovery of a spigot algorithm for \pi. Although determining the shortest basis is possibly an NP-complete problem, algorithms such as the LLL algorithm [1] can find a short (not necessarily shortest) basis in polynomial time with guaranteed worst-case performance. LLL is widely used in the cryptanalysis of public key cryptosystems.

When used to find integer relations, a typical input to the algorithm consists of an augmented nxn identity matrix with the entries in the last column consisting of the n elements (multiplied by a large positive constant w to penalize vectors that do not sum to zero) between which the relation is sought.

The LLL algorithm for computing a nearly-orthogonal basis was used to show that integer programming in any fixed dimension can be done in polynomial time.[2]

Algorithms

The following algorithms reduce lattice bases. They can be compared in terms of runtime and approximation to an optimal solution, always relative to the dimension of the given lattice. If there are public implementations of these algorithms this should also be noted here.

Year Algorithm Name Implementation
1982 LLL Lenstra Lenstra Lovász NTL
1987 BKZ Block Korkine Zolotarev[3] NTL
2002 RSR Random Sampling Reduction
2002 PDR Primal Dual Reduction

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.