1

I understand the main idea of big-O-notation, yet I have two questions regarding to the following examples:

Prove/Disprove:
1. $2^{2n+1} = O(2^{2n})$
2. $2^n = O(2^{n\over 2})$

Questions:

  1. I looked at the proof showing that the expression equivalent to: $2\cdot 4^n + 3^n = O(4^n)$. Where did the $3^n$ came from?

  2. I understood that this statement is false, so lets assume by contradiction it's true that: ${2^n} \le c \cdot {2^{\frac{n}{2}}}$ for all $n\ge n_0$. What should I do next? dividing by ${2^{\frac{n}{2}}}$ brought me an odd result.

Thanks.

AnnieOK
  • 2,920
  • For 2., you dividing should give you $2^{n/2} \leq c$. Is that what you got? – Darren Mar 09 '14 at 14:41