I am in a Data Structures and Algorithms class. I am trying to indicate if f(n) is Big Theta of g(n). I will also have to indicate Big O, small o, etc... but I am lost about the way to approach this particular pair.
f(n) = log* (log n)
g(n) = log( log* n )
From what I have currently learned, if this pair completes this statement
Θ(g(n))={f(n):there exists c_1, c_2 > 0 and n_0 <br>
such that 0 ≤ c_1 g(n) ≤ f(n) ≤ c_2 g(n) for all n ≥ n_0}.
My problem is that I have no idea what log *
is and how to use it.