1
$\begingroup$

I know that, $\max(m, n) = O(m+n)$.

But my teacher uses, $$m+n=\Theta(\max\{m, n\}).$$

Anyone explain me why the above expression is true.

$\endgroup$

1 Answer 1

5
$\begingroup$

For $n,m \geq 0$ we have:

$$ \max(n, m) \ \leq \ m + n \ \leq \ 2\cdot \max(n,m) \ .$$

Now, $\max(n, m) =\Theta(\max(n, m))$ and $2\max(n, m) = \Theta(\max(n, m))$, so also the middle term is $\Theta(\max(n, m))$.

$\endgroup$

Not the answer you're looking for? Browse other questions tagged or ask your own question.