Can you help for the prove of this question ?
To solve this question you need two things: (1) to know the definitions of big-O and, and (2) to actually understand them, so that they make sense to you. I remember when I first learned about big-O and similar things, the definitions were just strings of symbols. I knew what each symbol meant and I could manipulate them formally, but I had no mental picture. For example, I could not say, "Well, this function grows infinitely, so it looks like it is bounded from below by this other function. Let me now find the actual constants from the definition of
". It takes staring at the definition for some time, trying different examples, etc., before you actually "get it".
So, to start, could you write the definitions of big-O andand describe what your difficulty is?
Big-0(Omega): Let f and g be functions from the set of integer or the set of real numbers to the set of real numbers.We say that f(x) is O(g(x)) if there are constants C and k such that |f(x)|<C|g(x)| where x>k
Big-Theta: Let f and g be functions from the set of integer or the set of real numbers to the set of real numbers.We say that f(x) is Ω (g(x)) if there are positive constants C and k such that |f(x)|>C|g(x)| where x>k
Excellent. Well, the definitions basically say that [with constants
] is the same thing as [
with constants
].
Trivia:is called Omega, where the stress is on the second syllable. It means "O mega", i.e., big O in Greek. This is opposed to "o micron", which is small o. Omicron is written in the same way as latin "o". Big Theta is written
.