函数是 f(x) = x^2+x+1
**Upper Bound** when x>0, x^2 >= x^2 similarly, x >= x^2 and, 1 >= x^2
therefore, f(x)=x^2+x+1 >= x^2+x^2+x^2 (all sufficient large value of x)
>= 3x^2 , where c=3
f(x)= O(x^2)
**Lower Bound** f(x)=x^2+x+1 >= x^2 f(x) = Ω(x^2)
> 但是我们可以把它的下限写成 Ω(x) 和 Ω(1) 因为
f(x)=x^2+x+1 >= x (all sufficient large value of x) f(x) = Ω(x) ??
和
f(x)=x^2+x+1 >= 1 (all sufficient large value of x) f(x) = Ω(1) ?????