3
$\begingroup$

I was graphing $n^{0.01}$ for huge values of $n$ and noticed this function grows incredibly slow, much slower then $\log(n)$ it appeared from the graph. So my initial thought was that

$$n^{0.01}\in\mathcal O(\log(n))$$

$$\log^x(n)\in \mathcal O(n^y)$$

for any fixed constant $x > 0$ and $y > 0$, which made me think my initial thought was wrong. enter image description here

  • 1
    $$lim_{n\to\infty}\frac{n^{0.01}}{\log n}=\infty$$2017-01-12
  • 0
    Powers always grow faster than logarithms, for $n$ sufficiently large.2017-01-12
  • 0
    Try plotting it on a graph, I am looking at my graph, and unless I am doing something wrong, which wouldn't be the first time, looks like at $$10^{42}$$ seems to me that $$log(n)$$ still grows much faster, (i'd post an image of the graph I don't have high enough reputation)2017-01-12
  • 0
    I believe you guys though, I just am having trouble seeing it based off the graphs http://imgur.com/a/xU8TT2017-01-12
  • 0
    @T-bone'sHouse You just aren't graphing it far enough (and maybe it isn't practical to do so with a generic graphing utility). If you take $n = 10^{1000}$ it is easy to compute that $n^{0.01} = 10^{10}$, but $\log(n) = 1000 \log 10$ which is much smaller than $10^{10}$. Now imagine taking $n=10^{1000000}$...2017-01-12
  • 0
    @ErickWong Thanks, I see it now.2017-01-12
  • 0
    $ (\log x)/x\to 0$ as $x\to \infty .$ And for fixed $ k >0$ and for $x>0$ we have: $ x^k\to \infty \iff x\to \infty ,$ so $(\log x)/x^k=(1/k) (\log x^k)/x^k \to 0$ as $x^k\to \infty$, equivalently, as $ x\to \infty.$2017-01-12
  • 0
    @T-bone'sHouse, you can always put the image in your original question2017-01-12
  • 0
    @Travis now that I have enough reputation I am able to but before it was impossible, guarantee it wouldn't make that up2017-01-12
  • 0
    $n^{0.01}$ catches up to $\ln n$ at around $n=10^{280}$ (Rough calculation ).2017-01-12
  • 0
    @IanMiller I know this is a really basic calc question but how would I go about showing that? You don't have to do it, but just point me in the right direction2017-01-12
  • 0
    Sorry. $\approx10^{42}$ was were the rate of change of the growth of $n^{0.01}$ overtakes $\log n$.2017-01-12

3 Answers 3

2

It is enough to take the limit $\frac{n^{\alpha}}{\log n}$ with $\alpha >0$ to see that it tends to infinity and hence we get a stronger relation: $n^{\alpha} = \omega (\log n)$. In other words, the ratio is not bounded above by any constant.

1

How about this: Let $x_1 = 10^{1000}$ and $x_2 = 10^{2000}$. Then, assuming $\log$ is the base-10 logarithm,

$$\log(x_1) = 1000 \quad\text{and}\quad \log(x_2) = 2000.$$

From $x_1$ to $x_2$, $\log(x)$ increases by $1000$. However, $x_1^{0.01} = 10^{10}$ and $x_2^{0.01} = 10^{20}$. The difference between $10^{10}$ and $10^{20}$ is clearly greater than $2000$. So, at least here, we can see $n^{0.01}$ growing faster than $\log$.

0

To show that $\lim_{n\to\infty} \frac{n^a}{\log n}=\infty$ you can apply L'Hopital.

$$\lim_{n\to\infty}\frac{n^a}{\log n}=\lim_{n_\infty}\frac{a\cdot n^{a-1}}{\frac{1}{n}}=\lim_{n\to\infty}a\cdot n^a=\infty\ (\because a>0)$$

  • 0
    ah it is all coming back thank you!2017-01-12
  • 0
    You're welcome.2017-01-12