I have some examples for both Asymptotic Bounds: Upper and Lower and I can't understand why we are considering the dominant terms or the n terms in each of them. Can someone please explain them to me?
Asymptotic Upper Bound:
12n^3 + 8n + 20 = O(n^3)
12n^3 + 8n + 20 = O(n^5) [ I think it should be 12n^5 ]
Asymptotic Lower Bound:
12n^3 + 8n + 20 = Omega(n^3)
12n^3 + 8n + 20 = Omega(n)
I read upon the definitions but cannot understand why it changes in the lower bound and why it is like in the upper bound.