Tagged Questions

Big-Theta is an asymptotic notatation which means that a function is loosely bounded from above and from below by another function. In other words, a function f is Big-Theta of a function g if f is Big-Oh of g and Big-Omega of g.

learn more… | top users | synonyms

74
votes
5answers
9k views

What is the difference between Θ(n) and O(n)?

Sometimes I see Θ(n) with the strange Θ symbol with something in the middle of it, and sometimes just O(n). Is it just laziness of typing because nobody knows how to type this symbol, or does it mean ...
7
votes
2answers
252 views

f(n)=n^log(n) complexity polynomial or exponential

I'm trying to figure out whether f(n)=n^(logb(n)) is in Theta(n^k) and therefore grows polynomial or in Theta(k^n) and therefore grows exponentially. First I tried to simplify the function: f(n) = ...
5
votes
2answers
2k views

Solving a recurrence T(n) = 2T(n/2) + n^4

I am studying using the MIT Courseware and the CLRS book Introduction to Algorithms. I am currently trying to solve the recurrence (from page 107) T(n) = 2T(n/2) + n4 If I make a recurrence ...
4
votes
2answers
184 views

How to determine if a function f is in theta(g)

Full disclosure: This is a homework problem. I'm honestly freaking out a little that it's evaded me for so long when it seems so simple. Okay, the question is, f(n) = n^2*log(n), g(n) = n^2.1. Is f ...
4
votes
4answers
3k views

Difference between lower bound and tight bound?

With the reference of this answer, what is Theta (tight bound)? Omega is lower bound, quite understood, the minimum time an algorithm may take. And we know Big-O is for upper bound, means the maximum ...
3
votes
5answers
581 views

How to calculate worst case analysis of this algorithm?

sum = 0; for(int i = 0; i < N; i++) for(int j = i; j >= 0; j--) sum++; From what I understand, the first line is 1 operation, 2nd line is (i+1) operations, 3rd line is (i-1) ...
2
votes
1answer
64 views

Big Theta Run Time on Double Nested For

I'm trying to nail down a Big Theta run time on a double nested for loop that's a little fancier than your regular Θ(n2) double loop. for i=0..n do for j=0..i do // some O(1) work end ...
2
votes
2answers
176 views

Solving for Ω, and Θ (O, Omega and Theta notations)

I have solved a recurrence relation that has a running time of Θ(2^n), exponential time. How do I find Ω, and O for the same recurrence relation. I guess if it is Θ(2^n), it should also be O(2^n), ...
2
votes
2answers
109 views

Compression Algorithm for Small Amounts of Data

I have a server-side program that generates JSON for a client. A few of my colleagues have suggested using zip/gzip compression in order to reduce the amount of data that sending over the wire. ...
2
votes
1answer
217 views

Confused on whether to express time complexity with theta notation or Big Oh notation

How to decide on expressing time complexity of algorithm ? Should we choose to express time complexity in terms of O(n) or theta(n) ? Because a function f(n) can be expressed as either Big-Oh(g(n)) ...
1
vote
0answers
81 views

Big Theta Notation and Selection Sort

What would be the best-case and worst-case complexity in Big-Theta (T) notation of the selection sort algorithm when the array grows by repeatedly appending a 19? For instance: [ 19, 13, 7, 19, 12, ...
1
vote
2answers
132 views

Big Theta problem

I have two functions: f(n) = 2; g(n) = 10 ^ 100; I have to justify if f(n) = BigTheta(g(n)) or not. My guess is that f(n) is BigTheta(g(n)), since both functions are constants (wich means the ...
1
vote
1answer
556 views

Big-O notation's definition

I really want to know real definition. I have tried to read a book but couldn't understood. O : Big-O notation worst case. Θ : Theta notation average case. Ω : Omega notation best case. Q1> But ...
1
vote
0answers
110 views

Asymptotic runtime question

If f(n) is Θ(g(n)), then the function 2^(f(n)) is always Θ(2^(g(n))). Is this statement true or false, and why?
1
vote
2answers
1k views

Proving that a function f(n) belongs to a Big-Theta(g(n))

Its a exercise that ask to indicate the class Big-Theta(g(n)) the functions belongs to and to prove the assertion. In this case f(n) = (n^2+1)^10 By definition f(n) E Big-Theta(g(n)) <=> c1*g(n) ...
0
votes
0answers
28 views

Big theta geometric series

I have a question about geometric series why is 'g(n) = 1+c+c^2+....+c^n'' = Θ(c^n) if c>1 I understand why it is big-Θ(n) if c = 1 and it is big-Θ(1) if c <1. But I just can't figure out why it ...
0
votes
1answer
66 views

Data structure log(n/i) =? [closed]

Is the sum from i=1 to n for log(n/i) = Θ(n)? I'm studying for a test and appreciate your help. This is what i did: sum ( from i=1 to n ) log (n/i) = sum ( from i=1 to n ...
0
votes
3answers
230 views

How to calculate big-theta

can some one provide me a real time example for how to calculate big theta is big theta some thing like average case, (min-max)/2 i mean (minimum time - big O)/2 Please correct me if Iam wrong, ...
0
votes
1answer
181 views

Determining time complexity of for loops

I know that this loop is O(n^2) but what is Big-Omega and Big-Theta? How do you go about calculating them in situations like these? for(i = 0; i < array.length; i++) for (j = 0; j < ...