I would to prove the following example:
n^k = O (c^n) for every k and c>1
It is noticeable that the polynomial function grows faster than exponential function. We try to find k0 > 0 satisfying the condition
fn > = k0 * g(n)
Than
n^k <= k0 * c^n
log(n^k) <= log (k0 * c^n)
log(n^(k/n)) <= log (k0 * c)
k0 >= 1/c*n^(k/n)
So, k0 > 0, positive and small enough, while the value of c is irrelevant... Is it OK?