[MWCS] - 01 - Asymptotics
- asymptotic notation:
- : Big Oh
- : Omega
- asymptotic notation used as:
- large-input algorithm performance assessor
- algorithm success probability assessor
- performance assessed along lines of
- running time of algorithm (time complexity)
- analogously, memory usage by algorithm (space complexity)
- success probability of an algorithm is explored in terms of
- negligible
- noticeable
- overwhelming
case study:
need for asymptotic notation
problem statement
- consider the problem of reading integers from
- a file whose number of lines are not known
- a standard input stream
- the goal is to read these integers into numpy arrays
- numpy arrays used to be of fixed size
- consider this past situation to illustrate need for asymptotic notation
- numpy arrays used to be of fixed size
study process
- two algorithms are studied
- incremental array size increase
- doubling array size as array spaces fill up
analytical time assessment
- for reading lines of integers
- with other symbols as time constants for other parts of the algorithm,
- time taken by each algorithm is analytically derived to be
algorithm 1
algorithm 2
- for large enough number of lines in input, only the terms of the highest order matter, so
-
payoff noticed
- even with taking disparity hits in the constants, the second algorithm would outperform the first algorithm
- 2 seconds (2nd algorithm) to 22 minutes (1st algorithm)
- the first algorithm’s time complexity is parabolic for large inputs
- while the second one’s is linear
Big Oh notation
- Big Oh, denoted by , is a notation for understanding time complexity of an algorithm
- expresses the upper bound for an algorithm’s running time
- as the number of inputs tends to infinity
- hence the name asymptotic notation
- in algorithm #2 above, the upper bound for the runtime is given by
- an this holds only for when
- this time upper bound of algorithm #2 for is expressed in Big Oh notation as
- this is the same as saying “for sufficiently large , ”
- where
- is some constant
- is time taken by algorithm #2 to process lines
- the big O is a measure for how time taken by an algorithm scales when the number of inputs increase for large setts of inputs
formally
- assume two positive functions and
- is the upper bound for ’s runtime
- the notation ( belongs to Big Oh ) means that there exists
- a such that
- a such that
- in whose bounds
mathematical assumptions for Big Oh
- functions are positive
- i.e. functions whose values are real
- function inputs are natural numbers
- and starting from some point
- the function () we are interested in is either
- the run time amount (of algorithm for given input size)
- the memory consumption amount (of algorithm for given input size)
-
specifies the upper limit
-
ignore values of and for small
- ignore constant factors in bounding function in the notation
criteria for Big Oh
criterion 1
- given positive functions and
- if and only if the ratio is bounded for sufficiently large
- i.e. there exists and such that for all
criterion 2
- given positive functions and
- if exists
- then if and only if
- in some cases, criterion 2 cannot be applied since the limit doesn’t exist
- in such cases, ensure ratio is bounded on both sided for sufficiently large
- i.e. check for criterion 1 only, but both less than and greater than
- in such cases, ensure ratio is bounded on both sided for sufficiently large
Big Oh lemma
general lemma
- if and
- then
- if and
- then
- also,
- if
- then
- if and
- then
- if
- then
- if and
- then
common functions lemma
-
- if is a polynomial of degree
-
for any constant real numbers and
-
for any constant real numbers and
-
for any constant real numbers and
- for any constant real numbers
Big Omega notation
- Big Oh notation is to express time taken by algorithm in terms of
- not more than philosophy
- upper bound for time taken
- assess and compare speeds of algorithms
- Big Omega notation is to express time taken by algorithm in terms of
- atleast so much philosophy
- lower bound for time taken
- used in security to ensure encryption algorithms take atleast so much time to break
formally
- assume two positive functions and
- is the lower bound for ’s runtime
- grows asymptotically no slower than
- the notation ( belongs to Big Omega ) means that there exists
- a such that
- a such that
- in whose bounds
- not for Big Oh notation
criteria for Big Omega
- given positive functions and
- if exists
- then if and only if
- unlike for Big Oh notation:
- if and only if
- unlike for Big Oh notation:
Big Oh and Big Omega relationship
- they are tightly related
- if and only if
- keeping this in mind, the lemmas of Big Oh can be extended to Big Omega
- with mathematical modifications