I need to prove that $$\forall \epsilon >0 \quad log(log(n)) = O(log^\epsilon(n))$$.
I started by citing a known result which is (*)
$$\forall \epsilon >0 \quad log(n) = O(n^\epsilon)$$
Then we can say that $\exists n_0, c$ such that $\forall n>n_0 \quad log(n) \leq c \cdot n^\epsilon$
Then continued with applying $log(n)$ function on the above inequality (since $log(n)$ is monotone the inequality remains)
$log(log(n)) \leq log(c) + log(n^\epsilon)$
Since $log(n)$ is unbound and approaches infinity we can say that $\exists k$ such that $log(c) + log(n^\epsilon) \leq k \cdot log(n^\epsilon)$
So to conclude we arrived at $log(log(n)) \leq k \cdot log(n^\epsilon)$
Not sure how to continue and if what I have done so far is on the right path.
EDIT: Is it valid to substitute $n$ with $log(t)$ and immediately prove this claim (using *)?
$\log$for $\log$. – Shaun Nov 05 '20 at 15:56