We learned more of boundings of functions this week. Since, there exist of an upper bound(big O) there should be lower bound for function. This lower bound is called big omega(Ω) and in symbolic form, it is written as
This definition is saying g grows at least as fast as f thus it is lower bound.
The most important part of Big-Omega is also finding c and b that satisfies the inequality.
Let c = __
Let B = __
Assume n ∈ N
Assume n >= B
.
. #playing around number until I get f(n)>=c g(n)
Then f(n)>=c g(n)
Then n>= B ->f(n)>=c g(n)
Then ∃ c ∈ R+ ∃ B ∈ N ∀n ∈ N n>=B -> f(n)>=c g(n)
I like how you give the structure of the big-omega proof. Looks great! It helped me, too. Thanks!
ReplyDelete