edited by
406 views
2 votes
2 votes

Assume that $f(n)$ and $g(n)$ are asymptotically positive. Which of the following is correct?

  1. $f(n)=O(g(n))$ and $g(n)=O(h(n)) \Rightarrow f(n)=\omega(h(n))$
  2. $f(n)=\Omega(g(n))$ and $g(n)=\Omega(h(n)) \Rightarrow f(n)=O(h(n))$
  3. $f(n)=o(g(n))$ and $g(n)=o(h(n)) \Rightarrow f(n)=o(h(n))$
  4. $f(n)=\omega(g(n))$ and $g(n)=\omega(h(n)) \Rightarrow f(n)=\Omega(h(n))$
edited by

1 Answer

0 votes
0 votes
The notation Ω(n) is the formal way to express the lower bound of an algorithm's running time.
It measures the best case time complexity or the best amount of time an algorithm can possibly
take to complete.
For example, for a function f(n)
Ω(f(n)) ≥ { g(n) : there exists c > 0 and n0 such that g(n) ≤ c.f(n) for all n > n0. }
According to Transitive Property
f(n) = o(g(n)) and g(n) = o(h(n)) ⇒ f(n) = o(h(n)) is Correct

Related questions

1 votes
1 votes
0 answers
2
admin asked Oct 23, 2022
951 views
Using $\text{'RSA'}$ algorithm, if $p=13, q=5$ and $e=7$. the value of $d$ and cipher value of $'6'$ with $(e, n)$ key are$7, 4$$7, 1$$7, 46$$55,1$
0 votes
0 votes
1 answer
4
admin asked Oct 23, 2022
323 views
Size and complexity are a part ofPeople MetricsProject MetricsProcess MetricsProduct Metrics