Understanding Transfinite Recursion and Zorn's Lemma

In summary, the proof of Zorn's lemma from the axiom of choice involves creating an increasing sequence (a_i) of sets in a partially ordered set S indexed by ordinals through transfinite recursion. This means defining a function b on the set of chains of S to S by letting b(T) be an element of S which is larger than any element of the chain, and then picking an initial element a_0 in S and defining a_w = b(\{ a_v | v<w\}) for each ordinal w>0. The proof also involves showing that this sequence exhausts S, meaning that there is an ordinal W such that \{a_0,a_1,...,a
  • #1
disregardthat
Science Advisor
1,866
34
I am trying to understand the proof of Zorn's lemma from the axiom of choice, but I do not entirely understand the step where we create a increasing sequence (a_i) of sets in a partially ordered set S indexed by ordinals. It is defined through transfinite recursion, but how does that work?

We assume that Zorn's lemma is false for a partially ordered set S. So for any element we have a larger one. One starts with defining the function b on the set of chains of S to S by letting b(T) be an element of S such that b(T) is larger than any element of the chain. T has an upper bound, so such an element exists, and by the axiom of choice this function is well-defined. Then one picks an element a_0 in S, and then for each ordinal w>0 one defines [tex]a_w = b(\{ a_v | v<w\})[/tex] by transfinite recursion. Could someone explain this step?

The proof continues by saying that this sequence exhausts S. What does that mean? My guess would be that we can identify an ordinal W with a cardinality strictly larger than that of S (e.g. the cardinality of P(S)), so that we have an surjection from S into the set [tex]\{ a_v | v \leq W\}[/tex] which has cardinality W. But I don't know if we have ordinals corresponding to cardinals.

By the way, I would prefer that the explanation does not rely on the well-ordering theorem. This brings up the question: does the existence and properties of the ordinals needed for this proof rely on the well-ordering theorem?
 
Last edited:
Physics news on Phys.org
  • #2
I'm quite satisfied to see someone who's interested in the axiom of choice. It has always been my preferred subject of mathematics...

From what I see, your proof does not rely on the well-ordering theorem. Not even the construction of b uses the well-ordering theorem (and that's the moment were one would typically need it)

Jarle said:
I am trying to understand the proof of Zorn's lemma from the axiom of choice, but I do not entirely understand the step where we create a increasing sequence (a_i) of sets in a partially ordered set S indexed by ordinals. It is defined through transfinite recursion, but how does that work?

We assume that Zorn's lemma is false for a partially ordered set S. So for any element we have a larger one. One starts with defining the function b on the set of chains of S to S by letting b(T) be an element of S such that b(T) is larger than any element of the chain. T has an upper bound, so such an element exists, and by the axiom of choice this function is well-defined. Then one picks an element a_0 in S, and then for each ordinal w>0 one defines [tex]a_w = b(\{ a_v | v<w\})[/tex] by transfinite recursion. Could someone explain this step?

I will explain this naively, if it still doesn't work out, tell me. We begin by picking an element a_0. This is a chain, so by assumption, there exists a bigger element which we call a_1. Then {a_0,a_1} is a chain, so by assumption, there is a bigger element which we call a_2. Then {a_0,a_1,a_2} is a chain, so bla bla bla. So eventually we will obtain a sequence {a_0,a_1,a_2,...,a_n,...}, so for every finite ordinal we have a point. Now this is a chain which has a larger element, we call it a_omega. And then you go on to define a_omega+1,...

Now you can easily formalize this proof. The larger element is just called b(T). And the transfinite recursion is also easily satisfied.

Jarle said:
The proof continues by saying that this sequence exhausts S. What does that mean? My guess would be that we can identify an ordinal W with a cardinality strictly larger than that of S (e.g. the cardinality of P(S)), so that we have an surjection from S into the set [tex]\{ a_v | v \leq W\}[/tex] which has cardinality W. But I don't know if we have ordinals corresponding to cardinals.

Saying that the sequence exhausts S, just means that there is an ordinal [tex]\beta[/tex] such that [tex]\{a_0,a_1,...,a_\beta\}[/tex]. To prove this, it is best not to work with cardinals, since it will involve wellorderening the set S and this will use choice...
It is best to argue by contradiction. Say that for every ordinal [tex]\beta[/tex] we have that [tex]\{a_0,a_1,...,a_\beta\}\subset S[/tex], so for every ordinal we can associate an element of S. Let ORD by the class of all ordinals, then we can find a "surjection" S--> ORD. But by the axiom of replacement (or substitution), this means that ORD is a set. This is in contradiction with Burali-Forti (which simply states that ORD cannot be a set).
 
  • #3
Thank you for your reply.

micromass said:
Now you can easily formalize this proof. The larger element is just called b(T). And the transfinite recursion is also easily satisfied.

Could you explain what transfinite recursion is? I understand the general idea, but I am not familiar with the formalism behind it. I would like to know the necessary steps to perform a transitive recursion. I am not so familiar with ordinals. Could you give the general definition of the ordinals as well, or a good reference to where I could read about the construction of the ordinals? I guess transfinite recursion is just the way of defining a class function from the class of ordinals to some domain. Or maybe a well-ordered set as well.

I understand the rest of the proof.

Is it true that each set there is a unique ordinal W such that there is a order-preserving bijection between a well-ordering of the set and the set of all ordinals less and equal to W? Thus similar to cardinals, only that the bijections need to be order-preserving.
 
Last edited:
  • #4
Transfinite recursion can be used to define a "function" f with domain ORD which satisfies what you want.

You'll need the following:
- you'll have to f(0)
- you'll have to desribe f(a+1) with ordinal a.
- for any limit ordinal a, you'll need to describe f(a) with ordinals <a

For example, we can use recursion to define a function which multiplies by 2.
- f(0)=0 (indeed, we want that 2.0=0)
- f(a+1)=f(a)+2
- if a is a limit, then [tex]f(a)=\max\{f(\beta)~\vert~\beta<a\}[/tex]

Now, you'll need to know ordinals well for this. To learn about ordinals, I suggest reading "introduction to set theory" from Hrbacek and Jech. I feel that this is the easiest book...
 
  • #5
I borrowed the book Sets, Logic and Categories of the Springer publications from the university library, and I know the theory up to ordinal induction. It does not mention transfinite recursion however, and I don't really feel confident in the explanation on wikipedia. I would appreciate if you could explain it in terms of transfinite induction.
 
Last edited:
  • #6
Hmmm, it is impossible to state this with transfinite induction alone. Transfinite induction can only be used to prove things of the form "for every ordinal holds...". Transfinite recursion is something completely else. It is used to construct certain functions. And, unlike induction, recursion relies heavily on the axiom of replacement (substitution).

If you really want to know about recursion, I would suggest that you read a set theory book like Hrbacek and Jech. Also online lecture notes like http://www.cis.upenn.edu/~byorgey/settheory/ could come in handy to...
 
Last edited by a moderator:

1. What is transfinite recursion?

Transfinite recursion is a mathematical concept that involves defining a sequence of objects or functions in an infinite, hierarchical pattern. It is a way of extending a recursive process beyond the finite realm and into the realm of infinite cardinal numbers.

2. How does transfinite recursion differ from regular recursion?

Transfinite recursion differs from regular recursion in that it involves an infinite number of steps, while regular recursion only involves a finite number of steps. This means that transfinite recursion can be used to define and manipulate objects or functions that exist in the transfinite realm.

3. What is the significance of transfinite recursion in mathematics?

Transfinite recursion is significant in mathematics because it allows for the exploration and understanding of mathematical concepts that exist beyond the finite realm. It has been used to solve various mathematical problems and has applications in fields such as set theory, topology, and logic.

4. What are some examples of transfinite recursion?

One example of transfinite recursion is the construction of the ordinal numbers, which are used to measure the size of infinite sets. Another example is the Cantor-Bendixson derivative, which is a way of simplifying a topological space by removing elements in a recursive manner.

5. Are there any limitations to transfinite recursion?

Yes, there are limitations to transfinite recursion. One of the main limitations is that it can only be used in well-defined mathematical systems, such as set theory or topology. It also requires a deep understanding of mathematical concepts and can be difficult to grasp for those without a strong mathematical background.

Similar threads

  • Set Theory, Logic, Probability, Statistics
Replies
9
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
14
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
27
Views
3K
  • Set Theory, Logic, Probability, Statistics
Replies
15
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
6
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
28
Views
5K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
11
Views
4K
  • Set Theory, Logic, Probability, Statistics
Replies
6
Views
2K
Back
Top