Users' Mathboxes Mathbox for Emmett Weisz < Previous   Next >
Nearby theorems
Mirrors  >  Home  >  MPE Home  >  Th. List  >   Mathboxes  >  df-setrecs Structured version   Visualization version   GIF version

Definition df-setrecs 44781
Description: Define a class setrecs(𝐹) by transfinite recursion, where (𝐹𝑥) is the set of new elements to add to the class given the set 𝑥 of elements in the class so far. We do not need a base case, because we can start with the empty set, which is vacuously a subset of setrecs(𝐹). The goal of this definition is to construct a class fulfilling theorems setrec1 44788 and setrec2v 44793, which give a more intuitive idea of the meaning of setrecs. Unlike wrecs, setrecs is well-defined for any 𝐹 and meaningful for any function 𝐹.

For example, see theorem onsetrec 44804 for how the class On is defined recursively using the successor function.

The definition works by building subsets of the desired class and taking the union of those subsets. To find such a collection of subsets, consider an arbitrary set 𝑧, and consider the result when applying 𝐹 to any subset 𝑤𝑧. Remember that 𝐹 can be any function, and in general we are interested in functions that give outputs that are larger than their inputs, so we have no reason to expect the outputs to be within 𝑧. However, if we restrict the domain of 𝐹 to a given set 𝑦, the resulting range will be a set. Therefore, with this restricted 𝐹, it makes sense to consider sets 𝑧 that are closed under 𝐹 applied to its subsets. Now we can test whether a given set 𝑦 is recursively generated by 𝐹. If every set 𝑧 that is closed under 𝐹 contains 𝑦, that means that every member of 𝑦 must eventually be generated by 𝐹. On the other hand, if some such 𝑧 does not contain a certain element of 𝑦, then that element can be avoided even if we apply 𝐹 in every possible way to previously generated elements.

Note that such an omitted element might be eventually recursively generated by 𝐹, but not through the elements of 𝑦. In this case, 𝑦 would fail the condition in the definition, but the omitted element would still be included in some larger 𝑦. For example, if 𝐹 is the successor function, the set {∅, 2o} would fail the condition since 2o is not an element of the successor of or {∅}. Remember that we are applying 𝐹 to subsets of 𝑦, not elements of 𝑦. In fact, even the set {1o} fails the condition, since the only subset of previously generated elements is , and suc ∅ does not have 1o as an element. However, we can let 𝑦 be any ordinal, since each of its elements is generated by starting with and repeatedly applying the successor function.

A similar definition I initially used for setrecs(𝐹) was setrecs(𝐹) = ran recs((𝑔 ∈ V ↦ (𝐹 ran 𝑔))). I had initially tried and failed to find an elementary definition, and I had proven theorems analogous to setrec1 44788 and setrec2v 44793 using the old definition before I found the new one. I decided to change definitions for two reasons. First, as John Horton Conway noted in the Appendix to Part Zero of On Numbers and Games, mathematicians should not be caught up in any particular formalization, such as ZF set theory. Instead, they should work under whatever framework best suits the problem, and the formal bases used for different problems can be shown to be equivalent. Thus, Conway preferred defining surreal numbers as equivalence classes of surreal number forms, rather than sign-expansions. Although sign-expansions are easier to implement in ZF set theory, Conway argued that "formalisation within some particular axiomatic set theory is irrelevant". Furthermore, one of the most remarkable properties of the theory of surreal numbers is that it generates so much from almost nothing. Using sign-expansions as the formal definition destroys the beauty of surreal numbers, because ordinals are already built in. For this reason, I replaced the old definition of setrecs, which also relied heavily on ordinal numbers. On the other hand, both surreal numbers and the elementary definition of setrecs immediately generate the ordinal numbers from a (relatively) very simple set-theoretical basis.

Second, although it is still complicated to formalize the theory of recursively generated sets within ZF set theory, it is actually simpler and more natural to do so with set theory directly than with the theory of ordinal numbers. As Conway wrote, indexing the "birthdays" of sets is and should be unnecessary. Using an elementary definition for setrecs removes the reliance on the previously developed theory of ordinal numbers, allowing proofs to be simpler and more direct.

Formalizing surreal numbers within Metamath is probably still not in the spirit of Conway. He said that "attempts to force arbitrary theories into a single formal straitjacket... produce unnecessarily cumbrous and inelegant contortions." Nevertheless, Metamath has proven to be much more versatile than it seems at first, and I think the theory of surreal numbers can be natural while fitting well into the Metamath framework.

The difficulty in writing a definition in Metamath for setrecs(𝐹) is that the necessary properties to prove are self-referential (see setrec1 44788 and setrec2v 44793), so we cannot simply write the properties we want inside a class abstraction as with most definitions. As noted in the comment of df-rdg 8040, this is not actually a requirement of the Metamath language, but we would like to be able to eliminate all definitions by direct mechanical substitution.

We cannot define setrecs using a class abstraction directly, because nothing about its individual elements tells us whether they are in the set. We need to know about previous elements first. One way of getting around this problem without indexing is by defining setrecs(𝐹) as a union or intersection of suitable sets. Thus, instead of using a class abstraction for the elements of setrecs(𝐹), which seems to be impossible, we can use a class abstraction for supersets or subsets of setrecs(𝐹), which "know" about multiple individual elements at a time.

Note that we cannot define setrecs(𝐹) as an intersection of sets, because in general it is a proper class, so any supersets would also be proper classes. However, a proper class can be a union of sets, as long as the collection of such sets is a proper class. Therefore, it is feasible to define setrecs(𝐹) as a union of a class abstraction.

If setrecs(𝐹) = 𝐴, the elements of A must be subsets of setrecs(𝐹) which together include everything recursively generated by 𝐹. We can do this by letting 𝐴 be the class of sets 𝑥 whose elements are all recursively generated by 𝐹.

One necessary condition is that each element of a given 𝑥𝐴 must be generated by 𝐹 when applied to a previous element 𝑦𝐴. In symbols, 𝑥𝐴𝑦𝐴(𝑦𝑥𝑥 ⊆ (𝐹𝑦))}. However, this is not sufficient. All fixed points 𝑥 of 𝐹 will satisfy this condition whether they should be in setrecs(𝐹) or not. If we replace the subset relation with the proper subset relation, 𝑥 cannot be the empty set, even though the empty set should be in 𝐴. Therefore this condition cannot be used in the definition, even if we can find a way to avoid making it circular.

A better strategy is to find a necessary and sufficient condition for all the elements of a set 𝑦𝐴 to be generated by 𝐹 when applied only to sets of previously generated elements within 𝑦. For example, taking 𝐹 to be the successor function, we can let 𝐴 = On rather than 𝒫 On, and we will still have 𝐴 = On as required. This gets rid of the circularity of the definition, since we should have a condition to test whether a given set 𝑦 is in 𝐴 without knowing about any of the other elements of 𝐴.

The definition I ended up using accomplishes this using induction: 𝐴 is defined as the class of sets 𝑦 for which a sort of induction on the elements of 𝑦 holds. However, when creating a definition for setrecs that did not rely on ordinal numbers, I tried at first to write a definition using the well-founded relation predicate, Fr. I thought that this would be simple to do once I found a suitable definition using induction, just as the least- element principle is equivalent to induction on the positive integers. If we let 𝑅 = {⟨𝑎, 𝑏⟩ ∣ (𝐹𝑎) ⊆ 𝑏}, then (𝑅 Fr 𝐴 ↔ ∀𝑥((𝑥𝐴𝑥 ≠ ∅) → ∃𝑦𝑥𝑧𝑥¬ (𝐹𝑧) ⊆ 𝑦)).

On 22-Jul-2020 I came up with the following definition (Version 1) phrased in terms of induction: {𝑦 ∣ ∀𝑧 (∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ∈ 𝑧)) → 𝑦𝑧)}

In Aug-2020 I came up with an equivalent definition with the goal of phrasing it in terms of the relation Fr. It is the contrapositive of the previous one with 𝑧 replaced by its complement. {𝑦 ∣ ∀𝑧 (𝑦𝑧 → ∃𝑤(𝑤𝑦 ∧ (𝐹𝑤) ∈ 𝑧 ∧ ¬ 𝑤𝑧))}

These definitions didn't work because the induction didn't "get off the ground." If 𝑧 does not contain the empty set, the condition (∀𝑤...𝑦𝑧 fails, so 𝑦 = ∅ doesn't get included in 𝐴 even though it should. This could be fixed by adding the base case as a separate requirement, but the subtler problem would remain that rather than a set of "acceptable" sets, what we really need is a collection 𝑧 of all individuals that have been generated so far. So one approach is to replace every occurrence of 𝑧 with 𝑧, making 𝑧 a set of individuals rather than a family of sets. That solves this problem, but it complicates the foundedness version of the definition, which looked cleaner in Version 1.

There was another problem with Version 1. If we let 𝐹 be the power set function, then the induction in the inductive version works for 𝑧 being the class of transitive sets, restricted to subsets of 𝑦. Therefore, 𝑦 must be transitive by definition of 𝑧. This doesn't affect the union of all such 𝑦, but it may or may not be desirable. The problem is that 𝐹 is only applied to transitive sets, because of the strong requirement 𝑤𝑧, so the definition requires the additional constraint (𝑎𝑏 → (𝐹𝑎) ⊆ (𝐹𝑏)) in order to work. This issue can also be avoided by replacing 𝑧 with 𝑧. The induction version of the result is used in the final definition.

Version 2: (18-Aug-2020) Induction: {𝑦 ∣ ∀𝑧 (∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)} Foundedness: {𝑦 ∣ ∀𝑧(𝑦𝑧 ≠ ∅ → 𝑤(𝑤𝑦𝑤𝑧 = ∅ ∧ (𝐹𝑤) ∩ 𝑧 ≠ ∅))}

In the induction version, not only does 𝑧 include all the elements of 𝑦, but it must include the elements of (𝐹𝑤) for 𝑤 ⊆ (𝑦𝑧) even if those elements of (𝐹𝑤) are not in 𝑦. We shouldn't care about any of the elements of 𝑧 outside 𝑦, but this detail doesn't affect the correctness of the definition. If we replaced (𝐹𝑤) in the definition by ((𝐹𝑤) ∩ 𝑦), we would get the same class for setrecs(𝐹). Suppose we could find a 𝑧 for which the condition fails for a given 𝑦 under the changed definition. Then the antecedent would be true, but 𝑦𝑧 would be false. We could then simply add all elements of (𝐹𝑤) outside of 𝑦 for any 𝑤𝑦, which we can do because all the classes involved are sets. This is not trivial and requires the axioms of union, power set, and replacement. However, the expanded 𝑧 fails the condition under the Metamath definition. The other direction is easier. If a certain 𝑧 fails the Metamath definition, then all (𝐹𝑤) ⊆ 𝑧 for 𝑤 ⊆ (𝑦𝑧), and in particular ((𝐹𝑤) ∩ 𝑦) ⊆ 𝑧.

The foundedness version is starting to look more like ax-reg 9050! We want to take advantage of the preexisting relation Fr, which seems closely related to our foundedness definition. Since we only care about the elements of 𝑧 which are subsets of 𝑦, we can restrict 𝑧 to 𝑦 in the foundedness definition. Furthermore, instead of quantifying over 𝑤, quantify over the elements 𝑣𝑧 overlapping with 𝑤. Versions 3, 4, and 5 are all equivalent to Version 2.

Version 3 - Foundedness (5-Sep-2020): {𝑦 ∣ ∀𝑧((𝑧𝑦𝑧 ≠ ∅) → ∃𝑣𝑧𝑤(𝑤𝑦𝑤𝑧 = ∅ ∧ 𝑣 ∈ (𝐹𝑤)))}

Now, if we replace (𝐹𝑤) by ((𝐹𝑤) ∩ 𝑦), we do not change the definition. We already know that 𝑣𝑦 since 𝑣𝑧 and 𝑧𝑦. All we need to show in order to prove that this change leads to an equivalent definition is to find

To make our definition look exactly like df-fr 5508, we add another variable 𝑢 representing the nonexistent element of 𝑤 in 𝑧.

Version 4 - Foundedness (6-Sep-2020): {𝑦 ∣ ∀𝑧((𝑧𝑦𝑧 ≠ ∅) → 𝑣𝑧𝑤𝑢𝑧(𝑤𝑦 ∧ ¬ 𝑢𝑤𝑣 ∈ (𝐹𝑤))

This is so close to df-fr 5508; the only change needed is to switch 𝑤 with 𝑢𝑧. Unfortunately, I couldn't find any way to switch the quantifiers without interfering with the definition. Maybe there is a definition equivalent to this one that uses Fr, but I couldn't find one. Yet, we can still find a remarkable similarity between Foundedness Version 2 and ax-reg 9050. Rather than a disjoint element of 𝑧, there's a disjoint coverer of an element of 𝑧.

Finally, here's a different dead end I followed:

To clean up our foundedness definition, we keep 𝑧 as a family of sets 𝑦 but allow 𝑤 to be any subset of 𝑧 in the induction. With this stronger induction, we can also allow for the stronger requirement 𝒫 𝑦𝑧 rather than only 𝑦𝑧. This will help improve the foundedness version.

Version 1.1 (28-Aug-2020) Induction: {𝑦 ∣ ∀𝑧(∀𝑤 (𝑤𝑦 → (𝑤 𝑧 → (𝐹𝑤) ∈ 𝑧)) → 𝒫 𝑦𝑧)} Foundedness: {𝑦 ∣ ∀𝑧(∃𝑎(𝑎𝑦𝑎𝑧) → ∃𝑤(𝑤𝑦𝑤 𝑧 = ∅ ∧ (𝐹𝑤) ∈ 𝑧))}

( Edit (Aug 31) - this isn't true! Nothing forces the subset of an element of 𝑧 to be in 𝑧. Version 2 does not have this issue. )

Similarly, we could allow 𝑤 to be any subset of any element of 𝑧 rather than any subset of 𝑧. I think this has the same problem.

We want to take advantage of the preexisting relation Fr, which seems closely related to our foundedness definition. Since we only care about the elements of 𝑧 which are subsets of 𝑦, we can restrict 𝑧 to 𝒫 𝑦 in the foundedness definition:

Version 1.2 (31-Aug-2020) Foundedness: {𝑦 ∣ ∀𝑧((𝑧 ⊆ 𝒫 𝑦𝑧 ≠ ∅) → ∃𝑤(𝑤 ∈ 𝒫 𝑦𝑤 𝑧 = ∅ ∧ (𝐹𝑤) ∈ 𝑧))}

Now this looks more like df-fr 5508! The last step necessary to be able to use Fr directly in our definition is to replace (𝐹𝑤) with its own setvar variable, corresponding to 𝑦 in df-fr 5508.

This definition is incorrect, though, since there's nothing forcing the subset of an element of 𝑧 to be in 𝑧.

Version 1.3 (31-Aug-2020) Induction: {𝑦 ∣ ∀𝑧(∀𝑤(𝑤𝑦 → (𝑤 𝑧 → (𝑤𝑧 ∧ (𝐹𝑤) ∈ 𝑧))) → 𝒫 𝑦𝑧)} Foundedness: {𝑦 ∣ ∀𝑧((𝑧 ⊆ 𝒫 𝑦𝑧 ≠ ∅) → ∃𝑤(𝑤 ∈ 𝒫 𝑦 𝑤 𝑧 = ∅ ∧ (𝑤𝑧 ∨ (𝐹𝑤) ∈ 𝑧)))}

𝑧 must contain the supersets of each of its elements in the foundedness version, and we can't make any restrictions on 𝑧 or 𝐹, so this doesn't work.

Let's try letting R be the covering relation 𝑅 = {⟨𝑎, 𝑏⟩ ∣ 𝑏 ∈ (𝐹𝑎)} to solve the transitivity issue (i.e. that if 𝐹 is the power set relation, 𝐴 consists only of transitive sets). The set (𝐹𝑤) corresponds to the variable 𝑦 in df-fr 5508. Thus, in our case, df-fr 5508 is equivalent to (𝑅 Fr 𝐴 ↔ ∀𝑧((𝑧𝐴𝑧 ≠ ∅) → ∃𝑤((𝐹𝑤) ∈ 𝑧 ∧ ¬ ∃𝑣𝑧𝑣𝑅(𝐹𝑤))). Substituting our relation 𝑅 gives (𝑅 Fr 𝐴 ↔ ∀𝑧((𝑧𝐴𝑧 ≠ ∅) → 𝑤((𝐹𝑤) ∈ 𝑧 ∧ ¬ ∃𝑣𝑧(𝐹𝑤) ∈ (𝐹𝑣)))

This doesn't work for non-injective 𝐹 because we need all 𝑧 to be straddlers, but we don't necessarily need all-straddlers; loops within z are fine for non-injective F.

Consider the foundedness form of Version 1. We want to show ¬ 𝑤𝑧 ↔ ∀𝑣𝑧¬ 𝑣𝑅(𝐹𝑤) so we can replace one with the other. Negate both sides: 𝑤𝑧 ↔ ∃𝑣𝑧𝑣𝑅(𝐹𝑤)

If 𝐹 is injective, then we should be able to pick a suitable R, being careful about the above problem for some F (for example z = transitivity) when changing the antecedent y e. z' to z =/= (/). If we're clever, we can get rid of the injectivity requirement. The forward direction of the above equivalence always holds, but the key is that although the backwards direction doesn't hold in general, we can always find some z' where it doesn't work for 𝑤 itself. If there exists a z' where the version with the w condition fails, then there exists a z' where the version with the v condition also fails. However, Version 1 is not a correct definition, so this doesn't work either. (Contributed by Emmett Weisz, 18-Aug-2020.) (New usage is discouraged.)

Assertion
Ref Expression
df-setrecs setrecs(𝐹) = {𝑦 ∣ ∀𝑧(∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)}
Distinct variable group:   𝑦,𝑧,𝑤,𝐹

Detailed syntax breakdown of Definition df-setrecs
StepHypRef Expression
1 cF . . 3 class 𝐹
21csetrecs 44780 . 2 class setrecs(𝐹)
3 vw . . . . . . . . . 10 setvar 𝑤
43cv 1532 . . . . . . . . 9 class 𝑤
5 vy . . . . . . . . . 10 setvar 𝑦
65cv 1532 . . . . . . . . 9 class 𝑦
74, 6wss 3935 . . . . . . . 8 wff 𝑤𝑦
8 vz . . . . . . . . . . 11 setvar 𝑧
98cv 1532 . . . . . . . . . 10 class 𝑧
104, 9wss 3935 . . . . . . . . 9 wff 𝑤𝑧
114, 1cfv 6349 . . . . . . . . . 10 class (𝐹𝑤)
1211, 9wss 3935 . . . . . . . . 9 wff (𝐹𝑤) ⊆ 𝑧
1310, 12wi 4 . . . . . . . 8 wff (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)
147, 13wi 4 . . . . . . 7 wff (𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧))
1514, 3wal 1531 . . . . . 6 wff 𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧))
166, 9wss 3935 . . . . . 6 wff 𝑦𝑧
1715, 16wi 4 . . . . 5 wff (∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)
1817, 8wal 1531 . . . 4 wff 𝑧(∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)
1918, 5cab 2799 . . 3 class {𝑦 ∣ ∀𝑧(∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)}
2019cuni 4831 . 2 class {𝑦 ∣ ∀𝑧(∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)}
212, 20wceq 1533 1 wff setrecs(𝐹) = {𝑦 ∣ ∀𝑧(∀𝑤(𝑤𝑦 → (𝑤𝑧 → (𝐹𝑤) ⊆ 𝑧)) → 𝑦𝑧)}
Colors of variables: wff setvar class
This definition is referenced by:  setrecseq  44782  nfsetrecs  44783  setrec1  44788  setrec2fun  44789  setrec2  44792
  Copyright terms: Public domain W3C validator