-2

I have 2 doubts:-

1) Is (log* n)^n = O((logn)!) ?

2) Which is bigger, log(log* n) or log*(logn) ?

templatetypedef
  • 362,284
  • 104
  • 897
  • 1,065
Zephyr
  • 1,521
  • 3
  • 22
  • 42

1 Answers1

5

For 2), you have log*(log n) = log*(n)-1. Then let m = log*(n). You have m-1 > log(m) for sufficiently large m.


Hint:

For 1), let m = log*(n). Then the LHS is m^n, and the RHS is the factorial of the logarithm of an exponential tower of height m, i.e. the factorial of an exponential tower of height m-1.

Even disregarding the factorial, an exponential tower should grow much faster than a power.