Possible Duplicate:
If f(n) = O(g(n)) , then is exp(f(n)) = O(exp(g(n)))
I stumbled upon this question in the Cormen book.
If f(n) is O (g(n)) then 2^f(n) is also O (2^g(n)). Is this true? I was trying to prove it using limit rules but totally stuck. My instincts are saying it is false but how can we deduce that?
Thanks