Friday, 11 June 2010

nt.number theory - Density of numbers having large prime divisors (formalizing heuristic probability argument)

If I recall correctly, this was an exercise in Mathematics for the Analysis of Algorithms. I don't have access to a library right now, so I can't check that.



In any case, here is a proof. Fix a positive integer N. We will be counting the number of n in 1,2,ldots,N such that the largest prime divisor of n is leqsqrtn.



We can break this count into two parts: (1) Those n which are divisible by p where pleqsqrtN and nleqp2 and (2) Those n which are divisible by p>sqrtn.



Case (1) is easier. We are looking at sumpleqsqrtNp=intsqrtNt=0tdpi(t). (This is a Riemann-Stieltjes integral.) Integrating by parts, this is intsqrtN0pi(u)du+O(sqrtNpi(sqrtN)). Since pi(u)=O(u/logu) as utoinfty, this integral is
Oleft(intsqrtNpi(u)duright)=Oleft(sqrtNfracsqrtNlogNright)=O(N/logN), and the second term is also O(N/logN). So case 1 contributes density zero.



Case (2) is the same idea — integrate by parts and use the prime number theorem — but the details are messier because we need a better bound.



We are trying to compute
sumsqrtNleqpleqNlfloorfracNprfloor=intNsqrtNlfloorfracNtrfloordpi(t)=intNsqrtNleft(fracNt+O(1)right)dpi(t).



The error term is O(pi(N))=N/logN so, again, it doesn't effect the density. Integrating the main term by parts, we have
intNsqrtNleft(fracpartialpartialtfracNtright)pi(t)dt+O(N/logN).


Where the error term is left(N/tpi(t)right)|NsqrtN.



Now, pi(t)=Li(t)+O(t/(logt)K) for any K, by the prime number theorem, where Li(t)=inttdu/logu. So the main term is
intNsqrtNleft(fracpartialpartialtfracNtright)Li(t)dt+Oleft(intNfracNt2fract(logt)Kdtright).


The error term is Oleft(N/(logN)K1right).



In the main term, integrate by parts, "reversing" our previous integration by parts. We get
intNsqrtNfracNtfracdtlogt+O(N/logN).



Focusing on the main term once more, we have
NintNsqrtNfracdttlogt=Nlog2.



Putting all of our error terms together, the number of integers with large prime factors is
Nlog2+O(N/logN).




In summary, integration by parts, the Prime Number Theorem, and aggressive pruning of error terms.



As I recall, the follow-up exercise in Mathematics of the Analysis of Algorithms is to obtain a formula of the form
Nlog2+cN/logN+O(N/(logN)2).


That's a hard exercise! If you want to learn a lot about asymptotic technique, I recommend it.

No comments:

Post a Comment