retagged by
1,583 views

1 Answer

Best answer
5 votes
5 votes

f(n) = O(g(n)) if f(n) <= c.g(n)

f(n) = Ώ(g(n)) if f(n) >= c.g(n)

therefore there is possibility of intersection there for option b,c,d will not be empty 

but 

f(n) = o(g(n)) if f(n) < c.g(n)

f(n) = ω(g(n)) if f(n) > c.g(n)

there is no possiblity of intersection therefore it will be empty

Answer is A

selected by
Answer:

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
1 answer
2
0 votes
0 votes
1 answer
3
Nishikant kumar asked Jul 17, 2015
462 views
Let $f(n)=\Omega(n), g(n)=O(n)$ and $h(n)=\Theta(n)$. Then $g(n)+f(n).h(n)=$...................$\Omega(n)$$\Omega(n^2)$$\Theta(n)$$\Theta(n^2)$
0 votes
0 votes
2 answers
4