I have noticed that big-O of 1000n or 10n is the same thing as O(n), but big-O of 2^n and 3^n are different: O(2^n) and O(3^n), what I don\'t get is why can\'t we ignore the con
Eventhough for the original asker this might not be of use anymore,
I think it can be approached in an easier way.
Basic defenition of O-notation: iff f(g) would be in O(g(n)),
then there exist a rational number c, for which it holds that f(g) = c * g(n), for n >= n0
(n0 being a number that you pick yourself)
Let's try to apply this for 3^n in O(2^n)
3^n = 2^n * c
3^n = 2^n * (3^n / 2^n)
3^n = 2^n * (3/2)^n
3^n = 2^n * 1.5^n
this means that c = 1.5^n which is not a rational number, but an exponential function on its own.
On the other hand, following the same for 3^n in O(2^n), we would get 2^n <= 3^n * (2/3)^n
This might seem like a conflict, until you realise that 0.75^n < 1 for all n > 0, which means that if you take any c > 1, it will be larger than 0.67^n from n = 0