121 Week 15 - Big Ω and Θ Notations Flashcards

1
Q

Formal definition of Big O

A

A function T(n) ∈ O( f(n) ) if there exists positive constants M and n0 such that for all n≥n0:
T(n) ≤ M * f(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Meaning of Big O

A

The upper bound on growth rate of function - the worst case.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Formal definition of Big Ω

A

A function T(n) ∈ Ω( f(n) ) if there exists positive constants M and n0 such that for all n≥n0:
T(n) ≥ M*f(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Meaning of Big Ω

A

The lower bound on growth rate of function - the best case.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Formal definition of Big Θ

A

A function T(n) ∈ Θ( f(n) ) if there exists positive constants M1, M2 and n0 such that for all n≥n0:
M1f(n) ≤ T(n) ≤ M2f(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Meaning of Big Θ

A

The tight bound on growth rate of a function - it is the best case out of all the worst cases.
f(n) can be both an upper and lower bound for T(n) depending on the value of M it is multiplied by. M1f(n) is the lower bound, M2f(n) is the upper bound.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are Big O, Big Ω and Big Θ for a best case input for linear search

A

O(1) - At most, it takes constant time.
Ω(1) - It will always take at least 1 comparison.
Θ(1) - Since best case performance is exactly constant, we have a tight bound.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are Big O, Big Ω and Big Θ for a worst case input for linear search

A

O(N) - At most, it takes n comparisons in the worst case.
Ω(N) - It takes at least n comparisons.
Θ(N) - Since worst-case performance is exactly linear, we have a tight bound.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are Big O, Big Ω and Big Θ for an average case input for linear search

A

O(N) - The average case will never exceed linear time.
Ω(N) - It takes at least n/2 comparisons on average, which is still linear.
Θ(N) - The function grows linearly in expectation, so we have a tight bound.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly