0

Given the following function,
$$f(n)=\prod_2^n \log i. $$ How can I find $f(n)=\Omega (?)$ and $f(n)=O(?)$ ?

I tried to do it, but I have no idea how to do it ..

Software_t
  • 153
  • 5
  • You always have $f(n) = \Omega(f(n))$ and $f(n) = O(f(n))$. – Yuval Filmus Apr 09 '17 at 15:50
  • Oh yes, this is the "trivial solution", the intention was for something different. Namely, "?"= need to be "simple function" ... for example: $n$ , $nlog(n)$ , $n^2log(n)$ ... – Software_t Apr 09 '17 at 16:02
  • 2
  • This looks like a pure math question to me. Is there any reason why it is best answered by computer scientists, or needs a computer science perspective? If so, please edit the question to clarify. Otherwise, this might be better suited for [Math.SE]. 2. You can convert a product to a sum by taking the log; and you can approximate a sum by taking the integral. You might want to give that a try and see where it takes you.
  • – D.W. Apr 09 '17 at 16:04