vote up 1 vote down star

I want to preface this question with the assumption that math and programming are on some level indistinguishable. Also, at many colleges, computer science is a subgroup of the math dept. so I'm assuming there are lots of mathematicians on this site. This is why I felt it appropriate to ask the following question on SO. That said, if you disagree, obviously feel free to vote down or vote to close.

Enough disclaimer. Question starts here:

Lots of comp-sci/math/philosophy/logic books I've seen have discussed how this or that person wrote a proof that 1 + 1 = 2 and how this is not as easy as it sounds. Every time I see this claim I wonder what's so hard about proving 1 + 1 = 2? Obviously, it seems intuitive to me (and to everyone else in the world) so there must be some logic-based nuance that we're missing.

What are the roadblocks that make proving simple addition so difficult?

flag

It's a good question for a math forum, but SO is not a math forum. Now, if you have some programming problem that requires a proof of 1+1=2 to solve, that's another matter... – David Jul 10 at 16:54
You'll first have to know what those symbols 1 and 2 mean. – avakar Jul 10 at 16:57
1  
Actually, I thought 1 + 1 = 10. :-) – tvanfosson Jul 10 at 17:00
1  
Recursion, Turing machines, computability, automatons, etc. and here, the construction of N and Peano axioms are programming related. What would be programming without this? – Eric Bainville Jul 10 at 17:01
2  
Well, the totally appropriate SO proof would be: assertEquals( 1 + 1, 2 ). Proven – Bill K Jul 10 at 17:10
show 4 more comments

closed as not programming related by David, McWafflestix, Thomas Owens, dmckee, Jonathan Sampson Jul 10 at 16:57

6 Answers

vote up 2 vote down check

In short answer to your question, WHY is it that 1 + 1 = 2 is intuitive to you? Is it that that's what you learned? Is it that that's the definition of "2"? And if it's the definition, then the question becomes how do you prove a definition without reference to the definition itself?

link|flag
1  
but it is also base on axiomatic mathematic (the Peano Axiom) – txwikinger Jul 10 at 17:08
vote up 0 vote down

Much of the difficulty comes from the fact that basic arithmetic is riddled with axioms, which, by their nature, are assumed to be true, rather than proofs of trueness.

For example, let's change the basic axiom that we are working on the integer number line. Instead we are in two dimensional space. We have two vectors, one = (1,0), the other = (0,1). These are both unit vectors of length 1. Adding them together gives (1,1), whose length is sqrt(2).

This would be an instance where adding a unit to another unit does not equal 2.

Of course, this is again axiomatic. It all depends upon the assumptions you start from. The difficulty is getting all the scientists and mathematicians to come to a consensus that a given set of axioms are appropriate for the given problem.

link|flag
1  
I don't really like "riddled with" when applied to axioms. Maths starts from agreed axioms and then discovers interesting things that result. Consider all of plane geomtery, start with a very few axioms and end up proving some very interesting Cirle theorems. Beautiful! Then tweak the axioms very slightly (say to accommondate working on the surface of a sphere) and see what happens. – djna Jul 10 at 18:48
Riddled with is probably too strong of a statement, to be sure. Most mathematics, especially that field called "real mathematics" attempt to start from as few axioms as possible. I was more intending to point that "basic arithmetic" is actually built on a significant set of assumptions. Even Euclidian geometry has 5 assumptions. Change that set of assumptions, as you've noted, and in a non-Euclidian geometry, my same example could be composed so that 1 + 1 is <, =, or > 2. – Marcus Griep Jul 10 at 19:08
vote up 2 vote down

What do you get when you add one raindrop to one raindrop?

Why does this not disprove 1 + 1 = 2?

link|flag
Fascinating. I imagine here is where we have to separate the concept of that 1 and 2 are from instances of 1 thing and 2 things. – Dinah Jul 10 at 18:20
And so we see why intuition is not sufficient, and we start defining terms ... and then we find how hard it is to do that ... and then we discover that proving the "obvious" is not so easy – djna Jul 10 at 18:45
vote up 1 vote down

Take a look at the definition of a Monoid and see this proof.

link|flag
vote up 0 vote down

Here is a thread about it.

link|flag
vote up 2 vote down

It's Intuitive != A proof

Partly it is difficult to prove because it is intuitive.

Take a look at the proof to understand the nuances: http://mathforum.org/library/drmath/view/51551.html

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.