I’m just trying to understand how in little o notation this is true:
f(n)/g(n) as n goes to infinity = 0?
Can someone explain that to me?
I do get the idea that f(n) = o(g(n)) means that f(n) grows no faster then cg(n) for all constants c > 0.
I just don’t get the bit in bold above.
http://en.wikipedia.org/wiki/Little_o_notation#Little-o_notation
You’ve left something out, namely your definitions for
fandg.It would appear that the precondition for the bolded statement is
g(n) in o(f(n)).According to the Wikipedia article,
f(n) = o(g(n))means thatfgrows slower thancg(n)for all positive constants. Sof(n)is not ino(f(n)).