I'm having trouble with the following exercise:
Prove that if $f$ and $g$ are positive functions, $f(n)$ is $O(g(n))$ and $g(n) > 1 + ε$ for sufficiently big $n$, then $\log(f(n))$ is $O(\log(g(n)))$.
This is what I've done:
$f(n)$ is $O(g(n)) \implies \exists n_0$ such that for all $n>n_0 $ it holds that $f(n) < cg(n) $ for some positive constant $c \implies \log (f(n)) < \log(cg(n)) = \log(c) + \log(g(n)) $
That's where I'm stuck. I'd appreciate any suggestions!