Tarski–Grothendieck set theory

From HandWiki
Short description: System of mathematical set theory

Tarski–Grothendieck set theory (TG, named after mathematicians Alfred Tarski and Alexander Grothendieck) is an axiomatic set theory. It is a non-conservative extension of Zermelo–Fraenkel set theory (ZFC) and is distinguished from other axiomatic set theories by the inclusion of Tarski's axiom, which states that for each set there is a Grothendieck universe it belongs to (see below). Tarski's axiom implies the existence of inaccessible cardinals, providing a richer ontology than ZFC. For example, adding this axiom supports category theory.

The Mizar system and Metamath use Tarski–Grothendieck set theory for formal verification of proofs.

Axioms

Tarski–Grothendieck set theory starts with conventional Zermelo–Fraenkel set theory and then adds “Tarski's axiom”. We will use the axioms, definitions, and notation of Mizar to describe it. Mizar's basic objects and processes are fully formal; they are described informally below. First, let us assume that:

  • Given any set [math]\displaystyle{ A }[/math], the singleton [math]\displaystyle{ \{A\} }[/math] exists.
  • Given any two sets, their unordered and ordered pairs exist.
  • Given any set of sets, its union exists.

TG includes the following axioms, which are conventional because they are also part of ZFC:

  • Set axiom: Quantified variables range over sets alone; everything is a set (the same ontology as ZFC).
  • Axiom of extensionality: Two sets are identical if they have the same members.
  • Axiom of regularity: No set is a member of itself, and circular chains of membership are impossible.
  • Axiom schema of replacement: Let the domain of the class function [math]\displaystyle{ F }[/math] be the set [math]\displaystyle{ A }[/math]. Then the range of [math]\displaystyle{ F }[/math] (the values of [math]\displaystyle{ F(x) }[/math] for all members [math]\displaystyle{ x }[/math] of [math]\displaystyle{ A }[/math]) is also a set.

It is Tarski's axiom that distinguishes TG from other axiomatic set theories. Tarski's axiom also implies the axioms of infinity, choice,[1][2] and power set.[3][4] It also implies the existence of inaccessible cardinals, thanks to which the ontology of TG is much richer than that of conventional set theories such as ZFC.

  • Tarski's axiom (adapted from Tarski 1939[5]). For every set [math]\displaystyle{ x }[/math], there exists a set [math]\displaystyle{ y }[/math] whose members include:

- [math]\displaystyle{ x }[/math] itself;

- every element of every member of [math]\displaystyle{ y }[/math];

- every subset of every member of [math]\displaystyle{ y }[/math];

- the power set of every member of [math]\displaystyle{ y }[/math];

- every subset of [math]\displaystyle{ y }[/math] of cardinality less than that of [math]\displaystyle{ y }[/math].

More formally:

[math]\displaystyle{ \forall x \exists y [x \in y \land \forall z \in y(z \subseteq y \land \mathcal P(z) \subseteq y \land \mathcal P(z) \in y) \land \forall z \in \mathcal P(y) (\neg( z \approx y) \to z \in y)] }[/math]

where “[math]\displaystyle{ \mathcal P(x) }[/math]” denotes the power class of x and “[math]\displaystyle{ \approx }[/math]” denotes equinumerosity. What Tarski's axiom states (in the vernacular) is that for each set [math]\displaystyle{ x }[/math] there is a Grothendieck universe it belongs to.

That [math]\displaystyle{ y }[/math] looks much like a “universal set” for [math]\displaystyle{ x }[/math] – it not only has as members the powerset of [math]\displaystyle{ x }[/math], and all subsets of [math]\displaystyle{ x }[/math], it also has the powerset of that powerset and so on – its members are closed under the operations of taking powerset or taking a subset. It's like a “universal set” except that of course it is not a member of itself and is not a set of all sets. That's the guaranteed Grothendieck universe it belongs to. And then any such [math]\displaystyle{ y }[/math] is itself a member of an even larger “almost universal set” and so on. It's one of the strong cardinality axioms guaranteeing vastly more sets than one normally assumes to exist.

Implementation in the Mizar system

The Mizar language, underlying the implementation of TG and providing its logical syntax, is typed and the types are assumed to be non-empty. Hence, the theory is implicitly taken to be non-empty. The existence axioms, e.g. the existence of the unordered pair, is also implemented indirectly by the definition of term constructors.

The system includes equality, the membership predicate and the following standard definitions:

  • Singleton: A set with one member;
  • Unordered pair: A set with two distinct members. [math]\displaystyle{ \{a,b\} = \{b,a\} }[/math];
  • Ordered pair: The set [math]\displaystyle{ \{\{a,b\},\{a\}\} = (a,b) \neq (b,a) }[/math];
  • Subset: A set all of whose members are members of another given set;
  • The union of a set of sets [math]\displaystyle{ Y }[/math]: The set of all members of any member of [math]\displaystyle{ Y }[/math].

Implementation in Metamath

The Metamath system supports arbitrary higher-order logics, but it is typically used with the "set.mm" definitions of axioms. The ax-groth axiom adds Tarski's axiom, which in Metamath is defined as follows:

⊢ ∃y(x ∈ y ∧ ∀z ∈ y (∀w(w ⊆ z → w ∈ y) ∧ ∃w ∈ y ∀v(v ⊆ z → v ∈ w)) ∧ ∀z(z ⊆ y → (z ≈ y ∨ z ∈ y)))

See also

Notes

References

External links