I am working on some Big oh questions and I can't seem to get how disprove them. In this case we have:
Prove that $3^n$ is not $O(2^n)$
I can see that its obvious just by looking at the two functions, but I don't know how to prove it. What are the steps one should take to approach to disprove something like this?
Thanks
$a(n)=O(b(n))$ means that there is a bounded function $f$ such that $a(n)=f(n)b(n)$. So if you prove that $\displaystyle{\frac{3^n}{2^n}}$, you are done.
Now,
$$\frac{3^n}{2^n}=\left(\frac{3}{2}\right)^n$$
And $\frac32=1.5>1$. Can you conclude? It may be more obvious if you notice that
$$\left(\frac{3}{2}\right)^{2n}=\left(\frac{9}{4}\right)^{n}>2^n$$