I am trying to determine if this statement is correct or not:
Every function f satisfies f(2n) = Θ(f(n))
Where, as I understand it, $f(2n)$ cannot be bounded by $f(n)$, as:
f(n) ≤ f(2n)
Since $2n$ is twice that of $n$, making me think that simply by definition of being multiplied by $2$, it will encapsulate $f(n)$.
So does this mean that $f(2n)$ cannot be bounded by $f(n)$, (since something cannot be bounded by the thing it is already greater than?)
Hint: Let $f(x)=2^x$. The function $2^{2n}$ grows far faster than $2^n$.