Back to "random and silly" pages |
![]() What follows are some personal encounters with the conjecture. I'm not a number theorist and never worked on that problem. Anyway, the few mathematical formulas on this page should be accessible on a high school or early college level and - except maybe with the exception of the Cauchy formula - by Euler himself. Happy birthday, Leonard! June 2016: Something more about Goldbach in division algebras and for Eisenstein integers. October 23, 2018: Goldbach comets Mathtable Handout 4 pages [PDF] and Goldbach comet Slides 52 Pages [PDF] |
![]() I found the complexity of the material frustrating. How could a simple result like Vinogradovs theorem that a sufficiently large odd number can be written as the sum of three odd primes, lead to such complex mathematics? I decided to find out and study mathematics in college. |
![]() K(p) = min { 2n | 2n-q is not prime for all prime q smaller than p } |
![]() This attempt also seemed have been an early end of my experimental number theory efforts, because the next entry after day of the Kannenberg entry in the mathematical diary [1 (blue handwriting by Kannenberg)][2] shows interest in the recursion xn+2 = xn/(1+xn+1), which got me interested dynamical systems, a topic, which allowed experimentation with computers too and which appeared to me less hopeless than a 300 year old unsolved problem in number theory. My collegue Rolf Kannenberg also graduated in mathematics. I met him a last time as a graduate student, when he was one of my competitors in a 10K race organized by ASVZ in Fluntern. I continued to like to read about number theory in college too. A good book-friend has become the book of Hua, which is accessible for undergraduate students. It contains for example a detailed and managable proof of the Goldbach-Schnirelman theorem that there is a bound c for which all numbers n can be written as a sum of c prime numbers. Added July 2016: The machine was a VAX 11/785 with Ultrix-32 V.1.1 (~BSD-4.2). It came in October 1984 to ETH. The machine was called Bernina and was also the ETH Usenet News server in the 80ies. The machine had 8 Meg of RAM and 1.2 Gig of fixed disk space! Costed fully configured 400'000 Dollars. More info about this VAX 11/785. |
![]() 6,12,30,98,220,308,556,992,2642,5372,7426,43532,54244,63274, 113672,128168,194428,194470,413572,503222,1077422,3526958, 3807404,10759922,24106882,27789878,37998938,60119912,113632822, 187852862,335070838,419911924,721013438,1847133842,7473202036, 11001080372,12703943222,21248558888,35884080836,105963812462By the prime number theorem, there are infinitely many Kannenberg numbers because otherwise, prime numbers would have a positive density. The sequence can be generated easily with any computer algebra system. The above numbers (until 1847133842) were obtained with the following Mathematica line: p=2; n=3; P=Table[Prime[k],{k,2,1000}]; While[True, k=1; While[Not[PrimeQ[2n-P[[k]]]],k++]; If[P[[k]]>p,Print[{p,2n}]; p=P[[k]]]; n++; ];on a standard PC in 2 days. The Pari version p=2;n=3; { while(1,k=1; while(1-isprime(2*n-prime(k)),k++); if((prime(k)>p),print(2*n);p=prime(k));n++;) }computes things in about the same time but needs less resources (I kept one process running on an unused machine, 7473202036,11001080372,12703943222 needed a few days, 21248558888 an other week and 35884080836 an other two weeks, the last 105963812462 which belongs to the prime 2803 needed several months (P.S. adding the lines parisize = 200M and primelimit = 1000M in the Pari initialization file .gprc. slows startup time of pari but makes things faster.) In Herkomers page the Kannenberg numbers had been computed until 721013438. The picture shows the graph of all numbers (p,[log(K(p)]3). |
![]() PrimeMeasure[m_]:=Module[{}, P=Table[Prime[k],{k,1,m}]; f[x_]:=Sum[2 Cos[P[[i]] x],{i,2,m}]; Plot[f[x],{x,0,2Pi},AspectRatio->1]];The properties of the prime numbers are so encoded as generalized function on the circle. What are the properties of this object? What is its support on the circle? What are the properties of the square m2 which corresponds to the convolution of its Fourier transform? If the Goldbach conjecture is true, then all the even Fourier coefficients c2n = < e2n i x, m2 > of m2 are positive. The Fourier approach is nothing else than exponential sum m(x) = sump ei x p and the key to many results in that field. |
![]()
f(z) = sump prime zp = z2 + z3 + z5 + ...is the generating function of the prime numbers. Its square f(z)2 = sumn rn zn generate the numbers r(n) which give the number of times that n can be written as a sum of two primes. This allows to compute r(n) in an elegant way: M=10000;h[z_]=Sum[z^Prime[k],{k,M}];ListPlot[CoefficientList[Series[h[z]^2,{z,0,M}],z]]The picture to the left shows the corresponding plot of the Taylor coefficients of f(z)2 = z4 + 2 z5 + z6 + 2 z7 +.... |
![]() f(x) = sump prime ap ei p xis a function which is explicitly known. Then f(x)2 = sumn bn ei n xand the Goldbach conjecture would mean that b2n = < e2n i x, f2 >is positive for all n. If f were explicitely known, then f2 would be known and the Fourier coefficients could be computed. This might appear naive, because there is no reason, why such a function f should exist. Hardy-Littlewood could squeze out a lot with ap = log(p). |
![]() f(z) = sump ap zp = - sump log(1-1/ps) zpwhich for z=1 by Eulers "golden key" formula equal to f(1) = log prodp 1/(1-1/ps) = log (zeta(s) )The choice of an has at least one computable value. |
![]() f(z) = sump ap zp = a2 p2 + a3 p 3 + ...is analytic in the unit disc. If an decays faster, the function is analytic in the entire plane. Here is a picture of the function f(z) = sump prime zp/p!The image above shows the complex plane colored according to the values of |f(z)|. The name circle method comes from the fact that one is interested in the function on circles. |
![]() f(z) = prod (z-zi) exp(g(z))where known, then there could be hope to compute the derivatives of g(z) = f2(z) at 0, possibly with the Cauchy integral formula g(n)(0) = n!/(2 pi i) int|z|=r g(z)/z(n+1) dz. |
![]() I subsequently read that book with great joy. I especially liked the part, where the proof attempt was stopped when Uncle Pedros heared about Goedels incompleteness theorem, which would leave the possibility that Goldbachs conjecture is true but not provable. The book has a nice ending which I don't want to give away. Uncle Pedros approach to the conjecture with "beeds" seems a highly unlikely approach. It is more likely that some hard analysis analoge to Vinogradov or a new theory will break the conjecture. |
![]() |
![]() |
|