Homotopy Type Theory universe > history (Rev #11)

There are several kinds of universes that one can consider in type theory, which vary along many different axes.

Russell vs Tarski

Universes a la Russell

A universe a la Russell is a type whose terms are types. In the presence of a separate judgment?AtypeA type”, this can be formulated as a rule

A:UAtype\frac{A:U}{A type}

Thus, the type formers have rules saying which universe they belong to, such as:

A:UB:AUΠAB:U\frac{A:U\quad B:A\to U}{\Pi\, A\, B : U}

With universes a la Russell, we can also omit the judgment “AtypeA type” and replace it everywhere by a judgment that A is a term of some universe. This is the approach taken by the HoTT book and by Coq?.

Russell universes have some issues; see for instance these notes.

Universes a la Tarski

A universe a la Tarski is a type together with an “interpretation” operation allowing us to regard its terms as types (or “codes for types”). Thus we have a rule such as

A:UEl(A)type\frac{A:U}{El(A) type}

We usually also have operations on the universe corresponding to (but not identical to) type formers, such as

A:UB:AUpi(A,B):U\frac{A:U\quad B:A\to U}{pi(A, B) : U}

with an equality El(pi(A,B))=ΠEl(A)El(B)El(pi(A,B))=\Pi \, El(A)\, El(B). Usually this latter equality (and those for other type formers) is a judgmental equality. If it is only a propositional equality?,we may speak of a weakly a la Tarski universe.

Universes defined internally via induction-recursion are (strongly) a la Tarski. Weakly a la Tarski universes are easier to obtain in semantics; see model of type theory in an (infinity,1)-topos. They are somewhat more annoying to use, but probably suffice for most purposes.

Universe polymorphism and typical ambiguity

Universe polymorphism means that you don’t have to do things separately for each universe level; you can do it once “parametrized” over universes and then instantiate it to any particular universe.

Typical ambiguity means you don’t have to explicitly say what universe level you’re working at; you just say something like “Type” and the system (or the reader) guesses it.

They are discussed further in this blog post.

Both Russell and Tarski style universes can be polymorphic or not, and typically ambiguous or not.

Cumulativity

A tower of universes is cumulative if A:U iA:U_i implies A:U i+1A:U_{i+1} (rather than, say, Lift(A):U i+1Lift(A):U_{i+1}).

Choices made by proof assistants and books

  • Coq? uses Russell style universes with typical ambiguity. It used to have a sort of “fake” universe polymorphism, but recent versions of Coq have real universe polymorphism (thanks to Mathieu Sozeau). For practical purposes, it also has cumulativity, although there is some question (perhaps mainly semantic) of whether this is true internally or whether it uses casts that are simply hidden from the user.

  • Agda uses non-cumulative Russell style universes with universe polymorphism but without typical ambiguity: you always have to explicitly indicate the universe level.

  • The HoTT Book (first edition) uses cumulative Russell style universes with universe polymorphism and (except for a few places) typical ambiguity.

See also

Revision on June 6, 2014 at 19:13:55 by Mike Shulman. See the history of this page for a list of all contributions to it.