440 views
0 votes
0 votes
Consider f(n) and g(n) be asymptotic non-negative functions.

So here can we say that min(f(n), g(n)) = Θ(f(n) + g(n))

My proof for this

For f(n) = Θ(g(n))

c1*g(n) $\leq $ f(n)  $\leq $ c2*g(n) such that c1, c2 >0

 

Considering the above definition suppose, f(n) = $n^{2}$ and g(n) = $n^{3}$

min($n^{2}$,  $n^{3}$) = $n^{2}$

Now for this we can write like 0.001*($n^{3}$ + $n^{2}$)  $\leq $ $n^{2}$ $\leq $ 1* ($n^{3}$ + $n^{2}$)

 

So thus we can say that  min(f(n), g(n)) = Θ(f(n) + g(n))

Is this the correct way? What would be the correct answer?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
1
GateAspirant999 asked May 4, 2016
1,533 views
How will you perform asymptotic comparison of the following three functions:​1. $\log{n}$,2. $(\log{n})^c$ and3. $\sqrt{n}$Obviously $\log{n} < (\log{n})^c$. But where ...
0 votes
0 votes
1 answer
2
0 votes
0 votes
1 answer
4
Chaitanya Kale asked Nov 10, 2022
294 views
Can we write f(2$^{n/a}$) = Θ(2$^{n}$) for any integer a >0?