1

I need to find a function $f$ which is in $o(\log^{k} n)$ for fixed value of $k$ with $f = \omega(1)$. I know that for little $o$ the function should be strictly less than $c\log^k n$ for all $c$ and large enough $n$; and for little $\omega$ it should be strictly greater than $c\cdot 1$ for all $c$ and large enough $n$, but I am stuck here. How does one usually solve such type of problems?

David Richerby
  • 81,689
  • 26
  • 141
  • 235

1 Answers1

0

Hint: Try $f(n) = \log\log n$.

Yuval Filmus
  • 276,994
  • 27
  • 311
  • 503
  • well i dont think it will satisfy ω(1). the value will be less than 1. we wont it strictly greater than it. – Rahul Mehrotra Apr 06 '14 at 23:24
  • @Rahul As it happens, this $f$ is a solution to your question. Go over the definitions again. The condition $f = \omega(1)$ is the same as $\lim_{n\to\infty} f(n) = \infty$, which is certainly satisfied by my $f$. – Yuval Filmus Apr 07 '14 at 01:52