1

I'm trying to prove that c2n = o((loglog n)n) (That's little-o) for any constant c. I understand that we can prove one function grows at a smaller rate than the other by taking the limit as n approaches infinity, and I can very easily pick some arbitrary integer value for c and show that indeed ((loglog n)n) grows at a faster rate. But how do I prove this to be true for any constant c?

4

1 回答 1

2

你想证明对于任何 c 的选择,

lim n → ∞ (c 2n / (log log n) n ) = 0

请注意,对于 c 的任何选择,

lim n → ∞ (c 2n / (log log n) n )

= lim n → ∞ (c 2 / log log n) n

此限制为 0,因为一旦 log log n > c 2,您将提高小于 1 的 n 次方的值,该值将迅速降至零。

希望这可以帮助!

于 2014-09-02T01:00:05.390 回答