Homepage Solution manuals Terence Tao Analysis I Exercise 2.2.2 (Existence and uniqueness of predecessor)

Exercise 2.2.2 (Existence and uniqueness of predecessor)

Prove Lemma 2.2.10. (Hint: use induction.)

Lemma 2.2.10 Let a be a positive number. Then there exists exactly one natural number b such that b++ = a.

Answers

How to think about the exercise. This exercise asks us to show that it makes sense to talk about the predecessor of a positive number. For instance, the predecessor of 3 is 2. Why is there a hypothesis that a must be a positive number? Because by axiom 2.3 the number 0 does not have a predecessor (within the set of natural numbers).

This exercise is almost a standard induction exercise, but not quite. The one subtlety is that the inductive hypothesis is never used. This might seem suspicious to you, but it’s actually harmless.

Model solution. Let P(a) be the statement "If a is positive, then there is a unique natural number b such that b++ = a." We shall induct on a. The base case is vacuously true, since 0 is not a positive number (definition 2.2.7).

Now suppose inductively that P(a) is true. We must show that P(a++) is true. To show that P(a++) is true, it suffices to show that there is a unique number b such that b++ = a++ (this is because given statements p,q, if q is true, then pq is also true no matter what p says). To do this, we must show two things: (1) there is a natural number b such that b++ = a++; (2) if c is a natural number such that c++ = a++, then c = b. To show (1), let b := a. Then indeed we have b++ = a++. To show (2), let c be a natural number such that c++ = a++. Then by axiom 2.4, we see that c = a. But we also know b = a, so c = b as required. This closes the induction.

Source: Issa Rice’s blog.

User profile picture
2020-03-16 00:00
Comments

Proof. We practically have to prove two assertions:

1.
(Existence) Let a be a positive number. Then there at least one natural number b such that b + + = a.
2.
(Uniqueness) Let a be a positive number. Then there at most one natural number b such that b + + = a.

To demonstrate existence, we induct on a. We start with the base case, i.e, we look for some b such that

b + + = 1

By Definition 2.1.3, 1 = 0 + +, i.e, one is the successor of 0. By Axiom 2.1, 0 is a natural number and by setting b := 0 we are thus done.
Now suppose inductively that we have proven the statement for some positive a, i.e, there is a natural number b such that b + + = a. Now consider a + +, i.e., we want to prove that there exists a natural number c such that c + + = a + +. Since a is a natural number (by induction hypothesis), the statement follows immediately by setting c := a. This closes the induction.

We now show uniqueness. Let b be a natural number such that b + + = a and let c be another natural number such that c + + = a. We therefore have b + + = c + +. By Axiom 2.4, we must have b = c. Thus, the predecessor of a is always the same number, i.e., unique. □

Remark 1. Technically, we are not inducting over the natural numbers, but over the positive numbers - a subset of natural numbers. This is quite harmless, as we are simply running induction over the index of the positive numbers, i.e., the zeroth positive number 1, the first positive number 2 and so on. This can be done for any set that can be enumerated using the natural numbers (see Chapter 3). If, however, one wants to remain pedantic on this issue, then one could equivalently prove the statement: "for any natural number a, either a = 0 or there exists a natural number b with b + + = a".

User profile picture
2022-05-07 03:47
Comments