I saw this relationship in my exercise. max{n,k}= Ө(n+k) Could somebody prove it?
Asked
Active
Viewed 43 times
0
-
Use the definitions. Be mindful of what $n$, $k$ mean here, and how the definition of $\Theta$ extends to two parameters. (Hint: it doesn't, really.) – Raphael Oct 10 '18 at 06:15
1 Answers
2
Assuming n and k to be non-negative,
$n\leq n+k$ and $k\leq n+k$. Hence,$\max(n, k) \in \mathcal{O}(n+k)$.
Next, $n+k≤2\max(n,k)$. Hence, $\max(n,k)\in\mathcal{\Omega}(n+k)$.
Hence, we get that $\max(n,k)\in \mathcal{\Theta}(n+k)$.

Arka Pal
- 311
- 1
- 7