-1

Is $\mathcal{O}(3^{n/2})$ equal to $\mathcal{O}(3^n)$? I am not sure how the growth of exponentials with fractions.

LuxuryWaffles
  • 105
  • 1
  • 5

1 Answers1

2

Remember that $a^{b\cdot c}=(a^b)^c$. So e.g. $3^{n\over 2}=3^{n\cdot{1\over 2}}=(3^{1\over 2})^n$.

Now if $0<u<v$, what do you know about the growth rates of $u^n$ versus $v^n$?

Noah Schweber
  • 245,398