R i c e ' s T h e o r e m f o r t h e M a r t i n - L o f u n i v e r s e Martin Escardo, University of Birmingham, UK. February 2012, update 06 April 2012. This is a proof in intensional Martin-Lof type theory, extended with the propositional axiom of extensionality as a postulate, written in Agda notation. The K-rule or UIP axiom are not used, except in instances where they can be proved. The proof type-checks in Agda 2.3.2 An addendum included 21 August 2014. A b s t r a c t. We show that a Martin-Lof universe `a la Russell satisfies the conclusion of Rice's Theorem: it has no non-trivial, decidable, extensional properties. We derive this as a corollary of more general topological facts in type theory, which don't rely on Brouwerian continuity axioms. I n t r o d u c t i o n We don't manipulate syntax or Turing machines to prove this claim. We show, within type theory, that the hypothetical existence of a non-trivial, decidable extensional property of the universe leads to a construction that is known to be impossible, namely WLPO, defined and discussed below. Hence this version of Rice's Theorem for the universe remains true when type theory is extended with any kind of postulated axiom (e.g. univalence, Church's thesis, Brouwerian continuity axioms, Markov principle, to name a few of the contentious axioms that one may wish to consider in constructive mathematics). One possible reaction to our result is that this is to be expected: after all, there are no elimination rules for the universe. But our arguments show that, even if there were, Rice's Theorem for the universe would still hold, which justifies the lack of elimination rules. Of course, if we postulate classical logic, for example in its extreme version given by the principle of excluded middle, then there are decidable properties of the universe. Our theorem is compatible with that. In fact, what our construction does is to produce a classical conclusion from the hypothetical premise. Our assumption of the axiom of extensionality may seem dubious. In any case, we do get a meta-theorem that does not rely on extensionality: For all closed terms p: U β π with p extensional and X,Y: U, there is no closed term of type p (X) οΌ β β§ P (Y) οΌ β, where U is the universe of types and where π is a type with two distinct elements β and β, and with decidable equality. We derive this claim as a corollary or more general topological constructions developed in the module TheTopologyOfTheUniverse, which is the interesting and non-trivial technical aspect of this work. We emphasize that we don't postulate any continuity axiom in that module (or in fact any axiom other than extensionality). \begin{code} {-# OPTIONS --safe --without-K #-} open import UF.FunExt module TypeTopology.RicesTheoremForTheUniverse (fe : FunExt) where open import MLTT.Spartan open import UF.Equiv open import TypeTopology.TheTopologyOfTheUniverse fe open import CoNaturals.Type open import Taboos.WLPO open import Taboos.BasicDiscontinuity (fe π€β π€β) open import Notation.CanonicalMap \end{code} Our promised corollary of the universe indiscreteness theorem is that the hypothetical existence of an extensional P : U β π with two different values is a taboo. \begin{code} extensional : (π€ Μ β π) β π€ βΊ Μ extensional P = β X Y β X β Y β P X οΌ P Y Rice's-Theorem-for-U : (P : π€ Μ β π) β extensional P β (X Y : π€ Μ ) β P X οΌ β β P Y οΌ β β WLPO Rice's-Theorem-for-U {π€} P e X Y r s = basic-discontinuity-taboo p (p-lemma , p-lemmaβ) where Q : ββ β π€ Μ Q = prβ (Universe-Indiscreteness-Theorem (Ξ» i β X) Y) Q-lemma : (i : β) β Q (ΞΉ i) β X Q-lemma = prβ (prβ (Universe-Indiscreteness-Theorem (Ξ» i β X) Y)) Q-lemmaβ : Q β β Y Q-lemmaβ = prβ (prβ (Universe-Indiscreteness-Theorem (Ξ» i β X) Y)) p : ββ β π p u = P (Q u) p-lemma : (i : β) β p (ΞΉ i) οΌ β p-lemma i = e (Q (ΞΉ i)) X (Q-lemma i) β r p-lemmaβ : p β οΌ β p-lemmaβ = e (Q β) Y Q-lemmaβ β s \end{code} Notice that although the proof uses topological techniques, the formulation of the theorem doesn't mention topology. One can get more milleage exploiting the fact that ββ is compact, in the sense that it satisfies Bishop's principle of omniscience, as proved in the module GenericConvergentSequence. As a simple example, one can conclude LPO rather than WLPO. The type-inhabitedness predicate is clearly extensional. By the above theorem, this means that there is no algorithm within type theory that decides whether any given type is inhabited, that is, whether a proposition has a proof. Of course we already know this since the time of Godel, Turing and Church, in stronger forms (such as adding general recursion to type theory). But we emphasize again that our development is syntax-free (or Godel-number free), and hence make senses in any model of type theory. We have the following meta-theorem as a corollary, *without* assuming the propositional axiom of extensionality: For all closed terms P: π€ Μ β π and X,Y: π€ Μ with a given proof of extensionality of P, there is no closed term of type P(X) β P(Y). Proof. Assuming the axiom of extensionality, there can't be such closed terms, as there is a realizability interpretation, e.g. Hyland's effective topos, where WLPO solves the Halting Problem. Without postulating the axiom, fewer terms are definable in the language, and hence the omission of extensionality gives the same result. Q.E.D. Added 21 August 2014: WLPO amounts to saying that we can solve the halting problem. If we cannot, then all π-valued functions on π€ Μ must be constant: \begin{code} Rice's-contrapositive : β {π€} β Β¬ WLPO β (P : π€ Μ β π) β extensional P β (X Y : π€ Μ ) β P X οΌ P Y Rice's-contrapositive {π€} nwlpo P e = f where a : (X Y : π€ Μ ) β P X οΌ β β P Y οΌ β β WLPO a X Y = Rice's-Theorem-for-U P e X Y b : (X Y : π€ Μ ) (m n : π) β P X οΌ m β P Y οΌ n β m οΌ n b X Y β β p q = refl b X Y β β p q = π-elim (nwlpo (a X Y p q)) b X Y β β p q = π-elim (nwlpo (a Y X q p)) b X Y β β p q = refl f : (X Y : π€ Μ ) β P X οΌ P Y f X Y = b X Y (P X) (P Y) refl refl \end{code}