Whether the little-o is tight upper bound or strict upper bound?
Correct the answer below if wrong,
g(x)
is an upper bound for f(x)
that is not asymptotically tight.
There is a much larger gap between the growth rates of f and g
if f ∈ o(g)
than if f ∈ O(g)
.
Big-O is to little-o as ≤ is to <. big-O is an inclusive upper bound, while little-o is a strict upper bound.
Isn't it enough to guarantee a strict upper bound?