Top Qs
Timeline
Chat
Perspective
Big O notation
Describes limiting behavior of a function From Wikipedia, the free encyclopedia
Remove ads
Big O notation is a mathematical notation that describes the approximate size of a function on a domain. Big O is a member of a family of notations invented by German mathematicians Paul Bachmann,[1] Edmund Landau,[2] and others, collectively called Bachmann–Landau notation or asymptotic notation. The letter O was chosen by Bachmann to stand for Ordnung, meaning the order of approximation.

In computer science, big O notation is used to classify algorithms according to how their run time or space requirements[a] grow as the input size grows.[3] In analytic number theory, big O notation is often used to express a bound on the difference between an arithmetical function and a better understood approximation; one well-known example is the remainder term in the prime number theorem. Big O notation is also used in many other fields to provide similar estimates.
Often, big O notation characterizes functions according to their growth rates as the variable becomes large: different functions with the same asymptotic growth rate may be represented using the same O notation. The letter O is used because the growth rate of a function is also referred to as the order of the function. A description of a function in terms of big O notation only provides an upper bound on the growth rate of the function.
Associated with big O notation are several related notations, using the symbols , , , and to describe other kinds of bounds on asymptotic growth rates.[3]
Remove ads
Applications
- In mathematics, it is commonly used in analysis to describe how closely a finite series approximates a given function, especially in the case of a truncated Taylor series or asymptotic expansion, and for approximating complicated functions by simpler ones.
- In number theory and combinatorics it is used to describe the approximate growth of various functions which count objects, such as prime numbers and graphs.
- In computer science, it is useful in the analysis of algorithms.[3]
In most applications, the function appearing within the is typically chosen to be as simple as possible, omitting constant factors and lower order terms.
Remove ads
Formal definition
Let the function to be estimated, be a real or complex valued function defined on a domain , and let the comparison function, be a non-negative real valued function defined on the same set . Common choices for the domain are intervals of real numbers, bounded or unbounded, and the set of positive integers[4]. With the domain written explicitly or understood implicitly, one writes and it is read " is big O of " if is a bounded function. In other words, if there exists a positive real number such that When is an infinite interval of real numbers, there is an older, alternate notation which is still in common use [5]. The notation means that for some real number , in the domain , and means that for some constant , on the interval , that is, in a small neighborhood of . In addition, the notation means .
Despite the use of the equal sign in the notation, does not refer to an equation but to an inequality relating and .
In the 1930s,[6] the Russian number theorist Ivan Matveyevich Vinogradov introduced his notation , which has been increasingly used in number theory instead of the notation. We have
and frequently both notations are used in the same paper. [7]
Remove ads
Examples with an infinite domain
In typical usage the notation is applied to an infinite interval of real numbers and captures the behavior of the function for very large . In this setting, the contribution of the terms that grow "most quickly" will eventually make the other ones irrelevant. As a result, the following simplification rules can be applied:
- If is a sum of several terms, if there is one with largest growth rate, it can be kept, and all others omitted.
- If is a product of several factors, any constants (factors in the product that do not depend on ) can be omitted.
For example, let , and suppose we wish to simplify this function, using notation, to describe its growth rate for large . This function is the sum of three terms: , , and . Of these three terms, the one with the highest growth rate is the one with the largest exponent as a function of , namely . Now one may apply the second rule: is a product of and in which the first factor does not depend on . Omitting this factor results in the simplified form . Thus, we say that is a "big O" of . Mathematically, we can write for all . One may confirm this calculation using the formal definition: let and . Applying the formal definition from above, the statement that is equivalent to its expansion, for some suitable choice of a positive real number and for all . To prove this, let . Then, for all : so While it is also true, by the same argument, that , this is a less precise approximation of the function . On the other hand, the statement is false, because the term causes to be unbounded.
When a function describes the number of steps required in an algorithm with input , an expression such as with the implied domain being the set of positive integers, can be interpreted as saying that the algorithm has order of time complexity.
Remove ads
Example with a finite domain
Big O can also be used to describe the error term in an approximation to a mathematical function on a finite interval. The most significant terms are written explicitly, and then the least-significant terms are summarized in a single big O term. Consider, for example, the exponential series and two expressions of it that are valid when x is small: The middle expression (the line with "") means the absolute-value of the error is at most some constant times when is small. This is an example of the use of Taylor's theorem.
The behavior of a given function may be very different on finite domains than on infinite domains, for example, while
Remove ads
Multivariate examples
Summarize
Perspective
Here we have a complex variable function of two variables. In general, any bounded function is .
The last example illustrates a mixing of finite and infinite domains on the different variables.
Remove ads
Properties
Product
Sum
If and then . It follows that if and then .
Multiplication by a constant
Let k be a nonzero constant. Then . In other words, if , then
Transitive property
If and then .
If the function of a positive integer
can be written as a finite sum of other functions, then the fastest growing one determines the order of . For example,
Some general rules about growth toward infinity; these can be proved rigorously using L'Hôpital's rule:
Large powers dominate small powers
For , then
Powers dominate logarithms
For any positive no matter how large is and how small is.
Exponentials dominate powers
For any positive no matter how large is and how small is.
A function that grows faster than for any c is called superpolynomial. One that grows more slowly than any exponential function of the form cn is called subexponential. An algorithm can require time that is both superpolynomial and subexponential; examples of this include the fastest known algorithms for integer factorization and the function nlog n.
We may ignore any powers of n inside of the logarithms. The set O(log n) is exactly the same as O(log(nc)). The logarithms differ only by a constant factor (since log(nc) = c log n) and thus the big O notation ignores that. Similarly, logs with different constant bases are equivalent, that is, for any . On the other hand, exponentials with different bases are not of the same order. For example, 2n and 3n are not of the same order.
Remove ads
Uses of Big-O in more complicated expressions
In more complicated usage, O(·) can appear in different places in an equation, even several times on each side. For example, the following are true for a positive integer: The meaning of such statements is as follows: for any functions which satisfy each O(·) on the left side, there are some functions satisfying each O(·) on the right side, such that substituting all these functions into the equation makes the two sides equal. For example, the third equation above means: "For any function f(n) = O(1), there is some function g(n) = O(en) such that nf(n) = g(n)". In this use the "=" is a formal symbol that unlike the usual use of "=" is not a symmetric relation. Thus for example nO(1) = O(en) does not imply the false statement O(en) = nO(1).
Some further examples:
Remove ads
Matters of notation
Summarize
Perspective
Arrows
In mathematics, an expression such as indicates the presence of a limit. In big-O notation, there is no implied limit, in contrast with little-o notation.
Equals sign
Some consider to be an abuse of notation, since the use of the equals sign could be misleading as it suggests a symmetry that this statement does not have. As de Bruijn says, O[x] = O[x2] is true but O[x2] = O[x] is not.[8] Knuth describes such statements as "one-way equalities", since if the sides could be reversed, "we could deduce ridiculous things like n = n2 from the identities n = O[n2] and n2 = O[n2]".[9] In another letter, Knuth also pointed out that[10]
the equality sign is not symmetric with respect to such notations [as, in this notation,] mathematicians customarily use the '=' sign as they use the word 'is' in English: Aristotle is a man, but a man isn't necessarily Aristotle.
For these reasons, it would be more precise to use set notation and write f(x) ∈ O[g(x)] – read as: "f(x) is an element of O[g(x)]", or "f(x) is in the set O[g(x)]" – thinking of O[g(x)] as the class of all functions h(x) such that |h(x)| ≤ C |g(x)| for some positive real number C.[9] However, the use of the equals sign is customary.[8][9]
Typesetting
Big O is typeset as an italicized uppercase "O", as in the following example: .[11][12] In TeX, it is produced by simply typing 'O' inside math mode. Unlike Greek-named Bachmann–Landau notations, it needs no special symbol. However, some authors use the calligraphic variant instead.[13][14]
Remove ads
Orders of common functions
Summarize
Perspective
Here is a list of classes of functions that are commonly encountered when analyzing the running time of an algorithm. In each case, c is a positive constant and n increases without bound. The slower-growing functions are generally listed first.
The statement is sometimes weakened to to derive simpler formulas for asymptotic complexity.
Remove ads
Little-o notation
Summarize
Perspective
Intuitively, the assertion "f(x) is o(g(x))" (read "f(x) is little-o of g(x)") means that g(x) grows much faster than f(x), or equivalently f(x) grows much slower than g(x). As before, let f be a real or complex valued function and g a real valued function, both defined on some unbounded subset of the positive real numbers, such that is strictly positive for all large enough values of x. One writes [16]
if That is, for every positive constant ε there exists a constant such that
For example, one has
- and both as
The difference between the definition of the big-O notation and the definition of little-o is that while the former expresses an inequality for all elements of a domain, the latter expresses an inequality that holds no matter how small the implied constant is, as long as is sufficiently large.[17] In this way, little-o notation makes a stronger statement than the corresponding big-O notation: every function that is little-o of g is also big-O of g, but not every function that is big-O of g is little-o of g. For example, but .
Little-o respects a number of arithmetic operations. For example,
- if c is a nonzero constant and then , and
- if and then
- if and then
It also satisfies a transitivity relation:
- if and then
Little-o can also be generalized to the finite case:[18]
if In other words, for some with .
This definition is especially useful in the computation of limits using Taylor series. For example:
, so
Big Omega notation
Another asymptotic notation is , read "big omega".[19] There are two widespread and incompatible definitions of the statement
where f and g are real functions.
The Hardy–Littlewood definition is used mainly in analytic number theory, and the Knuth definition mainly in computational complexity theory and in combinatorics; the definitions are not equivalent.
The Hardy–Littlewood definition
In 1914 G.H. Hardy and J.E. Littlewood introduced the new symbol [20] which is defined as follows:
- as if
Thus is the negation of
In 1916 the same authors introduced the two new symbols and defined as:[21]
- as if
- as if
These symbols were used by E. Landau, with the same meanings, in 1924.[22] Authors that followed Landau, however, use a different notation for the same definitions:[citation needed] The symbol has been replaced by the current notation with the same definition, and became
These three symbols as well as (meaning that and are both satisfied), are now currently used in analytic number theory.[23][24]
Simple examples
We have
- as
and more precisely
- as
We have
- as
and more precisely
- as
however
- as
The Knuth definition
In 1976 Donald Knuth published a paper to justify his use of the -symbol to describe a stronger property.[25] Knuth wrote: "For all the applications I have seen so far in computer science, a stronger requirement ... is much more appropriate". He defined
with the comment: "Although I have changed Hardy and Littlewood's definition of , I feel justified in doing so because their definition is by no means in wide use, and because there are other ways to say what they want to say in the comparatively rare cases when their definition applies."[25]
Vinogradov[6] introduced the notation , which means the same as . Vinogradov's two notations enjoy visual symmetry, as for positive functions , we have
Family of Bachmann–Landau notations
The limit definitions assume for in a neighborhood of the limit; when the limit is , this means that for sufficiently large . The table is (partly) sorted from smallest to largest, in the sense that (Knuth's version of) on functions correspond to on the real line[28] (the Hardy–Littlewood version of , however, doesn't correspond to any such description).
Computer science and combinatorics use the big , big Theta , little , little omega and Knuth's big Omega notations.[29] Analytic number theory often uses the big , small , Hardy's ,[30] Hardy–Littlewood's big Omega (with or without the +, − or ± subscripts), Vinogradov's and notations and notations.[23] The small omega notation is not used as often in analysis or in number theory.[31]
Use in computer science
Informally, especially in computer science, the big O notation often can be used somewhat differently to describe an asymptotic tight bound where using big Theta Θ notation might be more factually appropriate in a given context.[32] For example, when considering a function T(n) = 73n3 + 22n2 + 58, all of the following are generally acceptable, but tighter bounds (such as numbers 2 and 3 below) are usually strongly preferred over looser bounds (such as number 1 below).
- T(n) = O(n100)
- T(n) = O(n3)
- T(n) = Θ(n3)
The equivalent English statements are respectively:
- T(n) grows asymptotically no faster than n100
- T(n) grows asymptotically no faster than n3
- T(n) grows asymptotically as fast as n3.
So while all three statements are true, progressively more information is contained in each. In some fields, however, the big O notation (number 2 in the lists above) would be used more commonly than the big Theta notation (items numbered 3 in the lists above). For example, if T(n) represents the running time of a newly developed algorithm for input size n, the inventors and users of the algorithm might be more inclined to put an upper asymptotic bound on how long it will take to run without making an explicit statement about the lower asymptotic bound.
Extensions to the Bachmann–Landau notations
Another notation sometimes used in computer science is Õ (read soft-O), which hides polylogarithmic factors. There are two definitions in use: some authors use f(n) = Õ(g(n)) as shorthand for f(n) = O(g(n) logk n) for some k, while others use it as shorthand for f(n) = O(g(n) logk g(n)).[33] When g(n) is polynomial in n, there is no difference; however, the latter definition allows one to say, e.g. that while the former definition allows for for any constant k. Some authors write O* for the same purpose as the latter definition.[34] Essentially, it is big O notation, ignoring logarithmic factors because the growth-rate effects of some other super-logarithmic function indicate a growth-rate explosion for large-sized input parameters that is more important to predicting bad run-time performance than the finer-point effects contributed by the logarithmic-growth factor(s). This notation is often used to obviate the "nitpicking" within growth-rates that are stated as too tightly bounded for the matters at hand (since logk n is always o(nε) for any constant k and any ε > 0).
Also, the L notation, defined as
is convenient for functions that are between polynomial and exponential in terms of .
Remove ads
Generalizations and related usages
The generalization to functions taking values in any normed vector space is straightforward (replacing absolute values by norms), where f and g need not take their values in the same space. A generalization to functions g taking values in any topological group is also possible[citation needed]. The "limiting process" x → xo can also be generalized by introducing an arbitrary filter base, i.e. to directed nets f and g. The o notation can be used to define derivatives and differentiability in quite general spaces, and also (asymptotical) equivalence of functions,
which is an equivalence relation and a more restrictive notion than the relationship "f is Θ(g)" from above. (It reduces to lim f / g = 1 if f and g are positive real valued functions.) For example, is Θ(x), but 2x − x is not o(x).
Remove ads
History (Bachmann–Landau, Hardy, and Vinogradov notations)
Summarize
Perspective
The symbol O was first introduced by number theorist Paul Bachmann in 1894, in the second volume of his book Analytische Zahlentheorie ("analytic number theory").[1] The number theorist Edmund Landau adopted it, and was thus inspired to introduce in 1909 the notation o;[2] hence both are now called Landau symbols. These notations were used in applied mathematics during the 1950s for asymptotic analysis.[35] The symbol (in the sense "is not an o of") was introduced in 1914 by Hardy and Littlewood.[20] Hardy and Littlewood also introduced in 1916 the symbols ("right") and ("left"),[21] precursors of the modern symbols ("is not smaller than a small o of") and ("is not larger than a small o of"). Thus the Omega symbols (with their original meanings) are sometimes also referred to as "Landau symbols". This notation became commonly used in number theory at least since the 1950s.[36]
The symbol , although it had been used before with different meanings,[28] was given its modern definition by Landau in 1909[37] and by Hardy in 1910.[38] Just above on the same page of his tract Hardy defined the symbol , where means that both and are satisfied. The notation is still currently used in analytic number theory.[39][30] In his tract Hardy also proposed the symbol , where means that for some constant .
In the 1930s, Vinogradov[6] popularized the notation and , both of which mean . This notation became standard in analytic number theory.[7]
In the 1970s the big O was popularized in computer science by Donald Knuth, who proposed the different notation for Hardy's , and proposed a different definition for the Hardy and Littlewood Omega notation.[25]
Two other symbols coined by Hardy were (in terms of the modern O notation)
- and
(Hardy however never defined or used the notation , nor , as it has been sometimes reported). Hardy introduced the symbols and (as well as the already mentioned other symbols) in his 1910 tract "Orders of Infinity", and made use of them only in three papers (1910–1913). In his nearly 400 remaining papers and books he consistently used the Landau symbols O and o. Hardy's symbols and (as well as ) are not used anymore.
The big-O originally stands for "order of" ("Ordnung", Bachmann 1894), and is thus a Latin letter. Neither Bachmann nor Landau ever call it "Omicron". The symbol was much later on (1976) viewed by Knuth as a capital omicron,[25] probably in reference to his definition of the symbol Omega. The digit zero should not be used.
See also
- Asymptotic computational complexity
- Asymptotic expansion: Approximation of functions generalizing Taylor's formula
- Asymptotically optimal algorithm: A phrase frequently used to describe an algorithm that has an upper bound asymptotically within a constant of a lower bound for the problem
- Big O in probability notation: Op, op
- Limit inferior and limit superior: An explanation of some of the limit notation used in this article
- Master theorem (analysis of algorithms): For analyzing divide-and-conquer recursive algorithms using big O notation
- Nachbin's theorem: A precise method of bounding complex analytic functions so that the domain of convergence of integral transforms can be stated
- Order of approximation
- Order of accuracy
- Computational complexity of mathematical operations
References and notes
Further reading
External links
Wikiwand - on
Seamless Wikipedia browsing. On steroids.
Remove ads
