1

The problem is,

Prove that for each positive natural number $a$ there exists a natural number $b$ such that $b{++}=a$.

Using only the followings,

  1. Peano Axioms.

Axiom 2.1

<p>$0$ is a natural number.</p>

<p><strong>Axiom 2.2</strong></p>

<p>If $n$ is a natural number then $n{+}{+}$ is also a natural number. (Here $n{+}{+}$ denotes the successor of $n$ and previously in the book the notational implication has been bijected to the familiar $1, 2\ldots$).</p>

<p><strong>Axiom 2.3</strong></p>

<p>$0$ is not the successor of natural number; i.e. we have $n{+}{+}\neq 0$ for every natural number $n$.</p>

<p><strong>Axiom 2.4</strong></p>

<p>Different natural numbers must have different successors; i.e., if $n, m$ are natural numbers and $n\neq m$, then $n{+}{+}\neq m{+}{+}$.</p>

<p><strong>Axiom 2.5</strong></p>

<p>Let $P(n)$ be any property pertaining to a natural number $n$. Suppose that $P(0)$
is true, and suppose that whenever $P(n)$ is true, $P(n{+}{+})$ is also
true. Then $P(n)$ is true for every natural number $n$.</p>
  1. Definition of Addition: Let $m$ be a natural number. We define, $0 + m = m$ and suppose we have inductively defined the addtion $n + m$ then we define, $(n{++})+m=(n+m){++}$. Where $n{++}$ is the successor of $n$.

  2. Commutativity, Associativity and Cancellation Laws of Addition.

  3. Definition of Positivity: A natural number $n$ is said to be positive if $n\neq 0$.

I thought to apply induction on $a$ but I can't figure out how to prove the base case and what value would be apt for $a$ because if we take $a=0{++}$ then we are bound to assume that,

There doesn't exist any natural number between $0$ and $0{++}$.

Which I can't prove. Recently I have asked another question here whose proof also depended on the vital proof of the problem I have given. It will be very nice if someone can give some outline of the argument.

  • Why do you need to prove that there is no natural number "between" $0$ and $0++$? If you apply induction then, by the axiom of induction, you can prove it for all natural numbers, and no other information about them is needed. – KSmarts Jan 02 '15 at 15:49

2 Answers2

2

Use induction on the statement "$n=0$ or there exists a natural number $b$ such that $b++=n$."

Showing this for $n=0$ is obvious. Do you need help on showing the induction step?

ADDED: Here is the induction step (in summary: you can fill in the small gaps).

Assume the statement is true for $n$. There are two cases: $n=0$ or $n \ne 0$.

If $n=0$, then $0++=n++$, and the statement is true for $n++$.

If $n\ne 0$, we must have $b++=n$ for some $b$ (since we assumed the statement is true for $n$). Then $(b++)++=n++$, and again the statement is true for $n++$.

ADDED EVEN LATER:

@Andreas Blass gave a much shorter and better induction step in his comment. Here it is:

Assume the statement is true for $n$ (although we will not use this assumption). Then let $b=n$. We trivially get $b++=n++$, so the statement is true for $n++$.

Rory Daulton
  • 32,288
  • Yes it would be great. How can we prove from here that there doesn't exist any natural number between $0$ and $0{++}$? –  Jan 02 '15 at 15:07
  • If $n\ne0$ why do we must have $b{++}=n$? Note that this is the problem to be proved. –  Jan 02 '15 at 15:16
  • @user170039: Does my additional edit answer your second comment? – Rory Daulton Jan 02 '15 at 15:18
  • 1
    @user170039: We cannot yet prove "there doesn't exist any natural number between $0$ and $0++$" since you have not yet defined the concept "between." Which definition are you using? – Rory Daulton Jan 02 '15 at 15:21
  • 1
    The induction step can be done much more easily. The statement to be proved, given the induction hypothesis, is "$n++=0$ or there exists $b$ such that $b++=n++$." To prove it, ignore the induction hypothesis (because we don't need it) and notice that $b=n$ works. – Andreas Blass Jan 02 '15 at 15:21
  • @AndreasBlass: Yes, you are correct. I am so embarrassed! I'll add this to my answer. Thanks so much! – Rory Daulton Jan 02 '15 at 15:24
1

Define the predicate $P(n)$ to be $n=0$ or $\exists m: S(m) = n$, where $S$ denotes the successor function (which you write $++$). Now show this by induction.

Henno Brandsma
  • 242,131