-2

I have 2 doubts:-

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

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

templatetypedef
  • 328,018
  • 92
  • 813
  • 992
Zephyr
  • 1,313
  • 3
  • 16
  • 33

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.

Yves Daoust
  • 48,767
  • 8
  • 39
  • 84