Section 25.1 Taking the PNT Further
ΒΆRecall Gauss' approximating function for Ο(x), the logarithmic integral function (Definition 21.2.2). Let's remind ourselves just how well it performs.
Li(x)β12Li(βx).
This was indeed a better approximation (in red in the graphic above). You can try it interactively below.
xxxxxxxxxx
def _(n=(1000,(1000,10^6))):
P = plot(prime_pi,n-1000,n, color='black', legend_label=r'$\pi(x)$')
P += plot(Li,n-1000,n, color='green', legend_label='$Li(x)$')
P += plot(lambda x: Li(x) - .5*Li(sqrt(x)), n-1000,n, color='red', legend_label=r'$Li(x)-\frac{1}{2}Li(\sqrt{x})$')
show(P)
1nLi(x1/n)
to get even closer, with this start to the pattern.
As it turns out, that is not quite the right pattern. In fact, the minus sign comes from ΞΌ(2), not from alternating powers of β1. You may try it interactively below:
xxxxxxxxxx
def _(n=(1000,(1000,10^6)),k=(3,[1..10])):
P = plot(prime_pi,n-1000,n, color='black', legend_label=r'$\pi(x)$')
P += plot(Li,n-1000,n, color='green', legend_label='$Li(x)$')
F = lambda x: sum([Li(x^(1/j))*moebius(j)/j for j in [1..k]])
P += plot(lambda x: Li(x) - .5*Li(sqrt(x)),n-1000,n, color='red', legend_label=r'$Li(x)-\frac{1}{2}Li(\sqrt{x})$')
P += plot(F,n-1000,n, color='blue', legend_label=r'$\sum_{j=1}^{%s} \frac{\mu(j)}{j} Li(x^{1/j})$'%k)
show(P)
Where does the Moebius ΞΌ in that approximation come from anyway?
-
Since this wasn't enough, what else is involved in the error
|Ο(x)βLi(x)|? Are there connections with things other than just Ο(x)?
What does this have to do with winning a million dollars?