What is $\log (\frac{\log n}{\log \log n})?$
The end result that I'm trying to reach is $\log \log n$. I'm not sure whether this is correct, because I found a rule that states that $\log (\frac{x}{y}) = \log x - \log y$, so according to this rule the result should be $\log (\frac{\log n}{\log \log n}) = \log \log n - \log \log \log n$, which is not equal to $\log \log n$.
To put things into perspective, at the beginning we have an equation $x(n) = \Omega \left( \frac{\log n}{\log \log n} \right)$. Then we apply the $f(n) = \Omega (g(n)) \Rightarrow f(n) \geq cg(n)$ theorem, but we take $\log$, so the theorem is $\log f(n) \geq \log g(n) + \log c$. After applying the theorem to our equation we are left with $\log x(n) \geq \log \log n - 1$. What I'm not sure about is where did we get the $\log \log n$ from. Is it somehow possible to take $\log$s with the $\Omega$ notation equation itself?
Thank you for any help in advance, I seem to be pretty confused about this.