Английская Википедия:Big O notation

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Short description

Файл:Big-O-notation.png
Example of Big O notation: <math>{\color{red}f(x)} = O{\color{blue}(g(x))}</math> as <math>x\to\infty</math> since there exists <math>M>0</math> (e.g., <math>M=1</math>) and <math>x_0</math> (e.g.,<math>x_0=5</math>) such that <math>0\leq{\color{red}f(x)}\leq M{\color{blue}g(x)}</math> whenever <math>x\geq x_0</math>.

Шаблон:Order-of-approx

Big O notation is a mathematical notation that describes the limiting behavior of a function when the argument tends towards a particular value or infinity. 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 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; a famous example of such a difference is the remainder term in the prime number theorem. Big O notation is also used in many other fields to provide similar estimates.

Big O notation characterizes functions according to their growth rates: 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 usually only provides an upper bound on the growth rate of the function.

Associated with big O notation are several related notations, using the symbols Шаблон:Math, and Шаблон:Math, to describe other kinds of bounds on asymptotic growth rates.

Formal definition

Let <math>f</math>, the function to be estimated, be a real or complex valued function and let <math>g</math>, the comparison function, be a real valued function. Let both functions be defined on some unbounded subset of the positive real numbers, and <math>g(x)</math> be strictly positive for all large enough values of <math>x</math>.[4] One writes <math display="block"> f(x) = O\bigl( g(x)\bigr)\quad\text{ as }x\to\infty </math> and it is read "<math>f(x)</math> is big O of <math>g(x)</math>" if the absolute value of <math>f(x)</math> is at most a positive constant multiple of <math>g(x)</math> for all sufficiently large values of <math>x</math>. That is, <math>f(x) =O\bigl(g(x)\bigr)</math> if there exists a positive real number <math>M</math> and a real number <math>x_0</math> such that <math display="block">|f(x)| \le M g(x) \quad \text{ for all } x \ge x_0.</math> In many contexts, the assumption that we are interested in the growth rate as the variable <math>x</math> goes to infinity is left unstated, and one writes more simply that <math display="block">f(x) = O\bigl( g(x) \bigr).</math> The notation can also be used to describe the behavior of <math>f</math> near some real number <math>a</math> (often, <math>a=0</math>): we say <math display="block">f(x) = O\bigl( g(x) \bigr)\quad\text{ as }x \to a</math> if there exist positive numbers <math>\delta</math> and <math>M</math> such that for all defined <math>x</math> with Шаблон:Nowrap <math display="block">|f(x)| \le M g(x).</math> As <math>g(x)</math> is chosen to be strictly positive for such values of <math>x</math>, both of these definitions can be unified using the limit superior: <math display="block">f(x) = O\bigl( g(x) \bigr) \quad \text{ as } x \to a</math> if <math display="block">\limsup_{x\to a} \frac{\left|f(x)\right|}{g(x)} < \infty.</math> And in both of these definitions the limit point <math>a</math> (whether <math>\infty</math> or not) is a cluster point of the domains of <math>f</math> and <math>g</math>, i. e., in every neighbourhood of <math>a</math> there have to be infinitely many points in common. Moreover, as pointed out in the article about the limit inferior and limit superior, the <math>\textstyle \limsup_{x\to a}</math> (at least on the extended real number line) always exists.

In computer science, a slightly more restrictive definition is common: <math>f</math> and <math>g</math> are both required to be functions from some unbounded subset of the positive integers to the nonnegative real numbers; then <math>f(x) = O\bigl(g(x)\bigr)</math> if there exist positive integer numbers <math>M</math> and <math>n_0</math> such that <math>f(n) \le M g(n)</math> for all <math> n \ge n_0</math>.[5]

Example

In typical usage the Шаблон:Math notation is asymptotical, that is, it refers to very large Шаблон:Mvar. 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 Шаблон:Math is a sum of several terms, if there is one with largest growth rate, it can be kept, and all others omitted.
  • If Шаблон:Math is a product of several factors, any constants (factors in the product that do not depend on Шаблон:Mvar) can be omitted.

For example, let Шаблон:Math, and suppose we wish to simplify this function, using Шаблон:Math notation, to describe its growth rate as Шаблон:Mvar approaches infinity. This function is the sum of three terms: Шаблон:Math, Шаблон:Math, and Шаблон:Math. Of these three terms, the one with the highest growth rate is the one with the largest exponent as a function of Шаблон:Mvar, namely Шаблон:Math. Now one may apply the second rule: Шаблон:Math is a product of Шаблон:Math and Шаблон:Math in which the first factor does not depend on Шаблон:Math. Omitting this factor results in the simplified form Шаблон:Math. Thus, we say that Шаблон:Math is a "big O" of Шаблон:Math. Mathematically, we can write Шаблон:Math. One may confirm this calculation using the formal definition: let Шаблон:Math and Шаблон:Math. Applying the formal definition from above, the statement that Шаблон:Math is equivalent to its expansion, <math display="block">|f(x)| \le M x^4</math> for some suitable choice of a real number Шаблон:Math and a positive real number Шаблон:Mvar and for all Шаблон:Math. To prove this, let Шаблон:Math and Шаблон:Math. Then, for all Шаблон:Math: <math display="block">\begin{align} |6x^4 - 2x^3 + 5| &\le 6x^4 + |2x^3| + 5\\

                 &\le 6x^4 + 2x^4 + 5x^4\\
                 &= 13x^4

\end{align}</math> so <math display="block"> |6x^4 - 2x^3 + 5| \le 13 x^4 .</math>

Usage

Big O notation has two main areas of application:

In both applications, the function Шаблон:Math appearing within the Шаблон:Math is typically chosen to be as simple as possible, omitting constant factors and lower order terms.

There are two formally close, but noticeably different, usages of this notation:Шаблон:Citation needed

This distinction is only in application and not in principle, however—the formal definition for the "big O" is the same for both cases, only with different limits for the function argument.Шаблон:Original research inline

Infinite asymptotics

Файл:Comparison computational complexity.svg
Graphs of functions commonly used in the analysis of algorithms, showing the number of operations Шаблон:Mvar versus input size Шаблон:Mvar for each function

Big O notation is useful when analyzing algorithms for efficiency. For example, the time (or the number of steps) it takes to complete a problem of size Шаблон:Mvar might be found to be Шаблон:Math. As Шаблон:Mvar grows large, the Шаблон:Math term will come to dominate, so that all other terms can be neglected—for instance when Шаблон:Math, the term Шаблон:Math is 1000 times as large as the Шаблон:Math term. Ignoring the latter would have negligible effect on the expression's value for most purposes. Further, the coefficients become irrelevant if we compare to any other order of expression, such as an expression containing a term Шаблон:Math or Шаблон:Math. Even if Шаблон:Math, if Шаблон:Math, the latter will always exceed the former once Шаблон:Mvar grows larger than Шаблон:Math, viz. Шаблон:Math. Additionally, the number of steps depends on the details of the machine model on which the algorithm runs, but different types of machines typically vary by only a constant factor in the number of steps needed to execute an algorithm. So the big O notation captures what remains: we write either

<math>T(n)= O(n^2) </math>

or

<math>T(n) \in O(n^2) </math>

and say that the algorithm has order of Шаблон:Math time complexity. The sign "Шаблон:Math" is not meant to express "is equal to" in its normal mathematical sense, but rather a more colloquial "is", so the second expression is sometimes considered more accurate (see the "Equals sign" discussion below) while the first is considered by some as an abuse of notation.[6]

Infinitesimal asymptotics

Big O can also be used to describe the error term in an approximation to a mathematical function. 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 Шаблон:Mvar is small:

<math>\begin{align}

e^x &=1+x+\frac{x^2}{2!}+\frac{x^3}{3!}+\frac{x^4}{4!}+\dotsb &\text{for all } x\\[4pt]

   &=1+x+\frac{x^2}{2}+O(x^3)                                &\text{as } x\to 0\\[4pt]
   &=1+x+O(x^2)                                              &\text{as } x\to 0

\end{align}</math> The middle expression (the one with O(x3)) means the absolute-value of the error ex − (1 + x + x2/2) is at most some constant times |x3| when x is close enough to 0.

Properties

If the function Шаблон:Math can be written as a finite sum of other functions, then the fastest growing one determines the order of Шаблон:Math. For example,

<math>f(n) = 9 \log n + 5 (\log n)^4 + 3n^2 + 2n^3 = O(n^3) \qquad\text{as } n\to\infty .</math>

In particular, if a function may be bounded by a polynomial in Шаблон:Mvar, then as Шаблон:Mvar tends to infinity, one may disregard lower-order terms of the polynomial. The sets Шаблон:Math and Шаблон:Math are very different. If Шаблон:Mvar is greater than one, then the latter grows much faster. A function that grows faster than Шаблон:Math for any Шаблон:Mvar is called superpolynomial. One that grows more slowly than any exponential function of the form Шаблон:Math 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 Шаблон:Math.

We may ignore any powers of Шаблон:Mvar inside of the logarithms. The set Шаблон:Math is exactly the same as Шаблон:Math. The logarithms differ only by a constant factor (since Шаблон:Math) and thus the big O notation ignores that. Similarly, logs with different constant bases are equivalent. On the other hand, exponentials with different bases are not of the same order. For example, Шаблон:Math and Шаблон:Math are not of the same order.

Changing units may or may not affect the order of the resulting algorithm. Changing units is equivalent to multiplying the appropriate variable by a constant wherever it appears. For example, if an algorithm runs in the order of Шаблон:Math, replacing Шаблон:Mvar by Шаблон:Math means the algorithm runs in the order of Шаблон:Math, and the big O notation ignores the constant Шаблон:Math. This can be written as Шаблон:Math. If, however, an algorithm runs in the order of Шаблон:Math, replacing Шаблон:Mvar with Шаблон:Math gives Шаблон:Math. This is not equivalent to Шаблон:Math in general. Changing variables may also affect the order of the resulting algorithm. For example, if an algorithm's run time is Шаблон:Math when measured in terms of the number Шаблон:Mvar of digits of an input number Шаблон:Mvar, then its run time is Шаблон:Math when measured as a function of the input number Шаблон:Mvar itself, because Шаблон:Math.

Product

<math> f_1 = O(g_1) \text{ and } f_2 = O(g_2) \Rightarrow f_1 f_2 = O(g_1 g_2)</math>
<math>f\cdot O(g) = O(f g)</math>

Sum

If <math> f_1 = O(g_1)</math> and <math> f_2= O(g_2) </math> then <math> f_1 + f_2 = O(\max(g_1, g_2))</math>. It follows that if <math> f_1 = O(g) </math> and <math> f_2 = O(g)</math> then <math> f_1+f_2 \in O(g) </math>. In other words, this second statement says that <math>O(g)</math> is a convex cone.

Multiplication by a constant

Let Шаблон:Mvar be a nonzero constant. Then <math>O(|k| \cdot g) = O(g)</math>. In other words, if <math>f = O(g)</math>, then <math>k \cdot f = O(g). </math>

Multiple variables

Big O (and little o, Ω, etc.) can also be used with multiple variables. To define big O formally for multiple variables, suppose <math>f</math> and <math>g</math> are two functions defined on some subset of <math>\R^n</math>. We say

<math>f(\mathbf{x})\text{ is }O(g(\mathbf{x}))\quad\text{ as }\mathbf{x}\to\infty</math>

if and only if there exist constants <math>M</math> and <math>C > 0</math> such that <math>|f(\mathbf{x})| \le C |g(\mathbf{x})|</math> for all <math>\mathbf{x}</math> with <math> x_i \geq M</math> for some <math>i.</math>[7] Equivalently, the condition that <math>x_i \geq M</math> for some <math>i</math> can be written <math>\|\mathbf{x}\|_{\infty} \ge M</math>, where <math>\|\mathbf{x}\|_{\infty}</math> denotes the Chebyshev norm. For example, the statement

<math>f(n,m) = n^2 + m^3 + O(n+m) \quad\text{ as } n,m\to\infty</math>

asserts that there exist constants C and M such that

<math> |f(n,m) - (n^2 + m^3)| \le C |n+m|</math>

whenever either <math> m \geq M</math> or <math>n \geq M</math> holds. This definition allows all of the coordinates of <math>\mathbf{x}</math> to increase to infinity. In particular, the statement

<math>f(n,m) = O(n^m) \quad \text{ as } n,m\to\infty</math>

(i.e., <math>\exists C \,\exists M \,\forall n \,\forall m\,\cdots</math>) is quite different from

<math>\forall m\colon~f(n,m) = O(n^m) \quad\text{ as } n\to\infty</math>

(i.e., <math>\forall m \, \exists C \, \exists M \, \forall n \, \cdots</math>).

Under this definition, the subset on which a function is defined is significant when generalizing statements from the univariate setting to the multivariate setting. For example, if <math>f(n,m)=1</math> and <math>g(n,m)=n</math>, then <math>f(n,m) = O(g(n,m))</math> if we restrict <math>f</math> and <math>g</math> to <math>[1,\infty)^2</math>, but not if they are defined on <math>[0,\infty)^2</math>.

This is not the only generalization of big O to multivariate functions, and in practice, there is some inconsistency in the choice of definition.[8]

Matters of notation

Equals sign

The statement "f(x) is O(g(x))" as defined above is usually written as Шаблон:Nowrap. Some consider this 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, Шаблон:Nowrap is true but Шаблон:Nowrap is not.[9] Knuth describes such statements as "one-way equalities", since if the sides could be reversed, "we could deduce ridiculous things like Шаблон:Nowrap from the identities Шаблон:Nowrap and Шаблон:Nowrap."[10] In another letter, Knuth also pointed out that "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".[11]

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)| ≤ Cg(x) for some positive real number C.[10] However, the use of the equals sign is customary.[9][10]

Other arithmetic operators

Big O notation can also be used in conjunction with other arithmetic operators in more complicated equations. For example, Шаблон:Nowrap denotes the collection of functions having the growth of h(x) plus a part whose growth is limited to that of f(x). Thus,

<math>g(x) = h(x) + O(f(x))</math>

expresses the same as

<math>g(x) - h(x) = O(f(x)).</math>

Example Шаблон:Anchor

Suppose an algorithm is being developed to operate on a set of n elements. Its developers are interested in finding a function T(n) that will express how long the algorithm will take to run (in some arbitrary measurement of time) in terms of the number of elements in the input set. The algorithm works by first calling a subroutine to sort the elements in the set and then perform its own operations. The sort has a known time complexity of O(n2), and after the subroutine runs the algorithm must take an additional Шаблон:Nowrap steps before it terminates. Thus the overall time complexity of the algorithm can be expressed as Шаблон:Nowrap. Here the terms Шаблон:Nowrap are subsumed within the faster-growing O(n2). Again, this usage disregards some of the formal meaning of the "=" symbol, but it does allow one to use the big O notation as a kind of convenient placeholder.

Multiple uses

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 <math>n\to\infty</math>: <math display="block"> \begin{align} (n+1)^2 & = n^2 + O(n), \\ (n + O(n^{1/2})) \cdot (n + O(\log n))^2 & = n^3 + O(n^{5/2}), \\ n^{O(1)} & = O(e^n). \end{align}</math> 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 terms of the "set notation" above, the meaning is that the class of functions represented by the left side is a subset of the class of functions represented by the right side. In this use the "=" is a formal symbol that unlike the usual use of "=" is not a symmetric relation. Thus for example Шаблон:Nowrap does not imply the false statement Шаблон:Nowrap.

Typesetting

Big O is typeset as an italicized uppercase "O", as in the following example: <math>O(n^2)</math>.[12][13] In TeX, it is produced by simply typing O inside math mode. Unlike Greek-named Bachmann–Landau notations, it needs no special symbol. Yet, some authors use the calligraphic variant <math>\mathcal{O}</math> instead.[14][15]

Orders of common functions

Шаблон:Further

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.

Notation Name Example
<math>O(1)</math> constant Finding the median value for a sorted array of numbers; Calculating <math>(-1)^n</math>; Using a constant-size lookup table
<math>O(\log \log n)</math> double logarithmic Average number of comparisons spent finding an item using interpolation search in a sorted array of uniformly distributed values
<math>O(\log n)</math> logarithmic Finding an item in a sorted array with a binary search or a balanced search tree as well as all operations in a binomial heap
<math>O((\log n)^c)</math>
<math display=inline> c>1</math>
polylogarithmic Matrix chain ordering can be solved in polylogarithmic time on a parallel random-access machine.
<math>O(n^c)</math>
<math display=inline> 0<c<1</math>
fractional power Searching in a k-d tree
<math>O(n)</math> linear Finding an item in an unsorted list or in an unsorted array; adding two n-bit integers by ripple carry
<math>O(n\log^* n)</math> n log-star n Performing triangulation of a simple polygon using Seidel's algorithm, where <math>\log^*(n) =

\begin{cases}

0, & \text{if }n \leq 1 \\
1 + \log^*(\log n), & \text{if }n>1

\end{cases}</math>

<math>O(n\log n) = O(\log n!)</math> linearithmic, loglinear, quasilinear, or "n log n" Performing a fast Fourier transform; fastest possible comparison sort; heapsort and merge sort
<math>O(n^2)</math> quadratic Multiplying two n-digit numbers by schoolbook multiplication; simple sorting algorithms, such as bubble sort, selection sort and insertion sort; (worst-case) bound on some usually faster sorting algorithms such as quicksort, Shellsort, and tree sort
<math>O(n^c)</math> polynomial or algebraic Tree-adjoining grammar parsing; maximum matching for bipartite graphs; finding the determinant with LU decomposition
<math>L_n[\alpha,c] = e^{(c + o(1)) (\ln n)^\alpha (\ln \ln n)^{1-\alpha}}</math>
<math display=inline> 0 < \alpha < 1</math>
L-notation or sub-exponential Factoring a number using the quadratic sieve or number field sieve
<math>O(c^n)</math>
<math display=inline> c>1</math>
exponential Finding the (exact) solution to the travelling salesman problem using dynamic programming; determining if two logical statements are equivalent using brute-force search
<math>O(n!)</math> factorial Solving the travelling salesman problem via brute-force search; generating all unrestricted permutations of a poset; finding the determinant with Laplace expansion; enumerating all partitions of a set

The statement <math>f(n) = O(n!)</math> is sometimes weakened to <math>f(n) = O\left(n^n\right)</math> to derive simpler formulas for asymptotic complexity. For any <math>k>0</math> and Шаблон:Nowrap <math>O(n^c(\log n)^k)</math> is a subset of <math>O(n^{c+\varepsilon})</math> for any Шаблон:Nowrap so may be considered as a polynomial with some bigger order.

Related asymptotic notations

Big O is widely used in computer science. Together with some other related notations, it forms the family of Bachmann–Landau notations.Шаблон:Citation needed

Little-o notation

Шаблон:Redirect Intuitively, the assertion "Шаблон:Math is Шаблон:Math" (read "Шаблон:Math is little-o of Шаблон:Math") means that Шаблон:Math grows much faster than Шаблон:Math. 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 g(x) is strictly positive for all large enough values of x. One writes

<math>f(x) = o(g(x)) \quad \text{ as } x \to \infty</math>

if for every positive constant Шаблон:Mvar there exists a constant <math>x_0</math> such that

<math>|f(x)| \leq \varepsilon g(x) \quad \text{ for all } x \geq x_0.</math>[16]

For example, one has

<math>2x = o(x^2)</math> and <math>1/x = o(1),</math>     both as <math> x \to \infty .</math>

The difference between the definition of the big-O notation and the definition of little-o is that while the former has to be true for at least one constant M, the latter must hold for every positive constant Шаблон:Math, however small.[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 also little-o of g. For example, <math>2x^2 = O(x^2) </math> but Шаблон:Nowrap

As g(x) is nonzero, or at least becomes nonzero beyond a certain point, the relation <math>f(x) = o(g(x))</math> is equivalent to

<math>\lim_{x \to \infty}\frac{f(x)}{g(x)} = 0</math> (and this is in fact how Landau[16] originally defined the little-o notation).

Little-o respects a number of arithmetic operations. For example,

if Шаблон:Mvar is a nonzero constant and <math>f = o(g)</math> then <math>c \cdot f = o(g)</math>, and
if <math>f = o(F)</math> and <math>g = o(G)</math> then <math> f \cdot g = o(F \cdot G).</math>

It also satisfies a transitivity relation:

if <math>f = o(g)</math> and <math> g = o(h)</math> then <math>f = o(h).</math>

Big Omega notation

Another asymptotic notation is <math>\Omega</math>, read "big omega".[18] There are two widespread and incompatible definitions of the statement

<math>f(x)=\Omega(g(x))</math> as <math>x \to a</math>,

where a is some real number, <math>\infty</math>, or <math>-\infty</math>, where f and g are real functions defined in a neighbourhood of a, and where g is positive in this neighbourhood.

The Hardy–Littlewood definition is used mainly in analytic number theory, and the Knuth definition mainly in computational complexity theory; the definitions are not equivalent.

The Hardy–Littlewood definition

In 1914 Godfrey Harold Hardy and John Edensor Littlewood introduced the new symbol <math>\Omega</math>,[19] which is defined as follows:

<math>f(x) = \Omega(g(x))</math> as <math>x\to\infty</math> if <math>\limsup_{x \to \infty} \left|\frac{f(x)}{g(x)}\right| > 0.</math>

Thus <math>f(x)=\Omega(g(x))</math> is the negation of <math>f(x)=o(g(x))</math>.

In 1916 the same authors introduced the two new symbols <math>\Omega_R</math> and <math>\Omega_L</math>, defined as:[20]

<math>f(x)=\Omega_R(g(x))</math> as <math>x\to\infty</math> if <math>\limsup_{x \to \infty} \frac{f(x)}{g(x)}> 0</math>;
<math>f(x)=\Omega_L(g(x))</math> as <math>x\to\infty</math> if <math>\liminf_{x \to \infty} \frac{f(x)}{g(x)}< 0. </math>

These symbols were used by Edmund Landau, with the same meanings, in 1924.[21] After Landau, the notations were never used again exactly thus; <math>\Omega_R</math> became <math>\Omega_+</math> and <math>\Omega_L</math> became <math>\Omega_-</math>.Шаблон:Citation needed

These three symbols <math>\Omega, \Omega_+, \Omega_-</math>, as well as <math>f(x)=\Omega_\pm(g(x))</math> (meaning that <math>f(x)=\Omega_+(g(x))</math> and <math>f(x)=\Omega_-(g(x))</math> are both satisfied), are now currently used in analytic number theory.[22][23]

Simple examples

Шаблон:Unreferenced section We have

<math>\sin x=\Omega(1)</math> as <math>x\to\infty,</math>

and more precisely

<math>\sin x=\Omega_\pm(1)</math> as <math>x\to\infty.</math>

We have

<math>\sin x+1=\Omega(1)</math> as <math>x\to\infty,</math>

and more precisely

<math>\sin x+1=\Omega_+(1)</math> as <math>x\to\infty;</math>

however

<math>\sin x+1\not=\Omega_-(1)</math> as <math>x\to\infty.</math>

The Knuth definition

In 1976 Donald Knuth published a paper to justify his use of the <math>\Omega</math>-symbol to describe a stronger property.[24] Knuth wrote: "For all the applications I have seen so far in computer science, a stronger requirement ... is much more appropriate". He defined

<math>f(x)=\Omega(g(x))\Leftrightarrow g(x)=O(f(x))</math>

with the comment: "Although I have changed Hardy and Littlewood's definition of <math>\Omega</math>, 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."[24]

Family of Bachmann–Landau notations

Notation Name[24] Description Formal definition Limit definition[25][26][27][24][19]
<math>f(n) = o(g(n))</math> Small O; Small Oh; Little O; Little Oh Шаблон:Mvar is dominated by Шаблон:Mvar asymptotically f(n)| < k\, g(n)</math> <math>\lim_{n \to \infty} \frac{f(n)}{g(n)} = 0</math>
<math>f(n) = O(g(n))</math> Big O; Big Oh; Big Omicron f|</math> is bounded above by Шаблон:Mvar (up to constant factor) asymptotically f(n)| \leq k\, g(n)</math> <math>\limsup_{n \to \infty} \frac{f(n)}{g(n)} < \infty</math>
<math>f(n) = \Theta(g(n))</math> Big Theta Шаблон:Mvar is bounded both above and below by Шаблон:Mvar asymptotically <math>\exists k_1 > 0 \, \exists k_2>0 \, \exists n_0 \, \forall n > n_0\colon</math> <math>k_1 \, g(n) \leq f(n) \leq k_2 \, g(n)</math> <math>f(n) = O(g(n))</math> and <math>f(n) = \Omega(g(n))</math> (Knuth version)
<math>f(n)\sim g(n)</math> On the order of Шаблон:Mvar is equal to Шаблон:Mvar asymptotically \frac{f(n)}{g(n)} - 1 \right| < \varepsilon</math> <math>\lim_{n \to \infty} \frac{f(n)}{g(n)} = 1</math>
<math>f(n) = \Omega(g(n))</math> Big Omega in complexity theory (Knuth) Шаблон:Mvar is bounded below by Шаблон:Mvar asymptotically <math>\exists k > 0 \, \exists n_0 \, \forall n>n_0\colon f(n) \geq k\, g(n)</math> <math>\liminf_{n \to \infty} \frac{f(n)}{g(n)} > 0 </math>
<math>f(n) = \omega(g(n))</math> Small Omega; Little Omega Шаблон:Mvar dominates Шаблон:Mvar asymptotically <math>\forall k > 0 \, \exists n_0 \, \forall n > n_0 \colon f(n) > k\, g(n)</math> <math>\lim_{n \to \infty} \frac{f(n)}{g(n)} = \infty</math>
<math>f(n) = \Omega(g(n))</math> Big Omega in number theory (Hardy–Littlewood) f|</math> is not dominated by Шаблон:Mvar asymptotically f(n)| \geq k\, g(n)</math> f(n)\right|}{g(n)} > 0 </math>

The limit definitions assume <math>g(n) > 0</math> for sufficiently large <math>n</math>. The table is (partly) sorted from smallest to largest, in the sense that <math>o,O,\Theta,\sim, </math> (Knuth's version of) <math>\Omega, \omega </math> on functions correspond to <math><,\leq,\approx,=, </math><math>\geq,> </math> on the real line[27] (the Hardy–Littlewood version of <math>\Omega </math>, however, doesn't correspond to any such description).

Computer science uses the big <math>O </math>, big Theta <math>\Theta </math>, little <math>o </math>, little omega <math>\omega </math> and Knuth's big Omega <math>\Omega </math> notations.[28] Analytic number theory often uses the big <math>O </math>, small <math>o </math>, Hardy–Littlewood's big Omega <math>\Omega </math> (with or without the +, − or ± subscripts) and <math>\sim</math> notations.[22] The small omega <math>\omega </math> notation is not used as often in analysis.[29]

Use in computer science

Шаблон:Further 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.[30] 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).

  1. Шаблон:Nowrap
  2. Шаблон:Nowrap
  3. Шаблон:Nowrap

The equivalent English statements are respectively:

  1. T(n) grows asymptotically no faster than n100
  2. T(n) grows asymptotically no faster than n3
  3. 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.

Other notation

In their book Introduction to Algorithms, Cormen, Leiserson, Rivest and Stein consider the set of functions f which satisfy

<math> f(n) = O(g(n))\quad(n\to\infty)~.</math>

In a correct notation this set can, for instance, be called O(g), where

<math display=block>O(g) = \{ f : \text{there exist positive constants}~c~\text{and}~n_0~\text{such that}~0 \le f(n) \le c g(n) \text{ for all } n \ge n_0 \}.</math>[31]

The authors state that the use of equality operator (=) to denote set membership rather than the set membership operator (∈) is an abuse of notation, but that doing so has advantages.[6] Inside an equation or inequality, the use of asymptotic notation stands for an anonymous function in the set O(g), which eliminates lower-order terms, and helps to reduce inessential clutter in equations, for example:[32]

<math> 2n^2 + 3n + 1=2n^2 + O(n).</math>

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 Шаблон:Nowrap for some k, while others use it as shorthand for Шаблон:Nowrap.[33] When Шаблон:Nowrap is polynomial in n, there is no difference; however, the latter definition allows one to say, e.g. that <math>n2^n = \tilde O(2^n)</math> while the former definition allows for <math>\log^k n = \tilde O(1)</math> 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 Шаблон:Nowrap).

Also the L notation, defined as

<math>L_n[\alpha,c] = e^{(c + o(1))(\ln n)^\alpha(\ln\ln n)^{1-\alpha}}</math>

is convenient for functions that are between polynomial and exponential in terms of Шаблон:Nowrap

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,

<math> f\sim g \iff (f-g) \in o(g) </math>

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, 2x is Θ(x), but Шаблон:Nowrap is not o(x).

History (Bachmann–Landau, Hardy, and Vinogradov notations)

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 <math>\Omega</math> (in the sense "is not an o of") was introduced in 1914 by Hardy and Littlewood.[19] Hardy and Littlewood also introduced in 1916 the symbols <math>\Omega_R</math> ("right") and <math>\Omega_L</math> ("left"),[20] precursors of the modern symbols <math>\Omega_+</math> ("is not smaller than a small o of") and <math>\Omega_-</math> ("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 <math>\Omega</math> became commonly used in number theory at least since the 1950s.[36] In the 1970s the big O was popularized in computer science by Donald Knuth, who introduced the related Theta notation, and proposed a different definition for the Omega notation.[24]

Landau never used the big Theta and small omega symbols.

Hardy's symbols were (in terms of the modern O notation)

<math> f \preccurlyeq g\iff f \in O(g) </math>   and   <math> f\prec g\iff f\in o(g); </math>

(Hardy however never defined or used the notation <math>\prec\!\!\prec</math>, nor <math>\ll</math>, as it has been sometimes reported). Hardy introduced the symbols <math>\preccurlyeq </math> and <math>\prec </math> (as well as some 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 notation is not used anymore. On the other hand, in the 1930s,[37] the Russian number theorist Ivan Matveyevich Vinogradov introduced his notation <math>\ll</math>, which has been increasingly used in number theory instead of the <math>O</math> notation. We have

<math> f\ll g \iff f \in O(g), </math>

and frequently both notations are used in the same paper.

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,[24] probably in reference to his definition of the symbol Omega. The digit zero should not be used.

See also

References and notes

Шаблон:Reflist

Further reading

External links

Шаблон:Wikibooks Шаблон:Sister project

  1. 1,0 1,1 Шаблон:Cite book
  2. 2,0 2,1 Шаблон:Cite book
  3. Шаблон:Cite web
  4. Шаблон:Cite book
  5. Шаблон:Cite book Here: Def.7.2, p.227
  6. 6,0 6,1 Шаблон:Cite book
  7. Шаблон:Harvtxt, p. 53
  8. Шаблон:Cite web
  9. 9,0 9,1 Шаблон:Cite book
  10. 10,0 10,1 10,2 Шаблон:Cite book
  11. Шаблон:Cite journal (Unabridged version Шаблон:Webarchive)
  12. Donald E. Knuth, The art of computer programming. Vol. 1. Fundamental algorithms, third edition, Addison Wesley Longman, 1997. Section 1.2.11.1.
  13. Ronald L. Graham, Donald E. Knuth, and Oren Patashnik, Concrete Mathematics: A Foundation for Computer Science (2nd ed.), Addison-Wesley, 1994. Section 9.2, p. 443.
  14. Sivaram Ambikasaran and Eric Darve, An <math>\mathcal O (N \log N)</math> Fast Direct Solver for Partial Hierarchically Semi-Separable Matrices, J. Scientific Computing 57 (2013), no. 3, 477–501.
  15. Saket Saurabh and Meirav Zehavi, <math>(k,n-k)</math>-Max-Cut: An <math>\mathcal{O}^*(2^p)</math>-Time Algorithm and a Polynomial Kernel, Algorithmica 80 (2018), no. 12, 3844–3860.
  16. 16,0 16,1 Шаблон:Cite book
  17. Thomas H. Cormen et al., 2001, Introduction to Algorithms, Second Edition, Ch. 3.1 Шаблон:Webarchive
  18. Шаблон:Cite book
  19. 19,0 19,1 19,2 Шаблон:Cite journal
  20. 20,0 20,1 G. H. Hardy and J. E. Littlewood, « Contribution to the theory of the Riemann zeta-function and the theory of the distribution of primes », Acta Mathematica, vol. 41, 1916.
  21. E. Landau, "Über die Anzahl der Gitterpunkte in gewissen Bereichen. IV." Nachr. Gesell. Wiss. Gött. Math-phys. Kl. 1924, 137–150.
  22. 22,0 22,1 Aleksandar Ivić. The Riemann zeta-function, chapter 9. John Wiley & Sons 1985.
  23. Gérald Tenenbaum, Introduction to analytic and probabilistic number theory, Chapter I.5. American Mathematical Society, Providence RI, 2015.
  24. 24,0 24,1 24,2 24,3 24,4 24,5 Шаблон:Cite journal
  25. Шаблон:Cite journal
  26. Шаблон:Cite book
  27. 27,0 27,1 Шаблон:Cite journal
  28. Шаблон:Introduction to Algorithms
  29. for example it is omitted in: Шаблон:Cite web
  30. Шаблон:Harvtxt, p. 64: "Many people continue to use the O-notation where the Θ-notation is more technically precise."
  31. Шаблон:Cite book
  32. Шаблон:Cite book
  33. Шаблон:Cite book
  34. Шаблон:Cite journal See sect.2.3, p.551.
  35. Шаблон:Cite book
  36. E. C. Titchmarsh, The Theory of the Riemann Zeta-Function (Oxford; Clarendon Press, 1951)
  37. See for instance "A new estimate for G(n) in Waring's problem" (Russian). Doklady Akademii Nauk SSSR 5, No 5-6 (1934), 249–253. Translated in English in: Selected works / Ivan Matveevič Vinogradov; prepared by the Steklov Mathematical Institute of the Academy of Sciences of the USSR on the occasion of his 90th birthday. Springer-Verlag, 1985.