L-notation is anasymptotic notation analogous tobig-O notation, denoted as for abound variabletending to infinity. Like big-O notation, it is usually used to roughly convey the rate of growth of afunction, such as thecomputational complexity of a particularalgorithm.
It is defined as
wherec is a positive constant, and is a constant.
L-notation is used mostly incomputational number theory, to express the complexity of algorithms for difficultnumber theory problems, e.g.sieves forinteger factorization and methods for solvingdiscrete logarithms. The benefit of this notation is that it simplifies the analysis of these algorithms. The expresses the dominant term, and the takes care of everything smaller.
When is 0, then
is apolylogarithmic function (apolynomial function of ln n);
When is 1 then
is a fullyexponential function of ln n (and thereby polynomial inn).
If is between 0 and 1, the function issubexponential of ln n (andsuperpolynomial).
Many general-purposeinteger factorization algorithms havesubexponential time complexities. The best is thegeneral number field sieve, which has an expected running time of
for. The best such algorithm prior to the number field sieve was thequadratic sieve which has running time
For theelliptic curvediscrete logarithm problem, the fastest general purpose algorithm is thebaby-step giant-step algorithm, which has a running time on the order of the square-root of the group ordern. InL-notation this would be
The existence of theAKS primality test, which runs inpolynomial time, means that the time complexity forprimality testing is known to be at most
wherec has been proven to be at most 6.[1]
L-notation has been defined in various forms throughout the literature. The first use of it came fromCarl Pomerance in his paper "Analysis and comparison of some integer factoring algorithms".[2] This form had only the parameter: the in the formula was for the algorithms he was analyzing. Pomerance had been using the letter (or lower case) in this and previous papers for formulae that involved many logarithms.
The formula above involving two parameters was introduced byArjen Lenstra andHendrik Lenstra in their article on "Algorithms in Number Theory".[3] It was introduced in their analysis of adiscrete logarithm algorithm ofCoppersmith. This is the most commonly used form in the literature today.
The Handbook of Applied Cryptography defines the L-notation with a big around the formula presented in this article.[4] This is not the standard definition. The big would suggest that the running time is an upper bound. However, for the integer factoring and discrete logarithm algorithms that L-notation is commonly used for, the running time is not an upper bound, so this definition is not preferred.