edited by
2,899 views
0 0 votes

Consider $f(n), g(n)$ and $h(n)$ be function defined as follows:
\[
\begin{array}{l}
f(n)=\Omega\left(n^{3}\right) \\
g(n)=O\left(n^{2}\right) \\
h(n)=\Theta\left(n^{2}\right)
\end{array}
\]

Which of the following represents correct asymptotic solution for $f(n)+[g(n) \times h(n)] ?$

  1. $\Omega\left(n^{4}\right)$
  2. $O\left(n^{4}\right)$
  3. $\Theta\left(n^{4}\right)$
  4. $O\left(n^{3}\right)$

2 Answers

0 0 votes
is option B) is the answer???
0 0 votes
The correct answer is B

Let assume f(n) = n ^ 4

                   g(n) = n ^ 2

                  f(n) = n ^ 2

after putting these values, you will get the answer.

Someone can say that it will fail for f(n) = n^5. But see the interesting answer it  will work for  f(n) = n ^ 3 and f(n) = n ^ 4 But if you see the other option they will fail more easily like option A for f(n) = n ^ 3 , g(n) = n , h(n) = n ^ 2. similarly you can find for the others. So I think the correct answer is B.
Answer:
Position:
Show:

Related questions

0 0 votes
1 1 answer
959
959 views
gate_forum asked Jan 13, 2019
959 views
O(n)O(Log n)O(Log log n)none
0 0 votes
1 1 answer
746
746 views
KISHALAY DAS asked Nov 12, 2016
746 views
Will it be B or D?' $\Omega$ ' is an asymptotic notation which specifiesUpper boundLower boundTight upper boundTight lower bound
3 3 votes
3 answers 3 answers
1.3k
1.3k views
Sayan Das 1 asked Sep 21, 2016
1,278 views
Which of the following statement is true for the given function?\[\begin{array}{l}\mathrm{f}(\mathrm{n})=\mathrm{n}^{.0000001} \\\mathrm{~g}(\mathrm{n})=\log _{2} \mathrm...
2 2 votes
1 1 answer
924
924 views
92komal asked Jan 26, 2018
924 views
plz help me . how to solve that type of questionQ. 1Consider $f(n), g(n)$ and $h(n)$ be function defined as follows:\[\begin{array}{l}f(n)=\Omega\left(n^{3}\right) \\g(n)...