Lenstra–Lenstra–Lovász lattice basis reduction algorithm
The Lenstra–Lenstra–Lovász 'lattice basis reduction algorithm' is a polynomial time lattice reduction algorithm invented by Arjen Lenstra, Hendrik Lenstra and László Lovász in 1982. Given a basis with n-dimensional integer coordinates, for a lattice L with, the LLL algorithm calculates an LLL-reduced lattice basis in time where is the largest length of under the Euclidean norm, that is,.
The original applications were to give polynomial-time algorithms for factorizing polynomials with rational coefficients, for finding simultaneous rational approximations to real numbers, and for solving the integer linear programming problem in fixed dimensions.
LLL reduction
The precise definition of LLL-reduced is as follows: Given a basisdefine its Gram–Schmidt process orthogonal basis
and the Gram-Schmidt coefficients
for any.
Then the basis is LLL-reduced if there exists a parameter in such that the following holds:
- For. By definition, this property guarantees the length reduction of the ordered basis.
- For k = 2,3,..,n.
The LLL algorithm computes LLL-reduced bases. There is no known efficient algorithm to compute a basis in which the basis vectors are as short as possible for lattices of dimensions greater than 4. However, an LLL-reduced basis is nearly as short as possible, in the sense that there are absolute bounds such that the first basis vector is no more than times as long as a shortest vector in the lattice,
the second basis vector is likewise within of the second successive minimum, and so on.
Applications
An early successful application of the LLL algorithm was its use by Andrew Odlyzko and Herman te Riele in disproving the Mertens conjecture.The LLL algorithm has found numerous other applications in MIMO detection algorithms and cryptanalysis of public-key encryption schemes: knapsack cryptosystems, RSA with particular settings, NTRUEncrypt, and so forth. The algorithm can be used to find integer solutions to many problems.
In particular, the LLL algorithm forms a core of one of the integer relation algorithms. For example, if it is believed that r=1.618034 is a root to an unknown quadratic equation with integer coefficients, one may apply LLL reduction to the lattice in spanned by and. The first vector in the reduced basis will be an integer linear combination of these three, thus necessarily of the form ; but such a vector is "short" only if a, b, c are small and is even smaller. Thus the first three entries of this short vector are likely to be the coefficients of the integral quadratic polynomial which has r as a root. In this example the LLL algorithm finds the shortest vector to be and indeed has a root equal to the golden ratio, 1.6180339887....
Properties of LLL-reduced basis
Let be a -LLL-reduced basis of a lattice. From the definition of LLL-reduced basis, we can derive several other useful properties about.- The first vector in the basis cannot be much larger than the shortest non-zero vector:. In particular, for, this gives.
- The first vector in the basis is also bounded by the determinant of the lattice:. In particular, for, this gives.
- The product of the norms of the vectors in the basis cannot be much larger than the determinant of the lattice: let, then .
LLL algorithm pseudocode
The following description is based on, with the corrections from the errata.INPUT
a lattice basis b1, b2,..., bn in Zm
a parameter δ with 1/4 < δ < 1, most commonly δ = 3/4
PROCEDURE
B* <- GramSchmidt = ; and do not normalize
μi,''j <- InnerProduct/InnerProduct; using the most current values of bi'' and bj*
k <- 2;
while k <= n do
for j from k−1 to 1 do
if |μk,''j| > 1/2 then
bk'' <- bk − ⌊μk,''j⌉bj'';
Update B* and the related ''μi'',j
end if
end for
if InnerProduct > InnerProduct then
k'' <- k + 1;
else
Swap bk and bk−1;
Update B* and the related ''μi'',j
k <- max;
end if
end while
return 'B the LLL reduced basis of
OUTPUT
the reduced basis b'1, b2,..., bn in Zm
Examples
Example from Z3
Let a lattice basis, be given by the columns ofthen the reduced basis is
which is size-reduced, satisfies the Lovász condition, and is hence LLL-reduced, as described above. See W. Bosma. for details of the reduction process.
Example from Z''i''4
Likewise, for the basis over the complex integers given by the columns of the matrix below,then the columns of the matrix below give an LLL-reduced basis.
Implementations
LLL is implemented in- as the function
lll_reduction_int - as a stand-alone implementation
- FLINT as the function
fmpz_lll - GAP as the function
LLLReducedBasis - Macaulay2 as the function
LLLin the packageLLLBases - Magma as the functions
LLLandLLLGram - Maple as the function
IntegerRelations - Mathematica as the function
LatticeReduce - as the function
LLL - PARI/GP as the function
qflll - as the function
analysis.get_lll_reduced_lattice - SageMath as the method
LLLdriven by fpLLL and NTL - Isabelle/HOL in the 'archive of formal proofs' entry
LLL_Basis_Reduction. This code exports to efficiently executable Haskell.