🎯 Asymptotic Notations
O
Big-O
Upper Bound
(At most)
(At most)
Θ
Big-Theta
Tight Bound
(Exactly)
(Exactly)
Ω
Big-Omega
Lower Bound
(At least)
(At least)
📈 Bounding Graphs
O (Upper)
f(n) (Function)
Ω (Lower)
🎮 Quick Challenge
If f(n) = 2n² + 3n + 1, which is the tightest bound?
📚 Understanding Bounds
These notations describe how a function grows relative to another function:
f(n) = O(g(n))
f grows at most as fast as g
(ceiling)
(ceiling)
f(n) = Θ(g(n))
f grows exactly as fast as g
(tight bound)
(tight bound)
f(n) = Ω(g(n))
f grows at least as fast as g
(floor)
(floor)