Asymptotics Flashcards

1
Q

What happens if f(n) is an element of little o(g(n))?

A

then f(n) is in O(g(n)) but NOT in big Omega(g(n)).

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

What happens if f(n) is in little omega(g(n))?

A

then f(n) is in Big Omega(g(n)) but NOT in big O(g(n)).

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

What is the definition of f(n) being in big O(g(n))?

A

There exist constants c>0 and n_o (natural number) s.t for all n>N_o,
f(n) <= cg(n).

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

What is the definition of f(n) being in Big Omega?

A

There exist constants c>0 and n_o (natural number) s.t for all n>N_o,
f(n) >= cg(n).

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

if lim ₓ→∞ f(n)/g(n) =0 then

A

f(n) ∈ o(g(n)) i.e f(n) ∈ O(g(n)) and NOT f(n) ∈ Ω(g(n)).

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

If lim ₓ→∞ f (n)/g(n) = ∞ then

A

f(n) ∈ ω(g(n)).

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

If lim ₓ→∞ f(n)/g(n) = c>0 then

A

f(n) ∈ θ(g(n))

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