Proving a+b=b+a in Axiomatic Construction of Naturals

  • Thread starter sutupidmath
  • Start date
In summary, the conversation discusses proving the property of commutativity for addition in the natural numbers using Peano's axioms. One person shares their approach of proving it using induction and the associativity of addition, while another person presents a layman's test using buttons in a box. The concept of arithmetic being axiomized from everyday experiences is also mentioned.
  • #1
sutupidmath
1,630
4
Prove that a+b=b+a?

Hi all,

I am learning the axiomatic construction of Naturals, from the Peano axiom. Hence proving every property of naturals based solely on these axioms. I have come to some point where i am not very sure that what i am doing is okay, since there is not an explicit proof of this, it is left as an exercise to the reader.

I am trying to prove that for every a,b from naturals, a+b=b+a.

Here it is how i am going about it

[tex] S=\{b\in N | a+b=b+a\}[/tex] where a is any fixed natural numeber.

My attempt is to show that S is an inductive set.
We first need to prove that

[tex] 1\in S(?)[/tex]

Here it is how i go about it, this is the part that i am not sure,

Using another theorem, where it says that a+1=a', where a' is the successor of a...this in fact is the theorem where they define the operation '+'. But to prove this, the author defines this: 1+b=b' for every b in N.------(1)

Now on my proof above, i am not using the definition of '+' but rather this other definition 1+b=b' for every b in N. ... so my question is am i allowed to do this, or there is another way of going about it.

Here is how i go about it
a+1=a' from the definition 0f +
=1+a from definition (1)
this actually means that 1 is an element of S. the rest i can easily prove if this is correct.

So?

thnx
 
Mathematics news on Phys.org
  • #2


I did much the same thing, proving all the properties of the natural numbers from Peano's axioms, the going on to integers, rational numbers, and real numbers.

The definition of addition should have two parts: a+ 1 is defined as a' and, if b is NOT 1, so that b= c' for some c, a+ b is defined as (a+ c)'.

Also, I used a separate induction to prove that a+ 1= 1+ a: let U(a) be the set of all a such that a+ 1= 1+ a. It is clear that 1 is in that set. Assume a is in that set. Then a'+ 1 is, by definition (a')'. 1+ a', by the second part of the definition of addition, is (1+ a)' and the rest follows from the fact that a+ 1= 1+ a.
 
  • #3


Knowing that you mathematicians must have a mathematical proof for everything, let's try a layman’s test of a + b = b + a.

If I put 3 buttons in a box, then put 4 more buttons in the box, I have 7 buttons. If I take them out and put 4 buttons in, followed up by 3 buttons, I again have 7.

Understanding that one example, or even Z examples, does not make a proof, can we derive a layman’s proof from this?

Maybe: If we put some portion ( X ) of N buttons in a box, then put in the remainder of N buttons, ( Y ), then we have N buttons in the box. If we do this in reverse, we always have N buttons in the box.

I could add some more verbiage to ensure preciseness, but the concept is clear.
 
  • #4


First off, a+b is not always equal to b+a. Mathematicians have invented several number systems in which addition is not commutative.

You are talking about the positive integers, which are described by the Peano postulates. Addition is commutative in the positive integers. One way to prove this is by using induction in conjunction with the associativity of addition.

First, prove that a+1=1+a for all positive integers a
  1. Assume the hypothesis is true for some a.
  2. (a+1)+1 = (1+a)+1 by assumption.
  3. (1+a)+1 = 1+(a+1) by associativity of addition.
  4. (a+1)+1 = 1+(a+1) by transitivity of equality.
  5. a+1=1+a for a=1 by reflexivity of equality (all natural numbers are equal to themselves).
  6. i]a[/i]+1=1+a for all positive integers a by induction.

Now prove a+b=b+a:
  1. Assume the hypothesis is true for some positive integers a, b.
  2. (b+1)+a = (1+b)+a by 1+k=k+1.
  3. (1+b)+a = 1+(b)+a) by associativity of addition.
  4. 1+(b)+a) = (b)+a)+1 by 1+k=k+1.
  5. (b)+a)+1 = (a)+b)+1 by assumption.
  6. (a)+b)+1 = a+(b+1) by associativity of addition.
  7. (b+1)+a = a+(b+1) by transitivity of equality.
  8. b+a = a+b for b=1 by 1+k=k+1.
  9. b+a = a+b for all positive integers a, b by induction.
 
  • #5


bkelly said:
Knowing that you mathematicians must have a mathematical proof for everything, let's try a layman’s test of a + b = b + a.

If I put 3 buttons in a box, then put 4 more buttons in the box, I have 7 buttons. If I take them out and put 4 buttons in, followed up by 3 buttons, I again have 7.

Understanding that one example, or even Z examples, does not make a proof, can we derive a layman’s proof from this?

Maybe: If we put some portion ( X ) of N buttons in a box, then put in the remainder of N buttons, ( Y ), then we have N buttons in the box. If we do this in reverse, we always have N buttons in the box.

I could add some more verbiage to ensure preciseness, but the concept is clear.

It's interesting that you bring this up. Arithmetic is axiomized from the everyday experience with quantities of whole objects. The commutative law is obtained by inductive reasoning; then we proceed to list it as an axiom for the deductive system we wish to build (arithmetic). Because a result obtained by inductive reasoning can never be certain, it may be that the commutative law sometimes does not hold in nature (as much as this is against our intuition). If this is the case, arithmetic is not a theory which fits the behavior of whole objects.
 
  • #6


HallsofIvy said:
I did much the same thing, proving all the properties of the natural numbers from Peano's axioms, the going on to integers, rational numbers, and real numbers.

The definition of addition should have two parts: a+ 1 is defined as a' and, if b is NOT 1, so that b= c' for some c, a+ b is defined as (a+ c)'.

Also, I used a separate induction to prove that a+ 1= 1+ a: let U(a) be the set of all a such that a+ 1= 1+ a. It is clear that 1 is in that set. Assume a is in that set. Then a'+ 1 is, by definition (a')'. 1+ a', by the second part of the definition of addition, is (1+ a)' and the rest follows from the fact that a+ 1= 1+ a.

Well, i guess this is what i was looking for. I did not look at it carefuly, i am in a rush right now, but i am going to come to it later, so if i have anything unclear, i will get back to u guys.

Because i was only looking how to prove that a+1=1+a, because i can do the rest.

THank you guys.
 

1. What is the Axiomatic Construction of Naturals?

The Axiomatic Construction of Naturals is a mathematical approach to defining the natural numbers (1, 2, 3, ...) using a set of axioms or fundamental rules. These axioms are used to prove properties of the natural numbers, such as addition and multiplication.

2. What does it mean to prove a+b=b+a in Axiomatic Construction of Naturals?

Proving a+b=b+a in Axiomatic Construction of Naturals means that for any two natural numbers a and b, the sum of a and b is equal to the sum of b and a. This is known as the commutative property of addition, which states that the order of numbers does not affect the result of addition.

3. How is a+b=b+a proven in Axiomatic Construction of Naturals?

In Axiomatic Construction of Naturals, the commutative property of addition is derived from the Peano axioms, which are a set of five axioms that define the natural numbers. Using these axioms and basic logical reasoning, it can be proven that a+b=b+a for all natural numbers a and b.

4. Why is it important to prove a+b=b+a in Axiomatic Construction of Naturals?

Proving a+b=b+a in Axiomatic Construction of Naturals is important because it demonstrates the consistency and completeness of the axioms used to define the natural numbers. It also shows that the properties of addition, such as the commutative property, hold true for all natural numbers.

5. Can the commutative property of addition be proven in other number systems?

Yes, the commutative property of addition can be proven in other number systems, such as the real numbers or complex numbers. However, the proof may differ depending on the axioms and definitions used in the specific number system.

Similar threads

Replies
3
Views
1K
Replies
1
Views
627
Replies
1
Views
762
Replies
9
Views
428
Replies
3
Views
2K
  • General Math
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
9
Views
1K
  • Calculus and Beyond Homework Help
Replies
1
Views
574
  • Calculus and Beyond Homework Help
Replies
3
Views
808
  • Calculus and Beyond Homework Help
Replies
1
Views
511
Back
Top