618 views

2 Answers

2 votes
2 votes
its false....say F1=2^2n and F2=2^n

take log on both function we get

F1=2n*log(2) F2=n*log(2).....as (log 2=1..)

we get F1=2n and F2=n.......putting large values for n=1024...

F1=2048 and F2=1024......

means F1 is asymptotically larger than F2...

so given statement is false.
1 votes
1 votes

2^(2n)=O(2^n) is false.

Explanation: We know 

L.H.S= 2^(2n)

         = 2^(n+n)

         =2^n * 2^n

R.H.S= 2^n

Dividing both side by 2^n:

=> 2^n * 2^n=x(2^n)

=> 2^n = x(1)

x is definitely Ώ i.e. small omega.

So, statement: 2^(2n)=O(2^n) is false.

Related questions

53 votes
53 votes
3 answers
1
Kathleen asked Sep 16, 2014
18,725 views
Consider the following three claims:$(n+k)^m = \Theta(n^m)$ where $k$ and $m$ are constants$2^{n+1} = O(2^n)$$2^{2n+1} = O(2^n)$Which of the following claims are correct?...
0 votes
0 votes
2 answers
2
Shashi Shekhar 1 asked Aug 1, 2018
350 views
F(n)=n^(sin n)G(n)=n^(cos n)Why they are non comparable.
0 votes
0 votes
0 answers
3
aka 53 asked Nov 25, 2017
342 views
I wanted to know how θ is derived for a problem. Can we write it directly Example n^4 + n^3+ n^2 Here worst case will be n^4 since it is the term with highest power(wors...
0 votes
0 votes
1 answer
4
Devshree Dubey asked Dec 2, 2016
759 views
Given $f(n)=n^2log n$ AND $g(n)=n(log n)^{10}$Which one of the following is true?$f(n)=O(g(n))$$f(n)=\Omega(g(n))$$f(n)=\theta(g(n))$$\text{We can't compare.}$Kindly work...