11

This a homework question from Udi Manber's book. Any hint would be nice :)

I must show that:

$n(\log_3(n))^5 = O(n^{1.2})$

I tried using Theorem 3.1 of book:

$f(n)^c = O(a^{f(n)})$ (for $c > 0$, $a > 1$)

Substituing:

$(\log_3(n))^5 = O(3^{\log_3(n)}) = O(n) $

but $n(\log_3(n))^5 = O(n\cdot n) = O(n^2) \ne O(n^{1.2})$

Thank you for any help.

Juho
  • 22,554
  • 7
  • 62
  • 115

2 Answers2

14

Do what you did, but let $a = (3^{0.2})$... that should do it, right?

The reason that what you did didn't work is as follows. The big-oh bound is not tight; while the logarithm to the fifth is indeed big-oh of linear functions, it is also big oh of the fifth root function. You need this stronger result (which you can also get from the theorem) to do what you're doing.

Juho
  • 22,554
  • 7
  • 62
  • 115
Patrick87
  • 12,824
  • 1
  • 44
  • 76
  • 2
    In fact, for any $\epsilon >0$, $n \log^c n = O(n^{1+\epsilon})$ – Ran G. Apr 02 '12 at 01:28
  • @RanG. Yes, that is a direct consequence of the theorem. – Patrick87 Apr 02 '12 at 03:16
  • @AndreResende If my answer helped you solve your problem, and it makes sense, you can "accept" using the green check mark. It helps others see what worked for you, and might help you get more help in the future. Of course, if you'd like other answers, hold out. – Patrick87 Apr 02 '12 at 03:19
5

Another way to think about it more intuitively, is to see that the main thing you have to show is that $(\log_3(n))^5$ is $O(n^{0.2})$, or equivalently that $\log_3(n)$ is $O(n^{0.04})$. Logs always grow slower than any constant power of n, no matter how small.

If you want to formalize the last sentence, then you can use theorem 3 with a sufficiently small $\alpha$ as @RanG mentions in the comment on @Patrick87's answer.

Artem Kaznatcheev
  • 4,862
  • 2
  • 27
  • 57