1,373 views

3 Answers

1 votes
1 votes

Substitute logn = t .

equation becomes t^(1/2) = O(logt).

clearly a polynomial term cannot be upper bounded by a logarithmic term.

FALSE

0 votes
0 votes

f(n) = √(logn)  &  g(n) = log(logn)

let n = 22^10 

f(n) = √(log22^10) = √210 = 25

g(n) = log(log22^10) = log(210) = 10

Thus, g(n) < f(n) so (loglogn) = O(logn)1/2 

Thus, (logn)1/2=O(loglogn) is FALSE                    

Related questions

0 votes
0 votes
0 answers
1
1 votes
1 votes
1 answer
2
rude asked Jun 1, 2016
513 views
I was surfing internet and I got this beautiful Problem, I thought i should post here.
1 votes
1 votes
2 answers
3
Banti Arya asked Dec 5, 2015
515 views
i geeting ans 1 and 2 are true but ans given only 2 is true explain it
0 votes
0 votes
1 answer
4
Nishikant kumar asked Sep 29, 2015
529 views
T1(n)=O(f(n))T2(n)=O(f(n))then check T/F?.T1(n)+T2(n)=O(f(n)).T1(n)=O(T2(n)).T1(n)=$\omega$(T2(n)).T1(n)=${\color{Red} \Theta }$(T2(n))