In this table the two expressions $f(n)=\Theta(g(n))$ ("$f$ is bounded both above and below by g asymptotically") and $f(n)\sim g(n)$ ("$f$ is equal to $g$ asymptotically") are written in two separate lines. But am I write that they mean the same thing?
2026-03-26 01:11:01.1774487461
$f(n)=\Theta(g(n))\iff f(n)\sim g(n)$?
57 Views Asked by user401895 https://math.techqa.club/user/user401895/detail At
3
No. Constants matter.
For instance, $f(x) = x$ and $g(x)=2x$ satisfy $f(n) =\Theta(g(n))$ (for $n\to\infty$), but we do not have $$ f(n) \operatorname*{\sim}_{n\to\infty} g(n)\,, $$ which would mean $\lim_{n\to\infty} \frac{f(n)}{g(n)}=1$. We do have $$ f(n) \operatorname*{\sim}_{n\to\infty} \frac{1}{2}g(n)\,. $$
In short: $\sim$ is more refined, a strictly stronger statement. You have one implication of what you wrote, but not the equivalence.