Dictionary of Meaning
<<Back
Please select a letter:
A |
B |
C |
D |
E |
F |
G |
H |
I |
J |
K |
L |
M |
N |
O |
P |
Q |
R |
S |
T |
U |
V |
W |
X |
Y |
Z |
0-9
Click here for Shopping
Big O Notation
*** Shopping-Tip: Big O Notation
Big O notation' is a mathematical notation used to describe the asymptotic behavior of function (mathematics)s. More precisely, it is used to describe an 'asymptotic upper bound for the
function (mathematics)s. More precisely, it is used to describe an 'asymptotic upper bound for the
magnitude_of_a_function in terms of another, usually simpler, function. It has two main areas of application: in
mathematics, it is usually used to characterize the residual term of a truncated
infinite series, especially an
asymptotic series, and in
computer science, it is useful in the
analysis of algorithms of the
computational complexity theory of
analysis of algorithms of the
computational complexity theory of
algorithms.
It was first introduced by
German number theorist Paul Bachmann in 1894, in the second volume of his book
Analytische Zahlentheorie (the first volume of which came out in 1892, and did not contain big O notation). The notation was popularized in the work of another
German number theorist Edmund Landau, hence it is sometimes called a
Landau symbol. The big-O, standing for "order of", was originally a capital
omicron; today the capital letter O is used, but never the digit
0 (number).
Uses
There are two formally close, but noticeably different usages of this notation:
infinite asymptotics and
infinitesimal asymptotics. 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.
Infinite asymptotics
Big O notation is useful when
analysis of algorithms for efficiency. For example, the time (or the number of steps) it takes to complete a problem of size
n might be found to be
T(
n) = 4
n² - 2
n + 2.
As
n grows large, the
n² term will come to dominate, so that all other terms can be neglected—for instance when
n = 500, the term 4
n² is 1000 times as large as the 2
n term, and so ignoring the latter would have negligible effect on the expression's value for most purposes.
Further, the
coefficients become irrelevant as well if we compare to any other order of expression, such as an expression containing a term n³ or 2
n. Even if
T(
n) = 1,000,000
n², if
U(
n) =
n³, the latter will always exceed the former once
n grows larger than 1,000,000 (
T(1,000,000) = 1,000,000³ =
U(1,000,000)).
So Big O notation captures what remains: we write
:
and say that the algorithm has
order of n2 time complexity.
Infinitesimal asymptotics
Big O can also be used to describe the error term in an approximation
to a mathematical function. For example,
:
expresses the fact that the error (the difference
) is smaller in
absolute value
than some constant times
x3 if
x is close enough to 0.
Formal definition
Suppose
and
are two functions defined on
some subset of the
real numbers. We say
:
if and only if
:
.
The notation can also be used to describe the behavior of
f near
some real number
a: we say
:
if and only if
:
.
If
is non-zero for values of
x sufficiently close to
a, both of these definitions can be unified using the
limit superior:
:
if and only if
:
In mathematics, both asymptotic behaviours near ∞ and near
a are considered.
In
computational complexity theory, only asymptotics near ∞ are used; furthermore,
only positive functions are considered, so the absolute value bars may
be left out.
Example
Take the
polynomials:
:
:
We say
f(
x) has order O(
g(
x)) or O(
x4). From the definition of order, |
f(x)| &
- 8804; C |g(x)| for all x>1, where C is a constant.
Proof:
:
where
x > 1
:
because
x3 <
x4, and so on.
:
:
where C = 13 in this example
Matters of notation
The statement "
is
" as defined above is often written as
. This is a slight
abuse of notation: we are not really asserting the equality of two functions. The property of being
is not symmetric:
:
.
For this reason, some authors prefer a
set notation and write
, thinking of
as the set of all functions dominated by
g.
Furthermore, an "equation" of the form
:
should be understood as "the difference of
".
Common orders of functions
Here is a list of classes of functions that are commonly encountered when analyzing algorithms. All of these are as
n increases to infinity. The slower-growing functions are listed first.
c is an arbitrary constant.
{| border="1" cellpadding="4" cellspacing="0"
!notation !! name
|-
|
||
constant
|-
|
||
iterated logarithmic
|-
|
||
logarithmic
|-
|
||
polylogarithmic
|-
|
||
sublinear
|-
|
||
linear
|-
|
||
linearithmic, loglinear, quasilinear or supralinear
|-
|
||
quadratic
|-
|
,
||
polynomial, sometimes called "algebraic"
|-
|
||
exponential, sometimes called "
geometric"
|-
|
||
factorial, sometimes called "combinatorial"
|-
|
|| -
|}
Not as common, but even larger growth is possible, such as the single-valued version of the
Ackermann function, A(
n,
n). Conversely, extremely slowly-growing functions such as the inverse of this function, often denoted α(
n), are possible. Although unbounded, these functions are often regarded as being constant factors for all practical purposes.
Properties
If a function
f(
n) can be written as a finite sum of other
functions, then the fastest growing one determines the order of
f(
n). For example
:
.
In particular, if a function may be bounded by a polynomial in
n, then as
n tends to
infinity, one may disregard
lower-order terms of the polynomial.
O(
nc) and O(
cn) are
very different. The latter grows much, much faster, no matter how big
the constant
c is (as long as it is greater than one). A function that grows faster than any power of
n is called
superpolynomial. One that grows slower 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.
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.
Product
:
Sum
:
Multiplication by a constant
:
,
k≠0
Addition of a constant
:
unless g(n) ∈ o(1), in which case it is O(1).
Other useful relations are given in section
- Big O and little o|Big O and little o
below.
Related asymptotic notations: O, o, Ω, ω, Θ, Õ
Big O is the most commonly used asymptotic notation for comparing
functions, although it is often actually an informal substitute for Θ (
Theta, see below). Here, we define some related notations in terms of "big O":
{| border="1" cellpadding="4" cellspacing="0"
!Notation
!Definition
!Mathematical definition
|-
|
|asymptotic upper bound
|
|-
|
|asymptotically negligible
|
|-
|
|asymptotic lower bound
|
|-
|
|asymptotically dominant
|
|-
|
|asymptotically tight bound
|
|}
Here "lim sup" and "lim inf" denote
limit superior and
limit inferior. When the limit exists, it is the same as both the lim sup and lim inf.
(A mnemonic for these Greek letters is that "omicron" can be read "o-micron", i.e., "o-
small", whereas "omega" can be read "o-mega" or "o-
big".)
The relation
is read as "
is little-oh of
". Intuitively, it means that
grows much faster than
. Formally, it states that the
limit (mathematics) of
is zero.
Aside from big-O, the notations Θ and Ω are the two most often used in computer science;
the lower-case o is common in mathematics but rarer in computer science. The lower-case ω is rarely used.
In casual use, O is commonly used where Θ is meant, i.e., when a tight estimate is implied.
For example, one might say "
heapsort is (
) in the
average case" when the intended meaning was "
heapsort is
in the average case". Both statements are true,
but the latter is a stronger claim.
Another notation sometimes used in computer science is Õ (read
Soft-O).
is shorthand
for
for some
k. Essentially, it is Big-O, ignoring logarithmic factors.
This notation is often used to describe a class of "nitpicking" estimates (since
is always
for any constant
).
Big O and little o
The following properties can be useful:
-
-
-
- (and thus the above properties apply with most combinations of o and O). Multiple variables
Big O (and little o, and Ω...) can also be used with multiple variables. For example, the statement
:
asserts that there exist constants
C and
N such that
:
To avoid ambiguity, the running variable should always be specified: the statement
:
is quite different from
:
Graph Theory
It is often useful to bound the running time of
Graph (data structure)|graph algorithms. Unlike most other computational problems, in graphs, there are two relevant parameters describing the size of the input, |V| and |E|; |V| is the number of vertices in the graph, while |E| is the number of edges in the graph. Inside
asymptotic notation (and only there), it is common to use the symbols V and E, when someone really means |V| and |E|. We adopt this convention here to simplify asymptotic functions and make them easily readable. Keep in mind that the symbols V and E are never used inside asymptotic notation with their literal meaning, so there is no risk of ambiguity. For example
.
See also
- Asymptotic notation: similar relations, used in computational complexity
- Asymptotic expansion: approximation of functions generalizing Taylor's formula.
- Nachbin's theorem: a precise way of bounding complex analytic functions so that the domain of convergence of integral transforms can be stated. References
- Marian SlodiÄ?ka. Mathematical Analysis I. University of Ghent, 2004.
- Donald Knuth. The Art of Computer Programming, Volume 1: Fundamental Algorithms, Third Edition. Addison-Wesley, 1997. ISBN 0-201-89683-4. Section 1.2.11: Asymptotic Representations, pp.107–123.
- Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. Introduction to Algorithms, Second Edition. MIT Press and McGraw-Hill, 2001. ISBN 0262032937. Section 3.1: Asymptotic notation, pp.41–50.
- Pages 226–228 of section 7.1: Measuring complexity.
siehe
Big O notation
siehe
Big O notation
*** Shopping-Tip: Big O Notation