0
  1. $f(n)$ belongs to $\Theta(g(n))$ then it implies that $2^{f(n)}$ belongs to $\Theta(2^{g(n)})$. [True]

  2. $f(n)$ does not belong to $o(g(n))$ and $f(n)$ does not belong to $\omega(g(n))$ then it implies that $f(n)$ belongs to $\Theta(g(n))$- [true]

  3. $f(n)$ belongs to $\mathcal{O}(g(n))$ implies that $g(n)$ belongs to $\mathcal{O}(g(n)+f(n))$ - [cannot prove it]

  4. $a^n=\Theta(b^n)$ , where $b>a$ - [true]

  5. $o(g(n))\cap\omega(g(n)) = \emptyset$ -[ false]

girl101
  • 333