/
Fundamentals of Algorithms Fundamentals of Algorithms

Fundamentals of Algorithms - PowerPoint Presentation

aaron
aaron . @aaron
Follow
359 views
Uploaded On 2018-03-07

Fundamentals of Algorithms - PPT Presentation

MCS 2 Lecture 9 Asymptotic Notations Onotation is used to state only the asymptotic upper bounds The function fn is Ogn If there exist a positive real constant c and a positive integer n ID: 641272

growth rate notation function rate growth function notation big positive theta asymptotic exist functions asymptotically omega notations upper small

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Fundamentals of Algorithms" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Fundamentals of Algorithms

MCS - 2

Lecture # 9Slide2

Asymptotic NotationsSlide3

O-notation is used to state only the asymptotic upper bounds.

The function

f(n) is O(g(n)) If,there exist a positive real constant c and a positive integer n0such that f(n) ≤ cg(n) for all n > n0 It is pronounced as f(n) is Big Oh of g(n))Intuitively: Set of all functions whose rate of growth is the same as or lower than that of g(n).So f(n) = O(g(n)), if f(n) grows with same rate or slower than g(n).g(n) is an asymptotic upper bound for f(n).Beyond some certain point (n0), and when n becomes very large, g(n) will always be greater than f(n). So here f(n) is called UPPER BOUNDING FUNCTION.

Big Oh / O NotationSlide4

Big Omega /  -Notation

-notation is used to state only the asymptotic lower bounds.

The function f(n) is

(g(n)) If,

there exist a positive real constant c and a positive integer n

0

such that f(n)

cg(n) for all n > n

0

It is pronounced as f(n) is Big Omega of g(n))

Intuitively:

Set of all functions whose rate of growth is the same as or greater than that of g(n).

So f(n) =

(g(n)), if f(n) grows with same rate or higher than g(n)

g(n) is an asymptotic lower bound for f(n).

Beyond some certain point (n

0

), and when n becomes very large,

g(n

)

will

always

be less than

f(n

).

So here f(n) is called

LOWER BOUNDING FUNCTION.

Ω is the

inverse of

/ complementary to Big-Oh.Slide5

Theta () notation

For non-negative functions,

f(n) and g(n), f(n) is theta of g(n) if and only if f(n) = O(g(n)) and f(n) = Ω(g(n)).f(n) is theta of g(n) and it is denoted as "f(n) = Θ(g(n))".For function g(n), we define (g(n)), big-Theta of n, as the set g(n) is an asymptotically tight bound for f(n). Basically the function, f(n) is bounded both from the top and bottom by the same function, g(n).

if f(n) is Θ(g(n)) then both the functions have the same rate of growth.Beyond some certain point (n0), and when n becomes very large, f(n) and g(n) will always be equivalent in some sense. So here f(n) is called ORDER FUNCTION.

n

0

is minimum possible valueSlide6

3 Notations

Big-O notation

O(g(n))= { f(n) | there exist positive constants c and n0 such that 0 ≤ f(n) ≤ cg(n) For all n ≥ n0 }Big-Ω notation Ω(g(n))= { f(n) | there exist positive constants c and n0 such that 0 ≥ f(n) ≥ cg(n) For all n ≥ n0 }Θ notation Θ(g(n))= { f(n) | there exist positive constants c1,c2 and n0 such that 0 ≤ c1

g(n) ≤ f(n) ≤ c2g(n) For all n ≥ n0 }Slide7

More Notations

There are also small-oh and small-omega (ω) notations representing loose upper and loose lower bounds of a function.

f(x) = o(g(x)) (small-oh) means that the growth rate of f(x) is asymptotically less than the growth rate of g(x).f(x) = ω(g(x)) (small-omega) means that the growth rate of f(x) is asymptotically greater than the growth rate of g(x)f(x) = Θ(g(x)) (theta) means that the growth rate of f(x) is asymptotically equal to the growth rate of g(x)Slide8

Good Luck !