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.
この1つの問題で困っています
9n <= cn^3
基本的に私は降りることができます
9/c <= n^2
しかし、どうすれば残りを解決できますか?
の定義little oは
little o
私たちは言いf(x)=o(g(x))ます。
f(x)=o(g(x))
f(x)=9*x および g(x)=c*x^3 とします。c は正の定数です。x が無限大になる傾向があるとき、f(x)/g(x) は 0 になる傾向がありますf(x)=o(g(x))。
n の値が大きい場合、n.so の値が十分に大きい場合、漸近的な表記法が適用されます。
9n << cn^3
すべての c>0 に対して。