logoalt Hacker News

fwipyesterday at 3:40 PM1 replyview on HN

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

Replies

tgvyesterday at 5:52 PM

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