Orbit-Finite Sets

Total Page:16

File Type:pdf, Size:1020Kb

Orbit-Finite Sets Slightly Infinite Sets Mikołaj Bojanczyk´ September 11, 2019 The latest version can be downloaded from: mimuw.edu.pl/∼bojan/paper/atom-book Contents Preface page v Part I Automata for data words 1 1 Register automata 4 1.1 Nondeterministic register automata 5 1.2 Emptiness and universality for register automata 10 1.3 Alternating register automata 13 1.4 Most models of register automata are inequivalent 22 2 Two variable logic and data automata 25 2.1 Data automata 25 2.2 Two-variable first-order logic on data words 30 Part II Orbit-finite sets 43 3 Sets with atoms and orbit-finiteness 46 3.1 Sets with atoms 47 3.2 Orbit-finiteness 52 4 Representing orbit-finite sets 64 4.1 Set builder expressions 65 4.2 Hereditarily orbit-finite sets 73 5 Case studies 79 5.1 Graph reachability 79 5.2 Orbit-finite automata 83 5.3 Pushdown automata and context-free grammars 91 5.4 Graph homomorphisms 96 iii iv Contents 5.5 Systems of equations 101 6 Least supports 104 6.1 Least supports 104 6.2 Extended example: deterministic automata 109 7 Homogeneous atoms 113 7.1 Homogeneous structures 113 7.2 The Fra¨ısse´ limit 117 7.3 Examples of homogeneous atoms 127 7.3.1 The random graph 127 7.3.2 Bit vectors 130 7.3.3 Trees and forests 136 Part III Computation with atoms 139 8 Computable functions on sets with atoms 142 8.1 While programs with atoms 143 8.2 Computational completeness of while programs 151 9 Fixed dimension polynomial time 160 9.1 Fixed dimension polynomial time on set builder expressions 161 9.2 A semantic version 172 10 Turing machines 180 10.1 Orbit-finite Turing machines 181 10.2 For bit vector atoms, P , NP 190 10.3 For equality atoms, Turing machines cannot be deter- minised 194 Part IV Solutions to the exercises 203 Bibliography 263 Bibliography 263 Author index 269 Subject index 270 Preface This book is about algorithms that run on objects that are infinite, but finite up to certain symmetries. Under a suitably chosen notion of symmetry, such ob- jects – called orbit-finite sets – can be represented, searched and processed just like finite sets. The goal of the book is to explain orbit-finiteness and demon- strate its usefulness. Most of the examples of orbit-finite sets are taken from automata theory, since this is where orbit-finite sets began. v PARTONE AUTOMATA FOR DATA WORDS 3 We begin with an investigation of concrete automata models for words over infinite alphabets. The goal of this part is to build intuitions for the more ab- stract models that will be presented in the later parts. 1 Register automata A data word is a word where each letter carries two pieces of information: a label from a finite set, and a data value from an infinite set. Here is a picture: labels from {a, b} a a b a b b a b b b a a 1 1 2 4 2 5 3 7 1 8 2 9 data values from {1, 2, 3,...} For the rest of Part I, fix a countably infinite set A. Elements of this set, called the atoms, will be used for the data values. Formally, a data word over a finite set of labels Σ is defined to be a word in w 2 Σ × ∗: |{z} |{z}A label data value When describing properties of data words, we will be able to test the labels explicitly by asking questions like does the second letter have a 2 Σ as its label? but we will only test the data values for equality, e.g. ask do the third and fifth letters have the same data value? Later in the book, we will formalise what it means to only test data values for equality, but for now the intuitive understanding should be enough. ∗ Example 1.1. By abuse of notation, we assume that a word in A is also a data word, which uses no labels. Here are examples of languages of data words, in all of these examples we use no labels: 4 1.1 Nondeterministic register automata 5 (1) the first data value is the same as the last data value; (2) some data value appears twice; (3) no data value appears twice; (4) the first data value appears again; (5) every three consecutive data values are pairwise distinct. We will introduce automata models for data words that recognise the above languages. These models use registers to talk about data values. 1.1 Nondeterministic register automata We begin our discussion with some of the simplest automaton models for data words, namely nondeterministic and deterministic register automata1. Definition 1.2 (Nondeterministic register automaton). The syntax of a nonde- terministic register automaton consists of: • a finite set Σ of labels; • a finite set Loc of locations2; • a finite set R of register names; • an initial location `0 2 Loc and a set of accepting locations F ⊆ Loc; • a transition relation register valuations, i.e. partial functions from registers to atoms z }| { R R δ ⊆ Loc × (A [ f?g) × Σ × A × Loc × (A [ f?g) (1.1) | {z } |{z} | {z } states input states subject to an equivariance condition described below. The automaton is used to accept or reject data words with labels Σ, i.e. words where each position is labelled by Σ × A. After processing part of the input, the automaton keeps track of a state, which is defined to be a location plus a register valuation. Initially, the state consists of the initial location and a com- pletely undefined register valuation. For each input letter, the state is updated according to the transition relation δ, and the automaton accepts if at the end 1 Register automata where introduced in Kaminski and Francez (1994), under the name of finite memory automata, together with a decidability proof for the emptiness problems in the deterministic and nondeterministic one-way cases (Theorem 1.7 in this text). The presentation using syntactic and semantics equivariance, in particular Lemma 1.3, is essentially due to Bojanczyk´ (2013); Bojanczyk´ et al. (2014). 2 We use the name location instead of state because the state of the automaton will store additional information, namely the contents of the registers. 6 Register automata of the input word the state is accepting, in the sense that the location belongs to the accepting set. How is the transition relation described? Since the state space is infinite, some restrictions on the transition relation are needed to represent it in a finite way. We choose the following restriction, called equivariance: the transition relation can only compare atoms with respect to equality, and is not allowed to depend on any specific atoms. Equivariance can be formalised in two different ways, as described below. Semantic equivariance. A permutation π : A ! A of the atoms (i.e. a bi- jection from the atoms to themselves) can be applied to states in the natural way, and therefore also to triples in the transition relation δ (the locations and undefined values are not affected, only the atoms). Here is a picture: input letter with red label and atom 1 1 2, ⊥ 1, 2 π(1) = 5 π(2) = 3 state with orange location, π atom 2 in the first register, and undefined second register 5 3, ⊥ 5, 3 We say that δ is semantically equivariant if the set of transitions is invariant under actions of atom permutations, i.e. π(t) 2 δ for every t 2 δ and every permutation π : A ! A: The advantage of semantic equivariance is that the definition is short, and easy to generalise to other models like alternating automata or pushdown automata. The disadvantage is that it is not clear how to represent a semantically equiv- ariant transition relation, e.g. for the input of a nonemptiness algorithm. The converse situation holds for syntactic equivariance, as presented below. Syntactic equivariance. We say that δ is syntactically equivariant if it can be defined by a finite boolean combination of constraints of the following types: (1) the location in the source / target state is ` 2 Loc; (2) the label in the input letter is a 2 Σ; (3) register r 2 R is undefined in the source / target state; (4) the atom in the input letter is the same as in register r 2 R of the source / target state; 1.1 Nondeterministic register automata 7 (5) register r 2 R of the source / target state stores the same atom as register s 2 R of the source / target state. In the above, source / target means that the constraint can be instantiated with either “source” or “target”. For example, in item (5), there are four possibilities regarding the choice of source vs target, since the choice is taken independently for r and s. Lemma 1.3. Semantic and syntactic equivariance are the same. Proof It is not difficult to see that semantically equivariant subsets of the set (1.1) are closed under boolean combinations. Since the bijections of data values do not affect satisfaction of the constraints 1-5 used in the definition of syntactic equivariance, it follows that syntactic equivariance implies semantic equivariance. We now show that semantic implies syntactic. Define an orbit of transitions to be a set of the form fπ(t): π is a permutation of the atomsg for some transition t 2 δ. Here is a picture of an orbit of transitions: 1 2, ⊥ 1, 2 2 3, ⊥ 2, 3 5 1, ⊥ 5, 1 4 3, ⊥ 4, 3 ..
Recommended publications
  • A Linear Order on All Finite Groups
    Preprints (www.preprints.org) | NOT PEER-REVIEWED | Posted: 5 July 2020 doi:10.20944/preprints202006.0098.v3 CANONICAL DESCRIPTION OF GROUP THEORY: A LINEAR ORDER ON ALL FINITE GROUPS Juan Pablo Ram´ırez [email protected]; June 6, 2020 Guadalajara, Jal., Mexico´ Abstract We provide an axiomatic base for the set of natural numbers, that has been proposed as a canonical construction, and use this definition of N to find several results on finite group theory. Every finite group G, is well represented with a natural number NG; if NG = NH then H; G are in the same isomorphism class. We have a linear order, on the quotient space of isomorphism classes of finite groups, that is well behaved with respect to cardinality. If H; G are two finite groups such that j j j j ≤ ≤ n1 ⊕ n2 ⊕ · · · ⊕ nk n1 n2 ··· nk H = m < n = G , then H < Zn G Zp1 Zp2 Zpk where n = p1 p2 pk is the prime factorization of n. We find a canonical order for the objects of G and define equivalent objects of G, thus finding the automorphisms of G. The Cayley table of G takes canonical block form, and we are provided with a minimal set of independent equations that define the group. We show how to find all groups of order n, and order them. We give examples using all groups with order smaller than 10, and we find the canonical block form of the symmetry group ∆4. In the next section, we extend our results to the infinite case, which defines a real number as an infinite set of natural numbers.
    [Show full text]
  • A Foundation of Finite Mathematics1
    Publ. RIMS, Kyoto Univ. 12 (1977), 577-708 A Foundation of Finite Mathematics1 By Moto-o TAKAHASHI* Contents Introduction 1. Informal theory of hereditarily finite sets 2. Formal theory of hereditarily finite sets, introduction 3. The formal system PCS 4. Some basic theorems and metatheorems in PCS 5. Set theoretic operations 6. The existence and the uniqueness condition 7. Alternative versions of induction principle 8. The law of the excluded middle 9. J-formulas 10. Expansion by definition of A -predicates 11. Expansion by definition of functions 12. Finite set theory 13. Natural numbers and number theory 14. Recursion theorem 15. Miscellaneous development 16. Formalizing formal systems into PCS 17. The standard model Ria, plausibility and completeness theorems 18. Godelization and Godel's theorems 19. Characterization of primitive recursive functions 20. Equivalence to primitive recursive arithmetic 21. Conservative expansion of PRA including all first order formulas 22. Extensions of number systems Bibliography Introduction The purpose of this article is to study the foundation of finite mathe- matics from the viewpoint of hereditarily finite sets. (Roughly speaking, Communicated by S. Takasu, February 21, 1975. * Department of Mathematics, University of Tsukuba, Ibaraki 300-31, Japan. 1) This work was supported by the Sakkokai Foundation. 578 MOTO-O TAKAHASHI finite mathematics is that part of mathematics which does not depend on the existence of the actual infinity.) We shall give a formal system for this theory and develop its syntax and semantics in some extent. We shall also study the relationship between this theory and the theory of primitive recursive arithmetic, and prove that they are essentially equivalent to each other.
    [Show full text]
  • Commentationes Mathematicae Universitatis Carolinae
    Commentationes Mathematicae Universitatis Carolinae Antonín Sochor Metamathematics of the alternative set theory. I. Commentationes Mathematicae Universitatis Carolinae, Vol. 20 (1979), No. 4, 697--722 Persistent URL: http://dml.cz/dmlcz/105962 Terms of use: © Charles University in Prague, Faculty of Mathematics and Physics, 1979 Institute of Mathematics of the Academy of Sciences of the Czech Republic provides access to digitized documents strictly for personal use. Each copy of any part of this document must contain these Terms of use. This paper has been digitized, optimized for electronic delivery and stamped with digital signature within the project DML-CZ: The Czech Digital Mathematics Library http://project.dml.cz COMMENTATIONES MATHEMATICAE UN.VERSITATIS CAROLINAE 20, 4 (1979) METAMATHEMATICS OF THE ALTERNATIVE SET THEORY Antonin SOCHOR Abstract: In this paper the alternative set theory (AST) is described as a formal system. We show that there is an interpretation of Kelley-Morse set theory of finite sets in a very weak fragment of AST. This result is used to the formalization of metamathematics in AST. The article is the first paper of a series of papers describing metamathe- matics of AST. Key words: Alternative set theory, axiomatic system, interpretation, formalization of metamathematics, finite formula. Classification: Primary 02K10, 02K25 Secondary 02K05 This paper begins a series of articles dealing with me­ tamathematics of the alternative set theory (AST; see tVD). The first aim of our work (§ 1) is an introduction of AST as a formal system - we are going to formulate the axi­ oms of AST and define the basic notions of this theory. Do­ ing this we limit ourselves really to the formal side of the matter and the reader is referred to tV3 for the motivation of our axioms (although the author considers good motivati­ ons decisive for the whole work in AST).
    [Show full text]
  • A Fine Structure for the Hereditarily Finite Sets
    A fine structure for the hereditarily finite sets Laurence Kirby Figure 1: A5. 1 1 Introduction. What does set theory tell us about the finite sets? This may seem an odd question, because the explication of the infinite is the raison d’ˆetre of set theory. That’s how it originated in Cantor’s work. The universalist, or reductionist, claim of set theory — its claim to provide a foundation for all of mathematics — came later. Nevertheless I propose to take seriously the picture that set theory provides of the (or a) universe and apply it to the finite sets. In any case, you cannot reach the infinite without building it upon the finite. And perhaps the finite can tell us something about the infinite? After all, the finite is all we have to go by, at least in a communicable form. The set-theoretic view of the universe of sets has different aspects that apply to the hereditarily finite sets: 1. The universalist claim, inasmuch as it presumably says that the hereditar- ily finite sets provide sufficient means to express all of finite mathematics. 2. In particular, the subsuming of arithmetic within finite set theory by the identification of the natural numbers with the finite (von Neumann) or- dinals. Although this is, in theory, not the only representation one could choose, it is hegemonic because it is the most practical and graceful. 3. The cumulative hierarchy which starts with the empty set and generates all sets by iterating the power set operator. I shall take for granted the first two items, as well as the general idea of gener- ating all sets from the empty set, but propose a different generating principle.
    [Show full text]
  • A Functional Hitchhiker's Guide to Hereditarily Finite Sets, Ackermann
    A Functional Hitchhiker’s Guide to Hereditarily Finite Sets, Ackermann Encodings and Pairing Functions – unpublished draft – Paul Tarau Department of Computer Science and Engineering University of North Texas [email protected] Abstract interest in various fields, from representing structured data The paper is organized as a self-contained literate Haskell in databases (Leontjev and Sazonov 2000) to reasoning with program that implements elements of an executable fi- sets and set constraints in a Logic Programming framework nite set theory with focus on combinatorial generation and (Dovier et al. 2000; Piazza and Policriti 2004; Dovier et al. arithmetic encodings. The code, tested under GHC 6.6.1, 2001). is available at http://logic.csci.unt.edu/tarau/ The Universe of Hereditarily Finite Sets is built from the research/2008/fSET.zip. empty set (or a set of Urelements) by successively applying We introduce ranking and unranking functions generaliz- powerset and set union operations. A surprising bijection, ing Ackermann’s encoding to the universe of Hereditarily Fi- discovered by Wilhelm Ackermann in 1937 (Ackermann nite Sets with Urelements. Then we build a lazy enumerator 1937; Abian and Lamacchia 1978; Kaye and Wong 2007) for Hereditarily Finite Sets with Urelements that matches the from Hereditarily Finite Sets to Natural Numbers, was the unranking function provided by the inverse of Ackermann’s original trigger for our work on building in a mathematically encoding and we describe functors between them resulting elegant programming language, a concise and executable in arithmetic encodings for powersets, hypergraphs, ordinals hereditarily finite set theory. The arbitrary size of the data and choice functions.
    [Show full text]
  • MAPPING SETS and HYPERSETS INTO NUMBERS Introduction
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Archivio istituzionale della ricerca - Università degli Studi di Udine MAPPING SETS AND HYPERSETS INTO NUMBERS GIOVANNA D'AGOSTINO, EUGENIO G. OMODEO, ALBERTO POLICRITI, AND ALEXANDRU I. TOMESCU Abstract. We introduce and prove the basic properties of encodings that generalize to non-well-founded hereditarily finite sets the bijection defined by Ackermann in 1937 between hereditarily finite sets and natural numbers. Key words: Computable set theory, non-well-founded sets, bisimulation, Acker- mann bijection. Introduction \Consider all the sets that can be obtained from by applying a finite number of times··· the operations of forming singletons and of; forming binary unions; the class of all sets thus obtained coincides with the class of what are called··· in set theory the hereditarily finite··· sets, or sets of finite rank. We readily see that we can establish a one-one correspondence between natural··· numbers and hereditarily··· finite sets". This passage of [TG87, p. 217] refers to a specific correspondence, whose remarkable properties were first established in Ackermann's article [Ack37]. Among other virtues, Ackermann's bijection enables one to retrieve the full structure of a hereditarily finite set from its numeric encoding by means of a most simple recursive routine deep-rooted in the binary representation of numbers. To be more specific about this, let us call i-th set the hereditarily finite set whose encoding is i; then it holds that the j-th set belongs to the i-th set if and only if the jth bit in the base-2 representation of i is 1.
    [Show full text]
  • An Arithmetical-Like Theory of Hereditarily Finite Sets
    An Arithmetical-like Theory of Hereditarily Finite Sets Marcia´ R. Cerioli1, Vitor Krauss2, Petrucio Viana3 1 Instituto de Matematica´ Programa de Engenharia de Sistemas e Computac¸ao˜ – COPPE Universidade Federal do Rio de Janeiro (UFRJ) – Rio de Janeiro – RJ – Brazil 2Instituto de Matematica´ Universidade Federal do Rio de Janeiro (UFRJ) – Rio de Janeiro – RJ – Brazil Bolsista PIBIC/CNPq 3Instituto de Matematica´ e Estat´ıstica Universidade Federal Fluminense (UFF) – Niteroi´ – RJ – Brazil [email protected], [email protected] , petrucio [email protected] Abstract. This paper presents the (second-order) theory of hereditarily finite sets according to the usual pattern adopted in the presentation of the (second- order) theory of natural numbers. To this purpose, we consider three primitive concepts, together with four axioms, which are analogous to the usual Peano ax- ioms. From them, we prove a homomorphism theorem, its converse, categoricity, and a kind of (semantical) completeness. 1. Introduction Hereditarily finite sets (HFS) were defined by W. Ackerman in [Ackermann 1937] as the sets that satisfy all the usual first-oder Zermelo-Fraenkel axioms except the in- finity axiom. Different first-order axiomatizations of the HFS theory were given by S. Givant and A. Tarski [Givant and Tarski 1977], P. Cohen [Cohen 2008], S. Swier- czkowski [Swierczkowski´ 2003], and L. Kirby [Kirby 2009]. Alternatively, M. Taka- hashi [Takahashi 1976] and F. Previale [Previale 1994] developed the HFS theory using intuitionistic first-order logic, whereas Smolka and Stark [Smolka and Stark 2016] used intuitionistic type theory. In ZF set theory, the natural numbers can be defined as the sets which can be obtained from ; by a finite number of applications of the successor function s(x) = x [ fxg.
    [Show full text]
  • Hypergraph Isomorphism for Groups with Restricted Composition Factors
    Hypergraph Isomorphism for Groups with Restricted Composition Factors Daniel Neuen Max Planck Institute for Informatics, Saarland Informatics Campus, Saarbrücken, Germany [email protected] Abstract We consider the isomorphism problem for hypergraphs taking as input two hypergraphs over the same set of vertices V and a permutation group Γ over domain V , and asking whether there is a permutation γ ∈ Γ that proves the two hypergraphs to be isomorphic. We show that for input groups, all of whose composition factors are isomorphic to a subgroup of the symmetric group on c d points, this problem can be solved in time (n + m)O((log d) ) for some absolute constant c where n denotes the number of vertices and m the number of hyperedges. In particular, this gives the currently fastest isomorphism test for hypergraphs in general. The previous best algorithm for the above problem due to Schweitzer and Wiebking (STOC 2019) runs in time nO(d)mO(1). As an application of this result, we obtain, for example, an algorithm testing isomorphism of O((log h)c) graphs excluding K3,h as a minor in time n . In particular, this gives an isomorphism test c for graphs of Euler genus at most g running in time nO((log g) ). 2012 ACM Subject Classification Theory of computation → Design and analysis of algorithms; Mathematics of computing → Graph algorithms; Mathematics of computing → Combinatorial algorithms; Mathematics of computing → Graphs and surfaces Keywords and phrases graph isomorphism, groups with restricted composition factors, hypergraphs, bounded genus graphs Digital Object Identifier 10.4230/LIPIcs.ICALP.2020.88 Category Track A: Algorithms, Complexity and Games Related Version A full version of the paper is available at https://arxiv.org/abs/2002.06997.
    [Show full text]
  • Plausibly Hard Combinatorial Tautologies
    Plausibly Hard Combinatorial Tautologies Jeremy Avigad Abstract. We present a simple propositional proof system which con- sists of a single axiom schema and a single rule, and use this system to construct a sequence of combinatorial tautologies that, when added to any Frege system, p-simulates extended-Frege systems. 1. Introduction As was pointed out in [6], the conjecture that NP = coNP can be con- strued as the assertion that there is no proof system (broadly6 interpreted) in which there are short (polynomial-length) proofs of every propositional tautology. Though showing NP = coNP seems to be difficult, the above formulation suggests an obvious restriction,6 namely the assertion that spe- cific proof systems are inefficient. One of the nicest results of this form to date is the fact that there are no short proofs of tautologies representing the pigeonhole principle in a fixed-depth Frege system (see, for example, [1, 2]). This approach to demonstrating a proof system's inefficiency seems natu- ral: choose a suitable sequence of propositional formulas that express some true combinatorial assertion, and then show that these tautologies can't be proven efficiently by the system in question. Unfortunately, in the case of Frege systems, there is a shortage of good candidates. Bonet, Buss, and Pitassi [3] consider a number of combinato- rial principles with short extended-Frege proofs, and conclude that most of them seem to require at most quasipolynomial Frege proofs (see also [7] for further discussion). This isn't to say that there are no examples of tautolo- gies whose Frege proofs are likely to require exponential length: Cook [5] has shown that propositional tautologies ConEF (n), which assert the par- tial consistency of extended-Frege systems, have polynomial extended-Frege proofs; whereas Buss [4] has shown that if a Frege system is augmented by these tautologies, it can polynomially simulate any extended-Frege system.
    [Show full text]
  • Hereditarily Finite Sets and Identity Trees
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector JOURNAL OF COMBINATORIAL THEORY, Series B 35, 142-155 (1983) Hereditarily Finite Sets and Identity Trees A. MEIR AND J. W. MOON Mathematics Department, University of Alberta, Edmonton, Alberta T6G 2G1, Canada AND J. MYCIELSKI Mathematics Department, University of Colorado, Boulder, Colorado 80309 Communicated by the Editors Received December 21, 1982 Some asymptotic results about the sizes of certain sets of hereditarily finite sets, identity trees, and finite games are proven. 1. INTRODUCTION Harary and Prins [6] introduced a famiiy of rooted trees called identiry trees; these are those trees for which the only automorphism fixing the root is the identity. (See [5] for graph-theoretical terminology not given here.) There is, as we shall see, a natural one-to-one correspondence between the family of identity trees and the family of hereditarily Jinite sets (see [4, pp. 35-36; 3, p. 1681). V arious quantities associated with hereditarily finite sets correspond to quantities associated with identity trees such as (i) the probability that the root has degree k, (ii) the expected degree of the root, and (iii) the expected number of exterior nodes in such a tree. In this paper we consider the asymptotic behaviour of these as well as of some other quan- tities, when the number of vertices in the trees approaches infinity. Before summarizing our results more explicitly, we describe the relation between hereditarily finite sets and identity trees. The family VW of hereditarily finite sets may be defined (see [4, pp.
    [Show full text]
  • MAPPING SETS and HYPERSETS INTO NUMBERS Introduction
    MAPPING SETS AND HYPERSETS INTO NUMBERS GIOVANNA D'AGOSTINO, EUGENIO G. OMODEO, ALBERTO POLICRITI, AND ALEXANDRU I. TOMESCU Abstract. We introduce and prove the basic properties of encodings that generalize to non-well-founded hereditarily finite sets the bijection defined by Ackermann in 1937 between hereditarily finite sets and natural numbers. Key words: Computable set theory, non-well-founded sets, bisimulation, Acker- mann bijection. Introduction \Consider all the sets that can be obtained from by applying a finite number of times··· the operations of forming singletons and of; forming binary unions; the class of all sets thus obtained coincides with the class of what are called··· in set theory the hereditarily finite··· sets, or sets of finite rank. We readily see that we can establish a one-one correspondence between natural··· numbers and hereditarily··· finite sets". This passage of [TG87, p. 217] refers to a specific correspondence, whose remarkable properties were first established in Ackermann's article [Ack37]. Among other virtues, Ackermann's bijection enables one to retrieve the full structure of a hereditarily finite set from its numeric encoding by means of a most simple recursive routine deep-rooted in the binary representation of numbers. To be more specific about this, let us call i-th set the hereditarily finite set whose encoding is i; then it holds that the j-th set belongs to the i-th set if and only if the jth bit in the base-2 representation of i is 1. At a deeper level, Ackermann's bijection gives an insight on why \the Peano arithmetic and the extended Zermelo- like theory of finite sets are definitionally equivalent, and therefore equipollent in means of expression and proof" [TG87, p.
    [Show full text]
  • Slim Models of Zermelo Set Theory
    Slim models of Zermelo set theory A.R.D.Mathias Universidad de los Andes, Santa F´e de Bogot´a Abstract Working in Z +KP , we give a new proof that the class of hereditarily finite sets cannot be proved to be a set in Zermelo set theory, extend the method to establish other failures of replacement, and exhibit a formula Φ(λ, a) such that for any sequence hAλ j λ a limit ordinal i λ where for each λ, Aλ ⊆ 2, there is a supertransitive inner model of Zermelo containing all ordinals in which for every λ Aλ = fa j Φ(λ, a)g. Preliminaries This paper explores the weakness of Zermelo set theory, Z, as a vehicle for recursive definitions. We work in the system Z +KP , which adds to the axioms of Zermelo those of Kripke{Platek set theory KP . Z + KP is of course a subsystem of the familiar system ZF of Zermelo{Fraenkel. Mention is made of the axiom of choice, but our constructions do not rely on that Axiom. It is known that Z +KP +AC is consistent relative to Z: see [M2], to appear as [M3], which describes inter alia a method of extending models of Z + AC to models of Z + AC + KP . We begin by reviewing the axioms of the two systems Z and KP . In the formulation of KP , we shall use the familiar L´evy classification of formulæ: ∆0 formulæ are those in which every quantifier is restricted, 8x(x 2 y =) : : :) or 9x(x 2 y & : : :), which we write as 8x:2y : : : and 9x:2y : : : respectively.
    [Show full text]