top | item 44422559

(no title)

bluenose69 | 8 months ago

Here's a quote from the SciAm article: "Technically, that equation was t/log(t), but for the numbers involved log(t) is typically negligibly small."

Huh?

discuss

order

asimpletune|8 months ago

I think this means that while Log grows to infinity, it does that so slowly that it can often be treated as if it were a coefficient. Coefficients are ignored in big O notation, hence the negligibly small comment.

fwip|8 months ago

t/log(t) is 'closer to' t than it is to sqrt(t) as t heads toward infinity.

e.g:

    4/log2(4) = 4/2 = 2
    sqrt(4) = 2

    2^32/log2(2^32) = 2^32/32 = 2^27
    sqrt(2^32) = 2^16

tgv|8 months ago

In case someone doesn't like the proof by example, here's a hint: sqrt(t) = t / sqrt(t).

burnt-resistor|8 months ago

Maybe I'm missing context, but that sounds like O(n) or Ω(n).