大欧米茄表示法证明

时间:2011-12-14 12:24:04

标签: complexity-theory

显示3n ^ 2 - 25n =Ω(n ^ 2)

For n ≥ n / 2           for n ≥ 0
    n – 25/3 ≥ 3n / (2 x 25)    for n ≥ 9
    3n^2 - 25n ≥ 9n^2 / 50      for n ≥ 9

    3n2 - 25n ≥ c·n2 for n ≥ n0 where c=9 / 50 and n0 = 9
Therefore, by definition
      3n2 - 25n = Ω(n2).

以上是3n ^ 2 - 25n =Ω(n ^ 2)的证明。

为什么要使用n≥n/ 2

n - 25/3≥3n/(2 x 25)是如何得出的?

1 个答案:

答案 0 :(得分:0)

我不确定为什么我们需要n> = n / 2。我们需要的是n> = 0 => n * 3> = 0,因此我们可以将第一个不等式乘以两侧的3 * n。

(1)n - 25 /3≥3n/(2×25)是一个简单的线性不等式。通过一些转变我们得到:

(1)< => (47/50)* n - 25/3> = 0< => (47/50) n> = 25/3< => n> =(25/3)(50/47)< => n> = 1250/141< => n> = 8 + 122/141

从上面我们得到的是,这种不等式适用于所有n> = 9> 8 + 122/141。这只是你可以用来证明这个巨大的欧米茄符号的不平等之一。希望我的回答有所帮助。