Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何证明 F(n)= Theta(T(n))?我无法将 theta 符号放在问题中。我知道theta意味着相等?
证明 F(n) = O(T(n)) 并且 F(n) = Omega(T(n))。
你应该用 Theta 的定义证明这个函数。也就是说如果lim(F(n)/T(n))=c(如果n->mega),那就意味着Theta
读一读“数学归纳法证明” 所以你说,如果某事对 k=1,2...n 成立,然后 n+1,那么它对所有 n 成立。有一本好书叫做“证明的具体细节”,它展示了这种方法。