This is what I have ordered the functions in increasing order of asymptotic growth rates. Also, I have simplified some functions by applying logarithmic rules.
Is this order correct? Or am I missing something?
O( A(n) ) < O( B(n) )
holds iff A(n) / B(n)
approaches 0
when n
goes to infinity.
You can check your table here: https://www.wolframalpha.com/input/?i=limit+log%28log%28n%29%29+%2F+sqrt%28log%28n%29%29%2C+n+to+infinity
For example
log(log(n)) / sqrt(log(n)) -> 0 for n -> inf
Hence O(log(log(n)) < O(sqrt(log(n))
.