I've been reading up on the Master Theorem (used for identifying the worst case run times of a certain class of recursive functions [ the divide and conquer type] ).
I looked at the Wikipedia entry and in the Inadmissible section (functions for which the Master Theorem is not applicable), this function was present:
$ T(n) = 2 T (\frac{n}{2}) + \frac{n}{logn} $
I get how it's inadmissible because the value of $ k $ is less than $ 0 $. What I don't get is the justification for this. Why would you have to get the difference between $ f(n) $ and $ n^{log_bn} $? What does this tell you?
Also, is there a way sans master theorem in which I can easily size up a reasonable upper bound for a function like this?
Thanks a bunch!