Can someone help me understand this question? I may have it on my tomorrow exam but I can't find similar question on internet or in my lectures.

|
|
First you need to express each function as a |
|||||||||||
|
|
First, you have to calculate the Theta notations by determing the growths-class of each function, e.G. 1, log(n), n, n log(n) and so on. To do that you have of course to expand those functions. Having the growths-class of each function you have to order them by their goodness. Last, you have to put these functions into relations, like g1 = omega(g2). Therefore just keep in mind that a function t(n) is said to be in omega(g(n)) if t(n) is bounded below by some multiple of g(n), e.G. n³ >= n² and therefore n³ is elemnt of omega(n²). This can also be written as n³ = omega(n²) |
|||||||||
|
|
For theta, this answer and that one summarize what is to be found in your problem. Which g function can you find such that (say f is one of your 8 functions above)
For instance, for the |
||||
|
|
|
You need to understand that all big O and Big Omega and Big theta apply for worse/best/average case for some function: Big O -> O(..) is the upper limit this function will never exceed .. e.g. for higher values Big Omega -> is the lower pound the function never goes below it .e.g in small values Big theta is like: there are 2 constants such that: Big omega * c < Big Theta < Big O *c2 so going to your sample: i) its of order n^4 for both Big Omega, and O(n^ + n). viii) its constant so both Obig O and big Omega the same.. thus big Theta the same |
|||
|
|