Quiz on Asymptotic Notation and Recurrence Relations

$\log \log n = O(\sqrt{\log n})$

$n^{0.99} \log n = O(n)$

$3n^4 + n^2 \neq \Theta(n^3)$

$\sum_{i=10}^{\lceil 10\sqrt{n} \rceil} i \ge \Omega(n)$

$f(n) = O(g(n))$ if and only if $g(n) = \Omega(f(n))$.