
Grok Goldbach, Grab Gold 249
Caseman writes, "Are you a closet mathematician who wants to come out? British publisher Tony Faber is offering a cool million bucks to the first would-be math head to prove the infamous Goldbach conjecture. Yeah, the one about every even number being the sum of two primes. Impossible, you say? Remember Fermat's Last Theorem? It stood unproven for 350 years until a recent effort yielded a proof. Read The London Times article about the challenge. "
a question (Score:1)
Maybe I've been hallucinating, but I don't think so. Really, is anyone else still amused by this? I'm not.
That's some fellatious reasoning you've got there. (Score:1)
But really, what keeps n+2=q+r from being true (where q+r are prime), and n+4=s+t, and n+6=u+v, etc.?
Re:It doesn't make sense to offer prizes for proof (Score:1)
> to the GC, just the same was as done for FLT.
> The winnings will go not to the person who does
> the most work towards it, but whoever supplies
> the piece of the puzzle that happens to be last.
But in mathematics it can be just as difficult (if not more so) to realise that there is some connection between two hitherto unrelated pieces of mathematics as it is to think up something original. Everybody recognises Wiles(*) as the guy who proved FLT, and everybody recognises that WIles' work couldn't have been done without earlier work of Ribet, Frey, Serre,
((*) Actually, the proof of FLT is more correctly attributed to Wiles and Taylor. Wiles uses a property of Hecke algebras that is proved in a companion paper to Wiles' `Modular forms, elliptic curves and Fermat's Last Theorem' that is contained in a supplementary paper by Taylor and WIles.)
> This might encourage work on the GC, but it
> also might discourage publication of such work,
> because the mathematicians haven't quite
> finished the proof.
Unlikely. GC is sufficiently important to be independent of some monetary prize being given away as a marketing gimmick. It will give amateur mathematicians and cranks something to do for the next few months though...
As for discouraging publication, this certainly wouldn't happen in the UK. Our universities are publicly funded and every 4 years have to go through the `Research Assessment Exercise' (RAE). Essentially, each university and each department within each university is graded according to how good the research output from the academic staff is. The grade each department gets determines how much money the government is willing to give in grant income. Doing well in the RAE is far more important (in terms of prestige for the university and promotion prospects for the staff involved) than deliberately witholding papers from publication because of some prize (no matter how large!). Any substantial progress towards GC would be of value when it comes to the RAE.
Going back to the article, the time-frame seems unrealistic. A paper must be submitted to a journal with 2 years - the only way this is likely to happen is if somebody is almost all the way to proving GC already and has just not announced it yet. But to ask for publication within 4 years is pushing it. GC is sufficiently important to attract a lot of attention and interest and the journal to which it is submitted will want to make sure the proof is correct. Hence the refereeing process is likely to be lengthy. Then there's the fact that most journals have large backlogues meaning that it can sometimes take 3 years for a paper that has been accepted for publication to actually appear. Maybe GC is sufficiently important to be `fast-tracked' though...
The most interesting thing about the article is that the prize is a 6 figure sum but the insurance premium is a 5 figure sum. So, roughly speaking, the insurance company thinks there is a 1 in 10 chance of somebody actually proving GC and getting it in print within 4 years! These insurers sound like they know something the mathematical community doesn't - maybe we should hire them for the next RAE
Re:Public Key Encryption (Score:1)
GCD(n, fact(floor(sqrt(n))))
where GCD is the greatest common divisor function (easily calculated using Euclidean math), fact is a factorial function (which can be calculated using the gamma function), and the rest should be obvious. This will return the smaller of the two factors. The other can be found simply by dividing the answer into n. Understand, though, that this is only guaranteed to work if n is the product of two primes -- other numbers may or may not work (24 is a good example of one that won't work).
But before you run off and celebrate that you have a quick way of breaking encryption codes, realize that most encryption uses extrememly large numbers, and calculating the factorial of such large numbers is rather futile.
--
c program for finding goldbach values (Score:1)
#include <stdio.h>
#include <limits.h>
#include <math.h>
static int isPrime(int x)
{
int result = 1;
if(x > 1)
{
int middle = sqrt((double)x);
int i = 0;
for(i = 2; result && i < middle; i ++)
if(x % i == 0)
result = 0;
}
else
result = 0;
return(result);
}
int main(int argc, char **argv)
{
int i = 0;
for(i = 4; i < INT_MAX; i += 2)
{
int j = 0;
int found = 0;
for(j = 2; !found && j < i; j ++)
if(isPrime(j) && isPrime(i - j))
found = 1;
if(found)
printf("%d = %d + %d\n", i, j, i - j);
else
printf("Goldbach Conjecture FALSE for: [%d]\n", i);
}
return(0);
}
Re:c program for finding goldbach values (Score:1)
Re:Proof possible? (Score:1)
For a proof by induction, you express what you're trying to prove as a statement with a parameter n - call it P(n). Then you show that it is true for P(1) (or some other n), and that if P(n) is true (for any n) then it implies that P(n+1) is true.
Then, for example, P(378) must be true because it is implied by P(377), which is implied by P(376), and so on down to P(2), which is implied by P(1), which you have shown is true separately.
If you've proved that P(n) implies P(n+1) for any n, without assuming any special cases such as that n is prime, then it must be true for all n >= 1.
Proving induction: the proof I've seen is a proof by contradiction based on the principle that the natural numbers are well-ordered. This means that any non-empty set of natural numbers must contain a lowest element.
Now suppose you have a statement, P, that P(1) is true, and that P(n) implies P(n+1). To prove that this is sufficient to show that P(n) is true for all n, first assume it isn't - ie there are some values, k, for which P(n) is not true.
Now let S be the set of all of these values, ie S = {k : P(k) is false}. As we have assumed that P(n) is not true for every n, S cannot be empty, so it must have a least element, x, by well-ordering. x cannot be 1 since we have shown P(1) is true separately.
Therefore we have that P(x) is false, but P(x-1) is true since x is the least element of S. But x-1 is a natural number because x is, so by the inductive step P(x-1) must imply P(x). Therefore P(x) must be true, but by definition it is false. This is a contradiction, and as all the logical reasoning since the assumption was sound, the assumption must be wrong - ie P(n) is true for all natural numbers n, so S is empty and x doesn't exist.
AndyRe:c program for finding goldbach values (Score:1)
Link in your math library. Try adding -lm to your link line, but this is compiler-dependent of course.
--j
Re:it was Chebyshev/Erdös, *not* Ramanujan (Score:1)
This is picky, but his proof appeared when he was 19, not 20. His proof is a thing of beauty.
--j
Automatic Theorem Proving (Score:1)
Maybe in XEmacs 22?
Re:I know! I know! ...uh, nevermind. (Score:1)
See Mathworld [wolfram.com] on the issue.
Re:Proof possible? - example. (Score:1)
1. 2 = 3
we can multiply through by 0 to get:
2. 0 = 0
So (1) must be true.
Re:I know! I know! ...uh, nevermind. (Score:1)
Re:I know! I know! ...uh, nevermind. (Score:1)
Definition of prime number? (Score:1)
Re:I know! I know! ...uh, nevermind. (Score:1)
Re:definition of a prime (Score:1)
Re:The mistake (Score:1)
ebw
RE:It doesn't make sense to offer prizes for proof (Score:1)
This will encourage those lonely mathematician to do something come out of their shell. Anyways competion always help make things more interesting.
http://theotherside.com/dvd/ [theotherside.com]
I wonder (Score:1)
Being one of 20 math majors at school I wonder if this is a challenge the other math majors
(And maybe some CS people ) are willing to partake in. I guess I need to read up on my Number Theory
I think that is one of my next classes to take
http://theotherside.com/dvd/ [theotherside.com]
Re:Definition of prime number? (Score:1)
"A prime number is a positive integer having _two_ unique positive integer factors, 1 and itself"
1 is therefore let off the hook, because 1 only has one factor - itself, not the two required by this definition.
Re:Proof possible? (Score:1)
Re:Formula for calculating the nth digit of pi (Score:1)
I figured it was probably possible - my previous message was just politely trying to find out whether the first poster knew what he was talking about.
Formula for calculating the nth digit of pi (Score:1)
I'd be interested to see that proof, since a formula for calculating the nth digit of pi [mathsoft.com] does exist. The only catch is, the formula calculates the nth digit of pi in hexadecimal.
If there really is a proof that it's impossible, then presumably that's for base 10 numbers? Do you have a reference?
Here's a proof. (Score:1)
Poked around with this thing for an hour or so. Seems like if you just start enumerating all the pairs of prime numbers and sum them up you construct all the even numbers. That won't float by itself though, cause the primes logarithmically taper out as you go...
I asked the google miester [google.com] whether it had any ideas, and it came up with this site's proof. [mathematical.com]
It's only 8 pages, and it seems pretty decent. I followed it till about page 4, and then I saw those capital pi product symbols and decided to run away.
-Snoot
Re:Probability ... (Score:1)
Re:Proof possible? (Score:1)
Other sources of good, understandable infinity:
Mind Tools and Inifinity and the Mind by Rudy Rucker
The Book of Numbers by John H. Conway and Guy (don't know his first name, offhand.
Re:unattackable problems (Score:1)
Cantor's Continuum Hypothesis states that the "cardinality" (roughly count) of the real numbers is 2^(cardinality of integers). This is usually written using the Hebrew alpha, but I can't find this on my keyboard. See any of the references I gave in an earlier comment for more details.
Anyway, it has been proven that this hypothesis cannot be proven or disproven with current set theory. I won't pretend to understand either proof at all, but they are generally well accepted.
Re:Actually, it might not be so bad. (Score:1)
- 2*N-prime = prime
for your equation.Re: (Score:1)
Proof by induction (Score:1)
Whoops, I missed a step (Score:1)
2.75) Combining steps 2 and 2.5, it must be the case that For all N, N=4
--
Re:Cheap shot weakens Slashdotter's interests (Score:1)
this is made by one of those "people with relatively weak intellectual immune systems."
The following quote comes at the end of a recent email from Bush to Gore.
"Thank you for your email. This Internet of yours is a wonderful invention"
take it as you will, i wanted McCain.
Re:So how would one go about claiming this prize? (Score:1)
Re:You need something like "Proof by contradiction (Score:1)
do i still get the prize money?
Re:So had Fermat actually proved his own theorem?? (Score:1)
Fermatt was a genius. And he was a joker. So, in a way, Fermatt's Last Theorem is *still* unresolved. Wiles' proof is NOT the proof Fermatt had, if he had one.
A few quick known mathematical facts (Score:1)
- The conjecture is true for numbers less than 10^14
- All sufficiently large even numbers are the sum of a prime and (the product of 2 primes). Note that this product is thus composite, but not very!! So this fact is kinda close to the GC.
- All sufficiently large odd numbers are the sum of 3 primes.
- If the generalized Riemann Hypothesis is true, all odd numbers bigger than 5 are the sum of 3 primes.
- There will generally be multiple representations of a given number as the sum of two primes. The count of these representations is large, and is suspected to go as n/( log(n)*log(n) )
This is probably too late to reach many people, but oh, well.
- Brian
Re:Proof possible? (Score:1)
Hah, your frend must be a pretty crappy programmer then, I've written a program that searches all the primes in prettymuch linear time, 10,000,000 takes about 3 or so seconds (on a p200, when I last ran it, btw)
Larger then four (Score:1)
Disproof. (Score:2)
Re:Proof possible? - example. (Score:2)
1 + 3 + ... + n = (n + 1)^2 / 4
We know that, for n = 5, 1 + 3 + 5 = (5 + 1)^2 / 4 = 9, and so the formula is true for n = 5. Now assume that the formula is correct for all n. What happens if we work it for n + 2?
1 + 3 + ... + n + (n + 2) = ((n + 2) + 1)^2 / 4 - substitute n+2 for n in the formulas ... + n
(n + 1)^2 / 4 + (n + 2) = ((n + 2) + 1)^2 / 4 - substitute the assumed true value in for 1 + 3
(n + 1)^2 / 4 + (n + 2) = (n + 3)^2 / 4 - add n + 2 and 1
(n + 1)^2 + 4(n + 2) = (n + 3)^2 - Multiply through by 4
(n^2 + 2n + 1) + (4n + 8) = n^2 + 6n + 9 - multiply everything out
n^2 + 6n + 9 = n^2 + 6n + 9 - add everything up. This is true for all n.
What all that means is that if the formula holds for n, then it must hold for n + 2. And since it holds for n + 2, it must hold for n + 2 + 2, and so on into infinity. I came up with one n (5) for which the formula works, so it must work for all odd numbers larger than five. I don't have to test all the odd numbers into infinity - the infinitely recursive nature of induction does that for me in something that can be expressed in a noninfinite amount of data (and a good thing, too - I don't have enough bandwidth to post an infinite-length comment to /.)
Actually, it might not be so bad. (Score:2)
This, in turn, means that for every integer I, there is a circle, such that the centre is at I and the intersection of the circle with the positive natural numbers will occur at two prime numbers.
Now, how does this make things any easier? Simple. If the distribution of primes is =totally= random, this statement HAS to be false. Randomness means that by knowing any number of points, you cannot deduce an unknown point. Here, we have shown that by knowing one point and a centre, we can deduce another point. This implies an inherent relationship between the prime numbers.
Thus, IF AND ONLY IF the prime numbers are non-random, Goldbach's Theorum is correct. If, however, they ARE random, it would be impossible to define a geometric relationship, which (as shown) does exist.
Re:Actually, it might not be so bad. (Score:2)
x/log(x). Read more at http://www.utm.edu/research/ primes/howmany.shtml [utm.edu]
--
People never think about algorithms :-( (Score:2)
As you noticed, this is pretty inefficient.
A much better way to slice this problem is to look at the numbers as an array of bits. For instance the first 800,000 numbers is a 100 K string. Start off with a block of 0's. Generate a vector of primes. Shift the vector by 2. OR it with your first vector. Shift by 1 more. OR it with your first vector. Shift it by 2 more. OR it again. Shift it by 2 again, then 4, then 2... (We are walking through cumulative shifts equivalent to the number of primes.)
You can make it faster still by having your bitmap being only the even numbers. You will have to do a bit of thinking. But you should find that this approach is significantly faster and cuts down tremendously on the memory. You will also find that after a few shifts you will have covered most of the territory. At some point it becomes more efficient to track down each one you have not tracked down and search for primes that add up to that one...
Cheers,
Ben
In fact (Score:2)
Likewise the probability result strongly suggests that the Riemann conjecture is true. But again, it gives no insight into the real problem.
However when you compute statistics, perfect match with the probability prediction.
Cheers,
Ben
Re:Proof possible? (Score:2)
For example, prove that every single possible even number is the sum of two odd numbers. Instead of looking at all the examples, we'll go by definition.
Definition of even number: 2x, where x is an integer.
Definition of odd number: 2y-1, where y is an integer.
So if the even number is 2x, that is the same as 2x-1 + 1, which is two odd numbers added together.
That was a really simply example, but hopefully you get the idea. No matter what even number you choose, it fits that definition. 993928302390 fits the definition, and plugging it into the equation, the two odd numbers are 993928302389 and 1. I just didn't have to do as much work to get there as you will
--John
Re:It doesn't make sense to offer prizes for proof (Score:2)
An interesting counter-proposal to address this dilemma is proposed by a New Zealand economist named Ronnie Horesh, at http://www.geocities.com/WallStreet/9856/ [geocities.com], albeit in a different context. Horesh's idea is a social policy bond issued by a government or somebody else with deep pockets and a social agenda. The bond is redeemable for a large fixed sum when the goal is achieved. Until then, the bond is a good that can be bought and sold like a share of stock. Like a share of stock, its price will rise as the goal moves closer to being accomplished. The purpose of inventing these bonds is to delegate the implementation of social goals to free market forces.
If a mathematician felt confident that he had made an important contribution, but didn't feel confident that he'd complete the proof himself, he could buy bonds cheaply as soon as they were issued, and hold onto them until the proof was complete. When the proof was made public, each bond would become redeemable for a large fixed sum, and the guy who bought early would make big bucks.
Re:Proof possible? (Score:2)
Mathematics is replete with proofs about infinite sets of numbers. My personal favorite (mostly because I actually understand it) is Cantor's hypothesis:
Cantor wanted to prove that even though there's an infinite number of integers, and an infinite number of "real" numbers, there are clearly more real numbers than integers. So he devised this infinitely large list. You take every real number (even ones of infinite length) and write them down on a convenient piece of infinitely large graph paper, one digit per square. Finally, you number each one in the left hand column with a counting number (positive integer).
Now, since you've used graph paper, you can show that there's a real number not on the list. You start at the first real number, take the digit in the first column, and change it to something else. Go to the second number, take the digit in the second column, and change it. And so on, and so forth, blah blah, nth digit from nth number, etc. In the end, you have a new real number which can't be duplicated anywhere on the list, because it's sure to vary from every other number by at least one digit. Furthermore, even if you add the new number to the bottom of the list, you haven't solved the problem: you can make a brand new number which still doesn't appear anywhere on the list just by repeating the process. This kind of proof utilizes what's called a "diagonalization method", since the number you wind up constructing can be viewed by drawing a diagonal line across the list of reals you made up.
Anyway, this is getting way too long. The upshot: there are plenty of examples in mathematics of people making proofs about infinite sets of numbers, and they don't have to sit down with calculators for an infinite length of time to write them. More to the point, since no one actually can enumerate all of the primes (because there are infinitely many of them, see), no computer program is going to be solving this one any time soon.
Re:I know the proof. (Score:2)
Re:Probability ... (Score:2)
Yeah, but close only counts in horseshoes, hand grenades, and Inter-Continental Ballistic Missiles.....
Zero is neither odd nor prime. (Score:2)
A prime number is some integer that is divisble only by 1 and itself. Since a denominator of zero is undefined, zero cannot divided itself. Therefore, zero is not prime.
So had Fermat actually proved his own theorem?? (Score:2)
Now that FLT has been proven, what about Fermat's comment about his "great proof"? Do modern mathematicians believe he was joking? Or did he have some different, simpler proof? That he would have the same lengthy page proof seems unlikely, but it would definitely fit the description of "too large for the margin of this book"!
Re:c program for finding goldbach values (Score:2)
Why? (Score:2)
--
You might want to rethink that... (Score:2)
Does a counterexample count? (Score:2)
Time to get a cluster searching, eh?
Re:So had Fermat actually proved his own theorem?? (Score:2)
-rpl
"pidgin C" - then is "gcc -pedantic" broken? (Score:2)
Well I don't have a copy of the standard, but my fragment compiles without warnings on gcc 2.95.2 using the -pedantic option. Since that's meant to make gcc complain about non-ANSI (i.e. ISO) extensions, does that mean this is a bug in gcc? Are you sure it hasn't been added to the standard since the version you've seen?
Hmm the standard says that ^= and -= are right-associative and have the same precedence. The associativity should force the expression to be evaluated as I claim.
Would you care to provide a reference saying where in the ISO standard I should look to see what you're saying?
Sequence points (Score:2)
But = also does not define a sequence point, so by that argument "a=b=c=d=2" is also undefined. What am I missing here?
Re:Definition of prime number? (Score:2)
Ok, I lied slightly, it is more normal to say "any *natural* number" rather than "any number". A natural number means 1, 2, 3,
Again, the definitions are tailored specially so that things are neat to state. To a mathematician, "a product" doesn't neccessarily mean two or more numbers. Just "5" by itself gets counted as a product. And the empty product, the product of 0 numbers, is arbitrarily defined as being "1". So the prime factorisation of 5 is "5", and the prime factorisation of 1 is "".
You're probably thinking that the "empty product equals 1" thing is a bit bizzare. It's worth comparing with addition. What do you get if you add zero numbers together? Answer: 0. 0 is the number that makes no difference when you add it to things. Similarly, 1 is the number that makes no difference when you multiply things by it. Hmmm, I'm not sure if that makes it any clearer, but hey.
Re:A couple of questions (Score:2)
Factorising isn't exactly very "useful". It's more that it's kind of the underlying thing that causes the numbers to work like they do. Without the Fundamental Theorem, mathematicians couldn't have any sort of a grip on what the hell multiplication "is". With the Fundamental Theorem, we know that multiplication has this nice, orderly property which allows us to understand it well enough to prove more difficult stuff.
So you're right, to an engineer, or a scientist, factorization isn't very useful, because these people just "use" arithmetic, as a sort of contraption that works. The Fundamental Theorem is only Fundamental to a mathematician, who is interested in studying the contraption itself.
If a and b are two non-zero integers, it replaces a with the highest common factor of a and b (clobbering b in the process).
it was Chebyshev/Erdös, *not* Ramanujan (Score:2)
Who says mathematicians can't write poetry? Hmmm.
Re:Definition of prime number? (Score:2)
"Words have their meanings to help you understand", as Lauren Savoy would have it. The word "prime" is defined in the way which makes the word most useful. The central fact about primes is that "any number can be expressed uniquely as a product of prime factors" (ignoring the order in which you write the factors). This is regarded as so fundamental that it's called "The Fundamental Theorem of Arithmetic".
If we were to accept 1 as a prime, there'd be lots of ways to prime-factor a number, e.g. 9 = 3*3 = 3*3*1 = 3*3*1*1*1*1. So to keep the Fundamental Theorem true, we'd have to say "except 1" in it. There's also lots of other theorems where you'd need to say "except 1" for similar reasons, so it works out as more convenient to exclude 1 when defining the word "prime".
For this reason also, we exclude negative numbers from being prime. Otherwise, 9 = 3*3 = -3*-3 etc.
Re:a reverse approach. (Score:2)
This is true; IIRC it was proved by Ramanujan.
Another useful fact: (number of primes less than N) tends to N / log(N) as N tends to infinity. This is called the prime number theorem.
Re:I know! I know! ...uh, nevermind. (Score:2)
but I dont think so
Re:Proof possible? (Score:2)
something useful (Score:2)
http://www.research
for your information (Score:2)
So how would one go about claiming this prize? (Score:2)
I have a serious question here, and I hope that someone might be able to answer it.
From the tone of the article, it sounds like they are expecting somebody in the mathematical community to submit it, if anybody does. How would say, me, your average slashdot reader, go about claiming such a prize? I have no idea how one would go about publishing something in a mathematical journal, and with such a prize at stake how would one prevent one's proof from being stolen by someone else (like a person you find to "help" you get it published)?
Contest Philanthropy (Score:2)
It does make sense to have lots of people offering lots of little prizes all over the place.
As I've pointed out in The Bowery Prize for Amateur Rocketry [geocities.com]:
The Internet provides a unique opportunity to promote space technology via prize awards. Individuals can post a public pledge of money as a prize award for any technical objective they see fit, to be disbursed at their sole discretion. With enough diversity of people and technical objectives, there would be a "fuzzy" gradient of incentive created for ever higher performance amateur rockets, not dependent on the credibility of any one organization's political structure for "fairness" or good technical judgement. A periodic posting of all such prize award offers in this, and related, newsgroups, would serve as an ongoing challenge to technical excellence and as an inspiration for young people.
This sort of approach to what should be called "Contest Philanthropy" will address the concern that people will hold off publishing important but obscure work.
Here's how:
If a bunch of mathematicians believe a particular popular conjecture is critically dependent on some obscure, but hard, math getting done, then all they need to do is post a prize award that promises they will give half their winnings for the popular conjecture to the mathematician who does the obscure work. If enough credible mathematicians target a particular obscure piece of work, then the philanthropists can start providing direct prize awards for that support work.
Re:I know! I know! ...uh, nevermind. (Score:2)
The mistake (Score:2)
Correction (Score:2)
1) Assume 1 == 1
2) Either 1 == 1 or N = 4 for all N
3) 4 is the sum of two primes
4) by 2 and 3, for all N, N is the sum of two primes
5) Since all numbers are the sum of two primes, all odd numbers are the sum of two primes (QED)
actually, no (Score:2)
Finding that number is left as an exercise for the reader. Heh.
Best regards,
SEAL
definition of a prime (Score:2)
Thus, negative numbers are not prime.
Best regards,
SEAL
Re:Proof possible? (Score:2)
Cheap shot weakens Slashdotter's interests (Score:2)
Slashdotter's should consider reading "Brill's Content" magazine for its recent story on the media's incompetent handling of the "Gore invented Love Canal" story. Then they should ask themselves if a guy as smart as Gore, who actually does have well-reported techno-wonk credentials, would really have claimed to have "invented the Internet."
Gore was one of the leading proponents of the "information superhighway." Now, if he wants to talk more about it, he runs the risk of a bunch of know-it-nothings laughing at him and hurling once-funny cheap shots.
This "Gore says he invented the Internet (har-har)" stuff is a silly mental virus propagated by people with relatively weak intellectual immune systems, IMHO. That's not to say they are stupid, just susceptible. Gore fouled up his line, true. But anyone interested in Slashdot should still be for him.
Re:I think this is a job for distributed.net (Score:2)
In which case, you have proved the conjecture and should be collecting your prize rather than posting to slashdot.....
If on the other hand the above proof does not exist, then there must exist a counterexample. Therefore searching by brute force may be a perfectly valid approach.
Re:So how would one go about claiming this prize? (Score:2)
Having said that, I somehow doubt that anyone who isn't already a fairly academic mathematician will be able to prove this one. It's a famous problem, and you can bet that virtually every simple route to a proof will have been tried already.
Of course, I would be extremely amused if someone with no mathematical background whatsoever were to prove it
Re:How about something like SETI... (Score:2)
You could of course *disprove* the conjecture by finding a counter-example, i.e. by finding a positive even number X>2 such that X is not the sum of two primes.
It would certainly be fun if you were to find such a beastie, but I think you might be in for a long search
Re:Definition of prime number? (Score:2)
you wrote The word "prime" is defined in the way which makes the word most useful. The central fact about primes is that "any number can be expressed uniquely as a product of prime factors" (ignoring the order in which you write the factors). This is regarded as so fundamental that it's called "The Fundamental Theorem of Arithmetic".
This fundamental theorem seems to me to be wrong in principle, it requires 1 not to be a prime, where does 0 fit in (or is it not a number). What about the primes themselves if 1 is not a prime, or have you just mis-stated the theorem?
What are the prime factors of 5?
Re:Proof possible? (Score:2)
The trick is to use an abstract and generalised proof, for example:
by contradiction: you say that the conjecture is untrue, then extrapolate some fact from this which is patently untrue. Hence the initial conjecture must be true.
by induction: you show that for some instance n the conjecture is true. You then show that for the general step n+1 the conjecture must also be true through the use of some logical argument, rather than just testing it. Hence the conjecture must be true for all instances.
abstraction: find some analogous system and proove it for that. For example, when doing analysis of AC curcuits the common technique is to consider the current and voltage as phasors (ie. V*e^i*theta)and manipulate the phasors which is much simpler. When the manipulation is complete you can simply take the real/imaginary part of the result, and you have your answer. This makes use of the identity that e^i*theta = cos theta +i*sin theta. (I shall leave the proof as an excercise for the student [grin])
Re:Definition of prime number? (Score:2)
Re:It doesn't make sense to offer prizes for proof (Score:2)
On the Nature of Proof (Score:2)
Goldbach's conjecture is very probably true; mathematicians and number theorists don't need to be reminded of that and likewise don't need to be bothered by "amateurs" (really, lay-people without formal education in number theory) who suggest that the conjecture is false. In all matters of fact, while I am sure that Faber and his erudite associates would be happy to be presented with a valid counter-example, said mathematicians probably aren't losing any sleep over the possibility. What Tony Faber is looking for and what's worth $1m to him is not the labors of the unitiated towards a hopeless cause but is instead the establishment of the conjecture's logical truth by means of established principles of number theory -- he wants to know how this elegantly simple and ostensibly true statement may be derived from postulates and previous proofs, not, regrettably, whether or not it is true.
There has been some grumbling over the apparent fact that Faber is trying to keep the proof of Goldbach's conjecture within the mathematical community. If the conjecture is proved, it will be through the collaborative efforts of the professional mathematic community -- I simply can't see someone without extensive background in number theory really having a chance of winning the contest. Remember that the proof of Fermat's theorem was by no stretch of the imagination simple and elegant. If there were an elegant proof to Goldbach's conjecture, it would almost certainly have already been realized by mathematicians who are just as intelligent and, if anything, better-versed in matters of number theory than folks like you and me, and if there is a proof, I suggest that its development will not be a feat accomplishable by anyone who doesn't make their living in mathematics.
And before anyone tries to make this proof a black&white, true/false issue (too late?), let us remember the work of mathematician Kurt Gödel:
Do I underrate the ingenuity of the human mind? I hope so; however, I would like to think I am merely being realistic. It seems to me that blind beginner's luck has been drastically overrated in response to the proposed contest.
To those of you interested by the prospect of testing every reasonably-large even number to find a counter-example and thus disprove the conjecture, and especially to those of you who have suggested that the resources of distributed.net be used in so doing, please refer back to sela, 3/19. I'm afraid you'll be wasting your time.
Re:Disproof. (Score:3)
If you disprove the theorem then you pay them $1 million.
I know! I know! ...uh, nevermind. (Score:3)
Al's got the proof! (Score:3)
Al Gore told me he's got the proof to this theory - he did it while he was inventing the Internet, and Open Source and all that.
My Proof (Score:3)
2) Then clearly this follows Either 1 == 0 OR N = 4 for all N
3) Obviously 4 is the sum of two primes (2+2)
4) Combining steps 2 and 3 we get For all N, N is the sum of two primes
5) Step 4 states that all numbers are the sum of two primes, therefore all odd numbers are the sum of two primes.
QED
--
Suggested reading (Score:3)
The first step any Goldbach-conjecture-prover-wannabee should take is to read the book ``Additive Number Theory: the Classical Bases'' by Melvyn B. Nathanson, in Springer's Graduate Texts in Mathematics (number 164). It contains a description of the sieve methods and the Hardy-Littlewood-Ramanujan circle methods used to prove that sort of results in additive number theory. It gives a proof of the closes results known to Goldbach's conjecture: Vinogradov's theorem that every sufficiently large odd integer is the sum of three primes, and Chen's theorem that every even integer is the sum of a prime and a number which is at most product of two primes.
If you think it must be interesting reading, you're dead wrong. I have read many boring proofs in my life, but none of them came even close to the total lack of interest, the absolute and utter dullness of the analytic estimations of additive number theory, as found in the book in question. Even the (much easier) proof of Waring's problem (every integer is the sum of a bounded number of k-th powers, where the bound depends only on k) is unconceivably dull, and it is nothing compared to the more subtle results in the second part of the book.
Now why couldn't they offer a million dollars for proving the Riemann hypothesis. At least that's a worthwile result (nobody cares in the least about Goldbach's conjecture, but the Riemann hypothesis has many fascinating consequences).
Fermat's last theorem (Score:3)
Some code.... (Score:3)
// Lists all pairs of primes that sum to
// Copyright Chaz Randles 2000
// Licence: GPL
#include
#include
using std::cout;
using std::endl;
using std::vector;
vector * get_primes(int maxPrime) {
vector* result = new vector();
vector::iterator it;
bool isPrime;
result->push_back(2);
for (int candidate = 3; candidate begin(); it!=result->end(); ++it) {
if (!(candidate % *it)) {
isPrime=false;
}
}
if (isPrime) result->push_back(candidate);
}
return result;
}
bool find(vector* vec, int data) {
vector::iterator it;
bool found=false;
for (it=vec->begin(); it!=vec->end(); ++it) {
if (*it==data) {
found=true;
break;
}
}
return found;
}
int main(int argc, char** argv) {
if (argc!=2) {
cout " * primes=get_primes(num);
vector::iterator it;
for (it=primes->begin(); it!=primes->end(); ++it) {
if(find(primes, num - (*it))) {
cout num '\t'*it'\t'num - (*it)endl;
}
}
delete primes;
return 0;
}
// Apologies for poor quality code - done in 10 mins
Re:So how would one go about claiming this prize? (Score:3)
Having said all that, the other poster was right; if this were easy someone would have done it already. At the very least you will need enough mathematical background to write with the correct terminology and symbols. Really you shouldn't seriously attempt this sort of research without first becoming familliar with what other people have tried and why it didn't work. Please don't annoy the journal editors with bogus submissions (not that I think you were planning to, but it bears repeating nonetheless).
-rpl
You need something like "Proof by contradiction" (Score:3)
No, you can do tricks like "proof by contradiction". That works as follows:
Doesn't quite work ... (Score:3)
That means that "there is some way to get to any even number by adding together less than 300,000 primes". It doesn't mean "no number can be obtained by adding more than 300,000 primes". The second statement is clearly false. e.g. if
then a is the sum of 300,001 primes.
It doesn't make sense to offer prizes for proofs. (Score:4)
Mathematics is a great cooperative venture. It wouldn't be easy to identify one mathematician who did the largest share of the work even if they tried to do it that way, and if they did it would probably be Gauss or Poincare or some other dead heavyweight genius.
This might encourage work on the GC, but it also might discourage publication of such work, because the mathematicians haven't quite finished the proof.
--
I know the proof. (Score:5)
Unfortunately, the slashdot comment submission box is too small to post the whole proof. I shall leave the proof to the reader.
Not to discourage anyone but.. (Score:5)
Yes, it is possible that the Goldbach conjecture may be proved or disproved by a lay person but it's far more likely to be solved by someone with a sound grasp of lots of number theory who is already studying the properties of numbers for a living.
BTW I have a truly marvellous proof of the Goldbach conjecture but there is no margin on the submit form to write it in :)
Probability ... (Score:5)
An interesting question is: assuming prime numbers are "randomly" distributed, what is the probability that an even number won't be the sum of two odd numbers?
If the probability is rather high, yet we did not find any such even number, it can be an indication there may be some "meat" in goldbach theorem. On the other hand, if such probability is exremely low, than the verification of goldbach's theorem up to 4e+15 means nothing
Well, according to Gauss' estimate for prime number density around sufficiently large n, the density is 1/log(n). To find pi(n), which is the number of prime numbers up to n, we need to integrate this, but pi(n)=n/log(n), so we can make life simpler and over-estimate the probability by taking the smaller number.
Now, given the number of prime numbers up to n, pi(n), if we choose x to be a prime number smaller than n, than the probability its pair: (n-x) is a prime number is: 2*pi(n)/n. (I multiplied by 2 since itcannot be possibly an even number, so no need to consider them).
The probability that it is not a prime number is therefore (1-2*pi(n)/n).
Since there are pi(n) different prime numbers to choose from, the probability that an even number is not the sum of two prime numbers is:
(1-2*pi(n)/n)^pi(n).
So what is the probability for numbers around 1e+15? If we use the estimate for pi(n), we get:
pi(n)=2e+13
(1-2*pi(n)/n) = 0.959
Taking the last number by the power of pi(n), the result is that the probability is around:
10^-(4e11)
That is - an extremely small probability!!!
Conclusion:
----------
If Goldbach's theorem is false, the probability that an even number won't be the sum of two prime numbers is so small that we may need to check around 10^(10^11) numbers to find a counter example. This number is so big no computer could possibly handle it now or any time soon
In other words: Don't bother to find a counter-example.
Sela
Didn't anyone take a college math course? (Score:5)