SlideShare a Scribd company logo
Testing the Mertens Theorems and Conjecture
Chris De Corte
chrisdecorte@yahoo.com
March 3, 2015
1
CONTENTS CONTENTS
Contents
1 Key-Words 3
2 Introduction 3
3 The theorems 3
3.1 Mertens’ 1st theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3.2 Mertens’ 2nd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3.3 Mertens’ 3rd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3.4 Mertens’ Conjecture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
4 Calculation and results 4
4.1 Mertens’ 1st theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
4.2 Mertens’ 2nd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4.3 Mertens’ 3rd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
4.4 Mertens’ Conjecture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
5 References 7
2
3 THE THEOREMS
1 Key-Words
Prime numbers, number theory, Riemann, Mertens, Meissel, zahlentheorie, Odlyzko, Riele,
Pintz.
2 Introduction
The following document originated out of my interest for primes.
Several people already told me that my findings were related to Mertens’ out comings.
Recently, there was someone on the Linkedin Group of Number Theory asking whether the
theorems of Mertens have been retested lately.
So, I decided to take the challenge.
3 The theorems
In the following, let p ≤ n mean all primes not exceeding n [1].
3.1 Mertens’ 1st theorem
|
p≤n
ln(p)
p
− ln(n)| ≤ 2 (1)
3.2 Mertens’ 2nd theorem
lim
n→∞
p≤n
1
p
− ln(ln(n)) − M = 0 (2)
Where M is the Meissel-Mertens constant which is approximately equal to 0.261497212847642783755
[2].
3.3 Mertens’ 3rd theorem
lim
n→∞
ln(n)
p≤n
(1 −
1
p
) = e−γ
(3)
3
3.4 Mertens’ Conjecture 4 CALCULATION AND RESULTS
Where γ is the Euler-Mascheroni constant.
3.4 Mertens’ Conjecture
Out of [5]:
M(r) =
r
n=1
µ(n) ≤
√
r (4)
Where M(n) is the Mertens function and µ(n) is the M¨obius function defined as [5]:
µ(n) =



0 : if n has one or more repeated prime factors
1 : if n = 1
(−1)k : if n is a product of k distinct primes
(5)
Mertens and Stieltjes in general claimed that:
m(r) = |M(r)|/
√
r ≤ 1. (6)
Odlyzko and the Riele on the other hand proved that the above equation does not always
hold and that there must exist counter examples also according to Pintz.
Moreover, Odlyzko and Riele conjectured that:
lim
n→∞
sup|M(n)|n−1/2
= ∞ (7)
4 Calculation and results
4.1 Mertens’ 1st theorem
The left hand side of formula 1 has been calculated by a self written C++ program. The
results are written in 1000 tables each containing the primes and results over a range of
1000000 numbers. The results are summarized into Table 1. The results of this theorem are
written in column 3 and graphically represented in Figure 1.
Based on the first results, we can assume that the theorem is correct. Probably, the limit of
2 can even become a bit lower: 1.35 in stead of 2?.
4
4.2 Mertens’ 2nd theorem 4 CALCULATION AND RESULTS
4.2 Mertens’ 2nd theorem
The first 2 terms on the left hand side of formula 2 has been calculated by the same self
written C++ program. The results are written in the same tables as mentioned before. The
results are summarized into Table 1. The results of this theorem are written in column 4 and
graphically represented in Figure 2. Based on the formula’s of the theorem, we expect the
results to go towards the Meissel-Mertens constant.
Based on the first results, we can assume that the theorem is correct.
4.3 Mertens’ 3rd theorem
I will not separately test this 3rd theorem here as it’s correctness has been shown in [3].
4.4 Mertens’ Conjecture
The left side of formula 6 has been calculated using Pari-gp. Assuming that we can rely on
these figures (as they are demonstrated in figure 4), the final results are shown in table 2 and
figure 3.
Following our first impression of the graph, we have no reason to believe that it would sud-
denly start moving outside the boundaries defined in formula 6.
However:
We also know from formula 5 that M(x) can only increase under one scenario: if the next fig-
ure is a multiple of an even number of distinct primes. Also we notice that M(x) can decrease
under 2 scenario’s: if the next figure is a multiple of an odd number of distinct primes or if
there is a new prime coming since this would also mean an odd number of primes (1 is odd).
Since any multiple can be formed with same chances from an odd as from an even number
of distinct primes, it would mean that we expect the direction of M(x) to be dictated by the
occurrence of new primes only and hence M(x) could further decrease for larger x. However,
contrary to our first impression, it will seem that a simple prime falls in the category of an
odd number of primes and that both scenario’s yield the same result but in opposite direction
(canceling themselves out).
Therefore, we have set out a test in Pari/Gp calculating the number of positive µ(x) and the
number of negative µ(x). We have used the following code in Pari/Gp:
5
4.4 Mertens’ Conjecture 4 CALCULATION AND RESULTS
m1=0;p1=0;n=1000;for(x=1,n,if(moebius(x)<0,m1=m1-1,p1=p1+moebius(x)));
print(x,” ”, m1, ” ”, p1)
We have summarized our results in figure 4 and we will discuss them now:
In the first row, I display ”n” which is the number that I used in my calculation (how far I
am calculating). I only displayed a limited amount of n for space reasons. In the second row,
I list the result of the number of negative counts. This means the number of odd multiples
the calculation encountered and this includes the single primes. In the third row, I list the
number of positive counts which represents the even multiples. In row ”5”, I subtracted the
absolute values from the calculations above and divided the result by n. This should give us
a good idea whether there is any tendency to produce more odd or even multiples. As we
guessed, we can see that this discrepancy is in general getting smaller, though we may have
the impression that it temporarily shoots up a bit after we accidentally hit a very good match
between even and odd hits for a certain n. In row ”6” and ”7”, I calculate respectively n
divided by the odd counts and n divided by the even counts. To my surprise, I see that these
values are moving towards 2.ζ(2) = π2/3. This can not be a coincidence! I added an extra
line with this ”target” as row ”8” and displayed all 3 rows in figure 5. In row ”9”, I totaled
the even and the odd occurrences and divided them by n. I call it the ”single” as this count
excludes multiple occurrences of the same prime as a divisor. Of coarse this result now goes
to 1/ζ(2) = 6/π2. In row ”11”, I also calculate 1 − singles = squares which represents the
chance that n has repeated primes as divisors. This chance is now of coarse 1−6/π2. Finally,
In row ”15”, I calculate m(x) which for the cases calculated clearly is < 1.
Conclusion: figure 3 at first gives us no reason to believe that Mertens’ Conjectures (formula
6) would be false.
Following our testing results, we would like to conjecture the following:
lim
n→∞
n
n
r|k=odd µ(r)
= −2.ζ(2) =
−π2
3
(8)
lim
n→∞
n
n
r|k=even µ(r)
= 2.ζ(2) =
π2
3
(9)
lim
n→∞
n
r|k=even µ(r) − n
r|k=odd µ(r)
n
=
6
π2
=
1
ζ(2)
(10)
With r|k = odd in the above we mean that we will only sum up the values ik k is odd based
on formula 5.
We see no reason to have confidence in formula 7 of Odlyzko and Riele especially since figure
5 is clearly suggesting the opposite.
6
5 REFERENCES
5 References
1. en.wikipedia.org ; Mertens theorems.
2. en.wikipedia.org ; Meissel-Mertens constant.
3. www.researchgate.net profile Chris De Corte ; probabilistic approach to prime counting
; page 7 ; formula (9).
4. mathworld.wolfram.com ; Moebius Function.
5. mathworld.wolfram.com ; Mertens Conjecture.
6. www.linkedin.com groups ; Number Theory.
7. Springer ; Prime Numbers A computational perspective ; Richard Crandall and Carl
Pomerance ; p10
7
5 REFERENCES
Table 1: In this table we show prime counts in column 1, the respective prime in column 2, the value
of p≤n
ln(p)
p − ln(n) in column 3, the value of p≤n
1
p − ln(ln(n)) in column 4.
Count Prime Mertens1 Mertens2
1 2 -0.3465735902799726 0.8665129205816644
10 29 -1.065279554926441 0.319328773958854
100 541 -1.288709102825433 0.2668375929202569
1000 7919 -1.319426316487266 0.2627432741614228
10000 104729 -1.328852576657907 0.2617825319440525
100000 1299709 -1.331638702778868 0.2615569337934529
1000000 15485863 -1.332437299245298 0.2615044140293952
10000000 179424673 -1.332469668566326 0.2615027849863427
20000000 373587883 -1.332554746979635 0.2614983789475636
30000000 573259391 -1.33254688346041 0.2614987907804349
40000000 776531401 -1.332562588288901 0.2614980277872814
50000000 982451653 -1.332556847781483 0.2614983121936398
50847534 999999937 -1.332548831967259 0.2614986992562249
8
5 REFERENCES
Table 2: In this table we show the value of x in column 1, the Mertens’ value M(x) =
x
n=1 µ(x) for
x in column 2, the value of
x
n=1 µ(x)/
√
x in column 3.
x M(x) M(x)/
√
x
1 1 1
10 -1 -0.316227766
100 1 0.1
1000 2 0.063245553
10000 -23 -0.23
100000 -48 -0.151789328
1000000 212 0.212
1.107 1037 0.327928193
2.107 -953 -0.213097278
3.107 -1157 -0.211238333
4.107 -333 -0.052651923
5.107 -908 -0.128410591
1.109 -222 -0.007020256
2.109 6556 0.146596617
3.109 7452 0.136054283
4.109 -11741 -0.18564151
5.109 12306 0.174033121
9
5 REFERENCES
Figure 1: In this figure we show the value for p≤n
ln(p)
p − ln(n) for values from 107
to 5.107
.
10
5 REFERENCES
Figure 2: In this figure we show the value for p≤n
1
p − ln(ln(n)) for values from 107
to 5.107
.
11
5 REFERENCES
Figure 3: In this figure we show the value for
x
n=1 µ(n)/
√
x for values from 107
to 5.107
.
12
5 REFERENCES
Figure 4: In this figure we summarize our testing results and demonstrate our conjecture about
formula’s 8, 9 and 10.
13
5 REFERENCES
Figure 5: In this figure we show that the part of the odd and the even number of divisors (scenario
3 in formula 5) are alternating but moving towards the conjectured value.
14

More Related Content

What's hot

Graphing rational functions
Graphing rational functionsGraphing rational functions
Graphing rational functionsJessica Garcia
 
Completing the square
Completing the squareCompleting the square
Completing the squareRon Eick
 
Completing the square (added and revised)
Completing the square (added and revised)Completing the square (added and revised)
Completing the square (added and revised)Kate Rimando
 
Completing the square v003
Completing the square v003Completing the square v003
Completing the square v003cecilsie
 
Chapter 2 understanding the normal curve distribution
Chapter 2   understanding the normal curve distributionChapter 2   understanding the normal curve distribution
Chapter 2 understanding the normal curve distributionAntonio F. Balatar Jr.
 
Numerical approximation
Numerical approximationNumerical approximation
Numerical approximationMileacre
 
Paso 3: Álgebra, Trigonometría y Geometría Analítica
Paso 3: Álgebra, Trigonometría y Geometría AnalíticaPaso 3: Álgebra, Trigonometría y Geometría Analítica
Paso 3: Álgebra, Trigonometría y Geometría AnalíticaTrigogeogebraunad
 
Week 3-4 solutions
Week 3-4 solutionsWeek 3-4 solutions
Week 3-4 solutionsBrian Larson
 
Review solving quadratics by graphing
Review solving quadratics by graphingReview solving quadratics by graphing
Review solving quadratics by graphingAyie Paghangaan
 
39 introduction to elimination
39 introduction to elimination39 introduction to elimination
39 introduction to eliminationscatflem
 
Moments in statistics
Moments in statisticsMoments in statistics
Moments in statistics515329748
 
Probability/Statistics Lecture Notes 4: Hypothesis Testing
Probability/Statistics Lecture Notes 4: Hypothesis TestingProbability/Statistics Lecture Notes 4: Hypothesis Testing
Probability/Statistics Lecture Notes 4: Hypothesis Testingjemille6
 
MCA_UNIT-1_Computer Oriented Numerical Statistical Methods
MCA_UNIT-1_Computer Oriented Numerical Statistical MethodsMCA_UNIT-1_Computer Oriented Numerical Statistical Methods
MCA_UNIT-1_Computer Oriented Numerical Statistical MethodsRai University
 
16.4 solving quadratics by completing the square
16.4 solving quadratics by completing the square16.4 solving quadratics by completing the square
16.4 solving quadratics by completing the squareswartzje
 
Paso 2 contextualizar y profundizar el conocimiento sobre expresiones algebr...
Paso 2  contextualizar y profundizar el conocimiento sobre expresiones algebr...Paso 2  contextualizar y profundizar el conocimiento sobre expresiones algebr...
Paso 2 contextualizar y profundizar el conocimiento sobre expresiones algebr...Trigogeogebraunad
 

What's hot (20)

Graphing rational functions
Graphing rational functionsGraphing rational functions
Graphing rational functions
 
Completing the square
Completing the squareCompleting the square
Completing the square
 
3 measure of dispersion
3 measure of dispersion3 measure of dispersion
3 measure of dispersion
 
Completing the square (added and revised)
Completing the square (added and revised)Completing the square (added and revised)
Completing the square (added and revised)
 
Completing the square v003
Completing the square v003Completing the square v003
Completing the square v003
 
Math IA
Math IAMath IA
Math IA
 
Chapter 2 understanding the normal curve distribution
Chapter 2   understanding the normal curve distributionChapter 2   understanding the normal curve distribution
Chapter 2 understanding the normal curve distribution
 
Numerical approximation
Numerical approximationNumerical approximation
Numerical approximation
 
Paso 3: Álgebra, Trigonometría y Geometría Analítica
Paso 3: Álgebra, Trigonometría y Geometría AnalíticaPaso 3: Álgebra, Trigonometría y Geometría Analítica
Paso 3: Álgebra, Trigonometría y Geometría Analítica
 
Week 3-4 solutions
Week 3-4 solutionsWeek 3-4 solutions
Week 3-4 solutions
 
Review solving quadratics by graphing
Review solving quadratics by graphingReview solving quadratics by graphing
Review solving quadratics by graphing
 
39 introduction to elimination
39 introduction to elimination39 introduction to elimination
39 introduction to elimination
 
Completing the square notes
Completing the square notesCompleting the square notes
Completing the square notes
 
Regression
RegressionRegression
Regression
 
Moments in statistics
Moments in statisticsMoments in statistics
Moments in statistics
 
Probability/Statistics Lecture Notes 4: Hypothesis Testing
Probability/Statistics Lecture Notes 4: Hypothesis TestingProbability/Statistics Lecture Notes 4: Hypothesis Testing
Probability/Statistics Lecture Notes 4: Hypothesis Testing
 
MCA_UNIT-1_Computer Oriented Numerical Statistical Methods
MCA_UNIT-1_Computer Oriented Numerical Statistical MethodsMCA_UNIT-1_Computer Oriented Numerical Statistical Methods
MCA_UNIT-1_Computer Oriented Numerical Statistical Methods
 
16.4 solving quadratics by completing the square
16.4 solving quadratics by completing the square16.4 solving quadratics by completing the square
16.4 solving quadratics by completing the square
 
Paso 2 contextualizar y profundizar el conocimiento sobre expresiones algebr...
Paso 2  contextualizar y profundizar el conocimiento sobre expresiones algebr...Paso 2  contextualizar y profundizar el conocimiento sobre expresiones algebr...
Paso 2 contextualizar y profundizar el conocimiento sobre expresiones algebr...
 
The siegel-tukey-test-for-equal-variability
The siegel-tukey-test-for-equal-variabilityThe siegel-tukey-test-for-equal-variability
The siegel-tukey-test-for-equal-variability
 

Viewers also liked

Study of an integrating cylinder used in a laser scanner
Study of an integrating cylinder used in a laser scannerStudy of an integrating cylinder used in a laser scanner
Study of an integrating cylinder used in a laser scannerChris De Corte
 
About the size and frequency of prime gapsMaximum prime gaps
About the size and frequency of prime gapsMaximum prime gapsAbout the size and frequency of prime gapsMaximum prime gaps
About the size and frequency of prime gapsMaximum prime gapsChris De Corte
 
Derivation of a prime verification formula to prove the related open problems
Derivation of a prime verification formula to prove the related open problemsDerivation of a prime verification formula to prove the related open problems
Derivation of a prime verification formula to prove the related open problemsChris De Corte
 
Approximating the trisection of an angle
Approximating the trisection of an angleApproximating the trisection of an angle
Approximating the trisection of an angleChris De Corte
 
New formula for Euler product formula not equal to Riemann zeta function
New formula for Euler product formula not equal to Riemann zeta functionNew formula for Euler product formula not equal to Riemann zeta function
New formula for Euler product formula not equal to Riemann zeta functionChris De Corte
 
Better prime counting formula I
Better prime counting formula IBetter prime counting formula I
Better prime counting formula IChris De Corte
 
Prime factorization using double slit experiment
Prime factorization using double slit experimentPrime factorization using double slit experiment
Prime factorization using double slit experimentChris De Corte
 
Yet another prime formula to prove open problems
Yet another prime formula to prove open problemsYet another prime formula to prove open problems
Yet another prime formula to prove open problemsChris De Corte
 
Where and why are the lucky primes positioned in the spectrum of the Polignac...
Where and why are the lucky primes positioned in the spectrum of the Polignac...Where and why are the lucky primes positioned in the spectrum of the Polignac...
Where and why are the lucky primes positioned in the spectrum of the Polignac...Chris De Corte
 
Fractal approximations to some famous constants
Fractal approximations to some famous constantsFractal approximations to some famous constants
Fractal approximations to some famous constantsChris De Corte
 
The twin prime counting function
The twin prime counting functionThe twin prime counting function
The twin prime counting functionChris De Corte
 
Disprove of equality between riemann zeta function and euler product
Disprove of equality between riemann zeta function and euler productDisprove of equality between riemann zeta function and euler product
Disprove of equality between riemann zeta function and euler productChris De Corte
 
Approximations in drawing π and squaring the circle
Approximations in drawing π and squaring the circleApproximations in drawing π and squaring the circle
Approximations in drawing π and squaring the circleChris De Corte
 
Better prime counting formula
Better prime counting formulaBetter prime counting formula
Better prime counting formulaChris De Corte
 
Proof of the collatz conjecture
Proof of the collatz conjectureProof of the collatz conjecture
Proof of the collatz conjectureChris De Corte
 
Why we can't find odd perfect numbers
Why we can't find odd perfect numbersWhy we can't find odd perfect numbers
Why we can't find odd perfect numbersChris De Corte
 
Makalah Sistem informasi manajemen (gambaran umum sim )
Makalah Sistem informasi manajemen (gambaran umum sim )Makalah Sistem informasi manajemen (gambaran umum sim )
Makalah Sistem informasi manajemen (gambaran umum sim )Kertas Kosong
 

Viewers also liked (19)

Study of an integrating cylinder used in a laser scanner
Study of an integrating cylinder used in a laser scannerStudy of an integrating cylinder used in a laser scanner
Study of an integrating cylinder used in a laser scanner
 
About the size and frequency of prime gapsMaximum prime gaps
About the size and frequency of prime gapsMaximum prime gapsAbout the size and frequency of prime gapsMaximum prime gaps
About the size and frequency of prime gapsMaximum prime gaps
 
Media pembelajaran pp
Media pembelajaran ppMedia pembelajaran pp
Media pembelajaran pp
 
Derivation of a prime verification formula to prove the related open problems
Derivation of a prime verification formula to prove the related open problemsDerivation of a prime verification formula to prove the related open problems
Derivation of a prime verification formula to prove the related open problems
 
Tecnologia (ppt)
Tecnologia (ppt)Tecnologia (ppt)
Tecnologia (ppt)
 
Approximating the trisection of an angle
Approximating the trisection of an angleApproximating the trisection of an angle
Approximating the trisection of an angle
 
New formula for Euler product formula not equal to Riemann zeta function
New formula for Euler product formula not equal to Riemann zeta functionNew formula for Euler product formula not equal to Riemann zeta function
New formula for Euler product formula not equal to Riemann zeta function
 
Better prime counting formula I
Better prime counting formula IBetter prime counting formula I
Better prime counting formula I
 
Prime factorization using double slit experiment
Prime factorization using double slit experimentPrime factorization using double slit experiment
Prime factorization using double slit experiment
 
Yet another prime formula to prove open problems
Yet another prime formula to prove open problemsYet another prime formula to prove open problems
Yet another prime formula to prove open problems
 
Where and why are the lucky primes positioned in the spectrum of the Polignac...
Where and why are the lucky primes positioned in the spectrum of the Polignac...Where and why are the lucky primes positioned in the spectrum of the Polignac...
Where and why are the lucky primes positioned in the spectrum of the Polignac...
 
Fractal approximations to some famous constants
Fractal approximations to some famous constantsFractal approximations to some famous constants
Fractal approximations to some famous constants
 
The twin prime counting function
The twin prime counting functionThe twin prime counting function
The twin prime counting function
 
Disprove of equality between riemann zeta function and euler product
Disprove of equality between riemann zeta function and euler productDisprove of equality between riemann zeta function and euler product
Disprove of equality between riemann zeta function and euler product
 
Approximations in drawing π and squaring the circle
Approximations in drawing π and squaring the circleApproximations in drawing π and squaring the circle
Approximations in drawing π and squaring the circle
 
Better prime counting formula
Better prime counting formulaBetter prime counting formula
Better prime counting formula
 
Proof of the collatz conjecture
Proof of the collatz conjectureProof of the collatz conjecture
Proof of the collatz conjecture
 
Why we can't find odd perfect numbers
Why we can't find odd perfect numbersWhy we can't find odd perfect numbers
Why we can't find odd perfect numbers
 
Makalah Sistem informasi manajemen (gambaran umum sim )
Makalah Sistem informasi manajemen (gambaran umum sim )Makalah Sistem informasi manajemen (gambaran umum sim )
Makalah Sistem informasi manajemen (gambaran umum sim )
 

Similar to Testing the Mertens theorems and Conjecture

Probabilistic approach to prime counting
Probabilistic approach to prime countingProbabilistic approach to prime counting
Probabilistic approach to prime countingChris De Corte
 
journal of mathematics research
journal of mathematics researchjournal of mathematics research
journal of mathematics researchrikaseorika
 
research paper publication journals
research paper publication journalsresearch paper publication journals
research paper publication journalsrikaseorika
 
Chapter10_part1_slides.pdf
Chapter10_part1_slides.pdfChapter10_part1_slides.pdf
Chapter10_part1_slides.pdfhabtamu biazin
 
median and order statistics
median and order statisticsmedian and order statistics
median and order statisticsShashank Singh
 
A disproof of the Riemann hypothesis
A disproof of the Riemann hypothesisA disproof of the Riemann hypothesis
A disproof of the Riemann hypothesisiosrjce
 
Computational skills
Computational skillsComputational skills
Computational skillsleoscotch
 
C2 st lecture 13 revision for test b handout
C2 st lecture 13   revision for test b handoutC2 st lecture 13   revision for test b handout
C2 st lecture 13 revision for test b handoutfatima d
 
27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf
27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf
27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdfMohamedshabana38
 
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docxSAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docxanhlodge
 
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docxSAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docxagnesdcarey33086
 

Similar to Testing the Mertens theorems and Conjecture (20)

Probabilistic approach to prime counting
Probabilistic approach to prime countingProbabilistic approach to prime counting
Probabilistic approach to prime counting
 
published research papers
published research paperspublished research papers
published research papers
 
journal of mathematics research
journal of mathematics researchjournal of mathematics research
journal of mathematics research
 
research paper publication journals
research paper publication journalsresearch paper publication journals
research paper publication journals
 
Chapter10_part1_slides.pdf
Chapter10_part1_slides.pdfChapter10_part1_slides.pdf
Chapter10_part1_slides.pdf
 
AufEx4_01_02.ppt
AufEx4_01_02.pptAufEx4_01_02.ppt
AufEx4_01_02.ppt
 
Chap 03 02
Chap 03 02Chap 03 02
Chap 03 02
 
02 Notes Divide and Conquer
02 Notes Divide and Conquer02 Notes Divide and Conquer
02 Notes Divide and Conquer
 
Es272 ch2
Es272 ch2Es272 ch2
Es272 ch2
 
Ch08
Ch08Ch08
Ch08
 
median and order statistics
median and order statisticsmedian and order statistics
median and order statistics
 
A disproof of the Riemann hypothesis
A disproof of the Riemann hypothesisA disproof of the Riemann hypothesis
A disproof of the Riemann hypothesis
 
Computational skills
Computational skillsComputational skills
Computational skills
 
Roots of polynomials
Roots of polynomialsRoots of polynomials
Roots of polynomials
 
1249320870000 asgn 1-jm (1)
1249320870000 asgn 1-jm (1)1249320870000 asgn 1-jm (1)
1249320870000 asgn 1-jm (1)
 
C2 st lecture 13 revision for test b handout
C2 st lecture 13   revision for test b handoutC2 st lecture 13   revision for test b handout
C2 st lecture 13 revision for test b handout
 
27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf
27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf
27-Equivalent under modulo-27-Oct-2020Material_I_27-Oct-2020_Cryptography_.pdf
 
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docxSAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
 
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docxSAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
SAMPLING MEANDEFINITIONThe term sampling mean is a stati.docx
 
Direct methods
Direct methodsDirect methods
Direct methods
 

Recently uploaded

INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfbu07226
 
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxJenilouCasareno
 
Benefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational ResourcesBenefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational Resourcesdimpy50
 
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...Abhinav Gaur Kaptaan
 
The Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational ResourcesThe Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational Resourcesaileywriter
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxbennyroshan06
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonSteve Thomason
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersPedroFerreira53928
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfVivekanand Anglo Vedic Academy
 
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdfDanh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdfQucHHunhnh
 
Salient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxSalient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxakshayaramakrishnan21
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePedroFerreira53928
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxJheel Barad
 
Open Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPointOpen Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPointELaRue0
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaasiemaillard
 
The Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. HenryThe Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. HenryEugene Lysak
 
Morse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxMorse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxjmorse8
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...Nguyen Thanh Tu Collection
 

Recently uploaded (20)

INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdfINU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
INU_CAPSTONEDESIGN_비밀번호486_업로드용 발표자료.pdf
 
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptxMatatag-Curriculum and the 21st Century Skills Presentation.pptx
Matatag-Curriculum and the 21st Century Skills Presentation.pptx
 
Benefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational ResourcesBenefits and Challenges of Using Open Educational Resources
Benefits and Challenges of Using Open Educational Resources
 
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
Research Methods in Psychology | Cambridge AS Level | Cambridge Assessment In...
 
The Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational ResourcesThe Benefits and Challenges of Open Educational Resources
The Benefits and Challenges of Open Educational Resources
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
Basic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumersBasic phrases for greeting and assisting costumers
Basic phrases for greeting and assisting costumers
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdfDanh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
Danh sách HSG Bộ môn cấp trường - Cấp THPT.pdf
 
Salient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptxSalient features of Environment protection Act 1986.pptx
Salient features of Environment protection Act 1986.pptx
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
Mattingly "AI & Prompt Design: Limitations and Solutions with LLMs"
Mattingly "AI & Prompt Design: Limitations and Solutions with LLMs"Mattingly "AI & Prompt Design: Limitations and Solutions with LLMs"
Mattingly "AI & Prompt Design: Limitations and Solutions with LLMs"
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Open Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPointOpen Educational Resources Primer PowerPoint
Open Educational Resources Primer PowerPoint
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
The Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. HenryThe Last Leaf, a short story by O. Henry
The Last Leaf, a short story by O. Henry
 
Morse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptxMorse OER Some Benefits and Challenges.pptx
Morse OER Some Benefits and Challenges.pptx
 
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
GIÁO ÁN DẠY THÊM (KẾ HOẠCH BÀI BUỔI 2) - TIẾNG ANH 8 GLOBAL SUCCESS (2 CỘT) N...
 

Testing the Mertens theorems and Conjecture

  • 1. Testing the Mertens Theorems and Conjecture Chris De Corte chrisdecorte@yahoo.com March 3, 2015 1
  • 2. CONTENTS CONTENTS Contents 1 Key-Words 3 2 Introduction 3 3 The theorems 3 3.1 Mertens’ 1st theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 3.2 Mertens’ 2nd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 3.3 Mertens’ 3rd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 3.4 Mertens’ Conjecture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 4 Calculation and results 4 4.1 Mertens’ 1st theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 4.2 Mertens’ 2nd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 4.3 Mertens’ 3rd theorem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 4.4 Mertens’ Conjecture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 5 References 7 2
  • 3. 3 THE THEOREMS 1 Key-Words Prime numbers, number theory, Riemann, Mertens, Meissel, zahlentheorie, Odlyzko, Riele, Pintz. 2 Introduction The following document originated out of my interest for primes. Several people already told me that my findings were related to Mertens’ out comings. Recently, there was someone on the Linkedin Group of Number Theory asking whether the theorems of Mertens have been retested lately. So, I decided to take the challenge. 3 The theorems In the following, let p ≤ n mean all primes not exceeding n [1]. 3.1 Mertens’ 1st theorem | p≤n ln(p) p − ln(n)| ≤ 2 (1) 3.2 Mertens’ 2nd theorem lim n→∞ p≤n 1 p − ln(ln(n)) − M = 0 (2) Where M is the Meissel-Mertens constant which is approximately equal to 0.261497212847642783755 [2]. 3.3 Mertens’ 3rd theorem lim n→∞ ln(n) p≤n (1 − 1 p ) = e−γ (3) 3
  • 4. 3.4 Mertens’ Conjecture 4 CALCULATION AND RESULTS Where γ is the Euler-Mascheroni constant. 3.4 Mertens’ Conjecture Out of [5]: M(r) = r n=1 µ(n) ≤ √ r (4) Where M(n) is the Mertens function and µ(n) is the M¨obius function defined as [5]: µ(n) =    0 : if n has one or more repeated prime factors 1 : if n = 1 (−1)k : if n is a product of k distinct primes (5) Mertens and Stieltjes in general claimed that: m(r) = |M(r)|/ √ r ≤ 1. (6) Odlyzko and the Riele on the other hand proved that the above equation does not always hold and that there must exist counter examples also according to Pintz. Moreover, Odlyzko and Riele conjectured that: lim n→∞ sup|M(n)|n−1/2 = ∞ (7) 4 Calculation and results 4.1 Mertens’ 1st theorem The left hand side of formula 1 has been calculated by a self written C++ program. The results are written in 1000 tables each containing the primes and results over a range of 1000000 numbers. The results are summarized into Table 1. The results of this theorem are written in column 3 and graphically represented in Figure 1. Based on the first results, we can assume that the theorem is correct. Probably, the limit of 2 can even become a bit lower: 1.35 in stead of 2?. 4
  • 5. 4.2 Mertens’ 2nd theorem 4 CALCULATION AND RESULTS 4.2 Mertens’ 2nd theorem The first 2 terms on the left hand side of formula 2 has been calculated by the same self written C++ program. The results are written in the same tables as mentioned before. The results are summarized into Table 1. The results of this theorem are written in column 4 and graphically represented in Figure 2. Based on the formula’s of the theorem, we expect the results to go towards the Meissel-Mertens constant. Based on the first results, we can assume that the theorem is correct. 4.3 Mertens’ 3rd theorem I will not separately test this 3rd theorem here as it’s correctness has been shown in [3]. 4.4 Mertens’ Conjecture The left side of formula 6 has been calculated using Pari-gp. Assuming that we can rely on these figures (as they are demonstrated in figure 4), the final results are shown in table 2 and figure 3. Following our first impression of the graph, we have no reason to believe that it would sud- denly start moving outside the boundaries defined in formula 6. However: We also know from formula 5 that M(x) can only increase under one scenario: if the next fig- ure is a multiple of an even number of distinct primes. Also we notice that M(x) can decrease under 2 scenario’s: if the next figure is a multiple of an odd number of distinct primes or if there is a new prime coming since this would also mean an odd number of primes (1 is odd). Since any multiple can be formed with same chances from an odd as from an even number of distinct primes, it would mean that we expect the direction of M(x) to be dictated by the occurrence of new primes only and hence M(x) could further decrease for larger x. However, contrary to our first impression, it will seem that a simple prime falls in the category of an odd number of primes and that both scenario’s yield the same result but in opposite direction (canceling themselves out). Therefore, we have set out a test in Pari/Gp calculating the number of positive µ(x) and the number of negative µ(x). We have used the following code in Pari/Gp: 5
  • 6. 4.4 Mertens’ Conjecture 4 CALCULATION AND RESULTS m1=0;p1=0;n=1000;for(x=1,n,if(moebius(x)<0,m1=m1-1,p1=p1+moebius(x))); print(x,” ”, m1, ” ”, p1) We have summarized our results in figure 4 and we will discuss them now: In the first row, I display ”n” which is the number that I used in my calculation (how far I am calculating). I only displayed a limited amount of n for space reasons. In the second row, I list the result of the number of negative counts. This means the number of odd multiples the calculation encountered and this includes the single primes. In the third row, I list the number of positive counts which represents the even multiples. In row ”5”, I subtracted the absolute values from the calculations above and divided the result by n. This should give us a good idea whether there is any tendency to produce more odd or even multiples. As we guessed, we can see that this discrepancy is in general getting smaller, though we may have the impression that it temporarily shoots up a bit after we accidentally hit a very good match between even and odd hits for a certain n. In row ”6” and ”7”, I calculate respectively n divided by the odd counts and n divided by the even counts. To my surprise, I see that these values are moving towards 2.ζ(2) = π2/3. This can not be a coincidence! I added an extra line with this ”target” as row ”8” and displayed all 3 rows in figure 5. In row ”9”, I totaled the even and the odd occurrences and divided them by n. I call it the ”single” as this count excludes multiple occurrences of the same prime as a divisor. Of coarse this result now goes to 1/ζ(2) = 6/π2. In row ”11”, I also calculate 1 − singles = squares which represents the chance that n has repeated primes as divisors. This chance is now of coarse 1−6/π2. Finally, In row ”15”, I calculate m(x) which for the cases calculated clearly is < 1. Conclusion: figure 3 at first gives us no reason to believe that Mertens’ Conjectures (formula 6) would be false. Following our testing results, we would like to conjecture the following: lim n→∞ n n r|k=odd µ(r) = −2.ζ(2) = −π2 3 (8) lim n→∞ n n r|k=even µ(r) = 2.ζ(2) = π2 3 (9) lim n→∞ n r|k=even µ(r) − n r|k=odd µ(r) n = 6 π2 = 1 ζ(2) (10) With r|k = odd in the above we mean that we will only sum up the values ik k is odd based on formula 5. We see no reason to have confidence in formula 7 of Odlyzko and Riele especially since figure 5 is clearly suggesting the opposite. 6
  • 7. 5 REFERENCES 5 References 1. en.wikipedia.org ; Mertens theorems. 2. en.wikipedia.org ; Meissel-Mertens constant. 3. www.researchgate.net profile Chris De Corte ; probabilistic approach to prime counting ; page 7 ; formula (9). 4. mathworld.wolfram.com ; Moebius Function. 5. mathworld.wolfram.com ; Mertens Conjecture. 6. www.linkedin.com groups ; Number Theory. 7. Springer ; Prime Numbers A computational perspective ; Richard Crandall and Carl Pomerance ; p10 7
  • 8. 5 REFERENCES Table 1: In this table we show prime counts in column 1, the respective prime in column 2, the value of p≤n ln(p) p − ln(n) in column 3, the value of p≤n 1 p − ln(ln(n)) in column 4. Count Prime Mertens1 Mertens2 1 2 -0.3465735902799726 0.8665129205816644 10 29 -1.065279554926441 0.319328773958854 100 541 -1.288709102825433 0.2668375929202569 1000 7919 -1.319426316487266 0.2627432741614228 10000 104729 -1.328852576657907 0.2617825319440525 100000 1299709 -1.331638702778868 0.2615569337934529 1000000 15485863 -1.332437299245298 0.2615044140293952 10000000 179424673 -1.332469668566326 0.2615027849863427 20000000 373587883 -1.332554746979635 0.2614983789475636 30000000 573259391 -1.33254688346041 0.2614987907804349 40000000 776531401 -1.332562588288901 0.2614980277872814 50000000 982451653 -1.332556847781483 0.2614983121936398 50847534 999999937 -1.332548831967259 0.2614986992562249 8
  • 9. 5 REFERENCES Table 2: In this table we show the value of x in column 1, the Mertens’ value M(x) = x n=1 µ(x) for x in column 2, the value of x n=1 µ(x)/ √ x in column 3. x M(x) M(x)/ √ x 1 1 1 10 -1 -0.316227766 100 1 0.1 1000 2 0.063245553 10000 -23 -0.23 100000 -48 -0.151789328 1000000 212 0.212 1.107 1037 0.327928193 2.107 -953 -0.213097278 3.107 -1157 -0.211238333 4.107 -333 -0.052651923 5.107 -908 -0.128410591 1.109 -222 -0.007020256 2.109 6556 0.146596617 3.109 7452 0.136054283 4.109 -11741 -0.18564151 5.109 12306 0.174033121 9
  • 10. 5 REFERENCES Figure 1: In this figure we show the value for p≤n ln(p) p − ln(n) for values from 107 to 5.107 . 10
  • 11. 5 REFERENCES Figure 2: In this figure we show the value for p≤n 1 p − ln(ln(n)) for values from 107 to 5.107 . 11
  • 12. 5 REFERENCES Figure 3: In this figure we show the value for x n=1 µ(n)/ √ x for values from 107 to 5.107 . 12
  • 13. 5 REFERENCES Figure 4: In this figure we summarize our testing results and demonstrate our conjecture about formula’s 8, 9 and 10. 13
  • 14. 5 REFERENCES Figure 5: In this figure we show that the part of the odd and the even number of divisors (scenario 3 in formula 5) are alternating but moving towards the conjectured value. 14