Martin Escardo

In univalent logic, as opposed to Curry-Howard logic, a proposition is
a subsingleton or a type such that any two of its elements are
identified.

https://www.newton.ac.uk/files/seminar/20170711100011001-1009756.pdf
https://unimath.github.io/bham2017/uf.pdf

\begin{code}

{-# OPTIONS --without-K --exact-split --safe --auto-inline #-}

module UF.Subsingletons where

open import MLTT.Spartan
open import MLTT.Unit-Properties

open import MLTT.Plus-Properties
open import UF.Base

is-prop : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
is-prop X = (x y : X) โ†’ x ๏ผ y

is-prop-valued-family : {X : ๐“ค ฬ‡ } โ†’ (X โ†’ ๐“ฅ ฬ‡ ) โ†’ ๐“ค โŠ” ๐“ฅ ฬ‡
is-prop-valued-family A = โˆ€ x โ†’ is-prop (A x)

\end{code}

And of course we could adopt a terminology borrowed from topos logic:

\begin{code}

is-truth-value is-subsingleton : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
is-truth-value  = is-prop
is-subsingleton = is-prop

\end{code}

\begin{code}

ฮฃ-is-prop : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ }
          โ†’ is-prop X โ†’ ((x : X) โ†’ is-prop (A x)) โ†’ is-prop (ฮฃ A)
ฮฃ-is-prop {๐“ค} {๐“ฅ} {X} {A} i j (x , a) (y , b) =
  to-ฮฃ-๏ผ (i x y , j y (transport A (i x y) a) b)

\end{code}

Next we define singleton (or contractible types). The terminology
"contractible" is due to Voevodsky. I currently prefer the terminology
"singleton type", because it makes more sense when we consider
univalent type theory as interesting on its own right independently of
its homotopical (originally motivating) models. Also it emphasizes
that we don't require homotopy theory as a prerequisite to understand
univalent type theory.

\begin{code}

is-central : (X : ๐“ค ฬ‡ ) โ†’ X โ†’ ๐“ค ฬ‡
is-central X c = (x : X) โ†’ c ๏ผ x

is-singleton : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
is-singleton X = ฮฃ c ๊ž‰ X , is-central X c

center : {X : ๐“ค ฬ‡ } โ†’ is-singleton X โ†’ X
center = prโ‚

centrality : {X : ๐“ค ฬ‡ } (i : is-singleton X) โ†’ is-central X (center i)
centrality = prโ‚‚

\end{code}

For compatibility with the homotopical terminology:

\begin{code}

is-center-of-contraction-of : (X : ๐“ค ฬ‡ ) โ†’ X โ†’ ๐“ค ฬ‡
is-center-of-contraction-of = is-central

is-contr : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
is-contr = is-singleton

๐Ÿ™-is-singleton : is-singleton (๐Ÿ™ {๐“ค})
๐Ÿ™-is-singleton = โ‹† , (ฮป (x : ๐Ÿ™) โ†’ (๐Ÿ™-all-โ‹† x)โปยน)

singletons-are-props : {X : ๐“ค ฬ‡ } โ†’ is-singleton X โ†’ is-prop X
singletons-are-props (c , ฯ†) x y = x ๏ผโŸจ (ฯ† x) โปยน โŸฉ
                                   c ๏ผโŸจ ฯ† y โŸฉ
                                   y โˆŽ

prop-criterion' : {X : ๐“ค ฬ‡ } โ†’ (X โ†’ is-singleton X) โ†’ is-prop X
prop-criterion' ฯ† x = singletons-are-props (ฯ† x) x

prop-criterion : {X : ๐“ค ฬ‡ } โ†’ (X โ†’ is-prop X) โ†’ is-prop X
prop-criterion ฯ† x = ฯ† x x

pointed-props-are-singletons : {X : ๐“ค ฬ‡ } โ†’ X โ†’ is-prop X โ†’ is-singleton X
pointed-props-are-singletons x h = x , h x

\end{code}

The two prototypical propositions:

\begin{code}

๐Ÿ˜-is-prop : is-prop (๐Ÿ˜ {๐“ค})
๐Ÿ˜-is-prop {๐“ค} x y = unique-from-๐Ÿ˜ {๐“ค} {๐“ค} x

๐Ÿ™-is-prop : is-prop (๐Ÿ™ {๐“ค})
๐Ÿ™-is-prop {๐“ค} โ‹† โ‹† = refl {๐“ค}

\end{code}

A type is a set if all its identity types are subsingletons. In other
words, sets are types for which equality is a proposition (rather than
data or structure).

\begin{code}

is-h-isolated : {X : ๐“ค ฬ‡ } (x : X) โ†’ ๐“ค ฬ‡
is-h-isolated x = โˆ€ {y} โ†’ is-prop (x ๏ผ y)

is-set : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
is-set X = {x : X} โ†’ is-h-isolated x

hSet : (๐“ค : Universe) โ†’ ๐“ค โบ ฬ‡
hSet ๐“ค = ฮฃ A ๊ž‰ ๐“ค ฬ‡ , is-set A

underlying-set : hSet ๐“ค โ†’ ๐“ค ฬ‡
underlying-set = prโ‚

underlying-set-is-set : (๐“ : hSet ๐“ค) โ†’ is-set (underlying-set ๐“)
underlying-set-is-set = prโ‚‚

๐Ÿ˜-is-set : is-set (๐Ÿ˜ {๐“ค})
๐Ÿ˜-is-set {๐“ค} {x} = ๐Ÿ˜-elim x

refl-is-set : (X : ๐“ค ฬ‡ )
            โ†’ ((x : X) (p : x ๏ผ x) โ†’ p ๏ผ refl)
            โ†’ is-set X
refl-is-set X r {x} {.x} p refl = r x p

\end{code}

We now consider some machinery for dealing with the above notions,
using weakly, or wildly, constant maps:

\begin{code}

wconstant : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } โ†’ (f : X โ†’ Y) โ†’ ๐“ค โŠ” ๐“ฅ ฬ‡
wconstant f = โˆ€ x y โ†’ f x ๏ผ f y

wconstant-pre-comp : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } {Z : ๐“ฆ ฬ‡ } (f : X โ†’ Y) (g : Y โ†’ Z)
                   โ†’ wconstant f โ†’ wconstant (g โˆ˜ f)
wconstant-pre-comp f g c x x' = ap g (c x x')

wconstant-post-comp : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } {Z : ๐“ฆ ฬ‡ } (f : X โ†’ Y) (g : Y โ†’ Z)
                    โ†’ wconstant g โ†’ wconstant (g โˆ˜ f)
wconstant-post-comp f g c x x' = c (f x) (f x')

collapsible : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
collapsible X = ฮฃ f ๊ž‰ (X โ†’ X) , wconstant f

Id-collapsible' : {X : ๐“ค ฬ‡ } โ†’ X โ†’ ๐“ค ฬ‡
Id-collapsible' x = โˆ€ {y} โ†’ collapsible (x ๏ผ y)

Id-collapsible : ๐“ค ฬ‡ โ†’ ๐“ค ฬ‡
Id-collapsible X = {x : X} โ†’ Id-collapsible' x

h-isolated-points-are-Id-collapsible : {X : ๐“ค ฬ‡ } {x : X} โ†’ is-h-isolated x โ†’ Id-collapsible' x
h-isolated-points-are-Id-collapsible h = id , h

sets-are-Id-collapsible : {X : ๐“ค ฬ‡ } โ†’ is-set X โ†’ Id-collapsible X
sets-are-Id-collapsible u = (id , u)

local-hedberg : {X : ๐“ค ฬ‡ } (x : X)
              โ†’ ((y : X) โ†’ collapsible (x ๏ผ y))
              โ†’ (y : X) โ†’ is-prop (x ๏ผ y)
local-hedberg {๐“ค} {X} x pc y p q =
 p                    ๏ผโŸจ c y p โŸฉ
 f x refl โปยน โˆ™ f y p  ๏ผโŸจ ap (ฮป - โ†’ (f x refl)โปยน โˆ™ -) (ฮบ y p q) โŸฉ
 f x refl โปยน โˆ™ f y q  ๏ผโŸจ (c y q)โปยน โŸฉ
 q                    โˆŽ
 where
  f : (y : X) โ†’ x ๏ผ y โ†’ x ๏ผ y
  f y = prโ‚ (pc y)
  ฮบ : (y : X) (p q : x ๏ผ y) โ†’ f y p ๏ผ f y q
  ฮบ y = prโ‚‚ (pc y)
  c : (y : X) (r : x ๏ผ y) โ†’ r ๏ผ (f x refl)โปยน โˆ™ f y r
  c _ refl = sym-is-inverse (f x refl)

Id-collapsibles-are-h-isolated : {X : ๐“ค ฬ‡ } (x : X) โ†’ Id-collapsible' x โ†’ is-h-isolated x
Id-collapsibles-are-h-isolated x pc {y} p q = local-hedberg x (ฮป y โ†’ (prโ‚ (pc {y})) , (prโ‚‚ (pc {y}))) y p q

Id-collapsibles-are-sets : {X : ๐“ค ฬ‡ } โ†’ Id-collapsible X โ†’ is-set X
Id-collapsibles-are-sets pc {x} = Id-collapsibles-are-h-isolated x pc

\end{code}

Here is an example. Any type that admits a prop-valued, reflexive and
antisymmetric relation is a set.

\begin{code}

type-with-prop-valued-refl-antisym-rel-is-set : {X : ๐“ค ฬ‡ }
                                              โ†’ (_โ‰ค_ : X โ†’ X โ†’ ๐“ฅ ฬ‡ )
                                              โ†’ ((x y : X) โ†’ is-prop (x โ‰ค y))
                                              โ†’ ((x : X) โ†’ x โ‰ค x)
                                              โ†’ ((x y : X) โ†’ x โ‰ค y โ†’ y โ‰ค x โ†’ x ๏ผ y)
                                              โ†’ is-set X
type-with-prop-valued-refl-antisym-rel-is-set {๐“ค} {๐“ฅ} {X} _โ‰ค_ โ‰ค-prop-valued โ‰ค-refl โ‰ค-anti = ฮณ
 where
  ฮฑ : โˆ€ {x y} (l l' : x โ‰ค y) (m m' : y โ‰ค x) โ†’ โ‰ค-anti x y l m ๏ผ โ‰ค-anti x y l' m'
  ฮฑ {x} {y} l l' m m' = apโ‚‚ (โ‰ค-anti x y)
                            (โ‰ค-prop-valued x y l l')
                            (โ‰ค-prop-valued y x m m')

  g : โˆ€ {x y} โ†’ x ๏ผ y โ†’ x โ‰ค y
  g {x} p = transport (x โ‰ค_) p (โ‰ค-refl x)

  h : โˆ€ {x y} โ†’ x ๏ผ y โ†’ y โ‰ค x
  h p = g (p โปยน)

  f : โˆ€ {x y} โ†’ x ๏ผ y โ†’ x ๏ผ y
  f {x} {y} p = โ‰ค-anti x y (g p) (h p)

  ฮบ : โˆ€ {x y} p q โ†’ f {x} {y} p ๏ผ f {x} {y} q
  ฮบ p q = ฮฑ (g p) (g q) (h p) (h q)

  ฮณ : is-set X
  ฮณ = Id-collapsibles-are-sets (f , ฮบ)

\end{code}

We also need the following symmetrical version of local Hedberg, which
can be proved by reduction to the above (using the fact that
collapsible types are closed under equivalence), but at this point we
don't have the machinery at our disposal (which is developed in
modules that depend on this one), and hence we prove it directly by
symmetrizing the proof.

\begin{code}

local-hedberg' : {X : ๐“ค ฬ‡ } (x : X)
               โ†’ ((y : X) โ†’ collapsible (y ๏ผ x))
               โ†’ (y : X) โ†’ is-prop (y ๏ผ x)
local-hedberg' {๐“ค} {X} x pc y p q =
  p                     ๏ผโŸจ c y p โŸฉ
  f y p โˆ™ (f x refl)โปยน  ๏ผโŸจ  ap (ฮป - โ†’ - โˆ™ (f x refl)โปยน) (ฮบ y p q) โŸฉ
  f y q โˆ™ (f x refl)โปยน  ๏ผโŸจ (c y q)โปยน โŸฉ
  q                     โˆŽ
 where
  f : (y : X) โ†’ y ๏ผ x โ†’ y ๏ผ x
  f y = prโ‚ (pc y)
  ฮบ : (y : X) (p q : y ๏ผ x) โ†’ f y p ๏ผ f y q
  ฮบ y = prโ‚‚ (pc y)
  c : (y : X) (r : y ๏ผ x) โ†’ r ๏ผ  (f y r) โˆ™ (f x refl)โปยน
  c _ refl = sym-is-inverse' (f x refl)

props-are-Id-collapsible : {X : ๐“ค ฬ‡ } โ†’ is-prop X โ†’ Id-collapsible X
props-are-Id-collapsible h {x} {y} = (ฮป p โ†’ h x y) , (ฮป p q โ†’ refl)

props-are-sets : {X : ๐“ค ฬ‡ } โ†’ is-prop X โ†’ is-set X
props-are-sets h = Id-collapsibles-are-sets (props-are-Id-collapsible h)

๐Ÿ˜-is-collapsible : collapsible (๐Ÿ˜ {๐“ค})
๐Ÿ˜-is-collapsible {๐“ค} = id , (ฮป x y โ†’ ๐Ÿ˜-elim y)

pointed-types-are-collapsible : {X : ๐“ค ฬ‡ } โ†’ X โ†’ collapsible X
pointed-types-are-collapsible x = (ฮป y โ†’ x) , (ฮป y y' โ†’ refl)

\end{code}

Under Curry-Howard, the function type X โ†’ ๐Ÿ˜ is understood as the
negation of X when X is viewed as a proposition. But when X is
understood as a mathematical object, inhabiting the type X โ†’ ๐Ÿ˜ amounts
to showing that X is empty. (In fact, assuming univalence, defined
below, the type X โ†’ ๐Ÿ˜ is equivalent to the type X ๏ผ ๐Ÿ˜
(written (X โ†’ ๐Ÿ˜) โ‰ƒ (X ๏ผ ๐Ÿ˜)).)

\begin{code}

empty-types-are-collapsible : {X : ๐“ค ฬ‡ } โ†’ is-empty X โ†’ collapsible X
empty-types-are-collapsible u = (id , (ฮป x x' โ†’ unique-from-๐Ÿ˜ (u x)))

๐Ÿ˜-is-collapsible' : collapsible ๐Ÿ˜
๐Ÿ˜-is-collapsible' = empty-types-are-collapsible id

singleton-type : {X : ๐“ค ฬ‡ } (x : X) โ†’ ๐“ค ฬ‡
singleton-type x = ฮฃ y ๊ž‰ type-of x , x ๏ผ y

singleton-center : {X : ๐“ค ฬ‡ } (x : X) โ†’ singleton-type x
singleton-center x = (x , refl)

singleton-types-are-singletons'' : {X : ๐“ค ฬ‡ } {x x' : X} (r : x ๏ผ x') โ†’ singleton-center x ๏ผ (x' , r)
singleton-types-are-singletons'' {๐“ค} {X} = J A (ฮป x โ†’ refl)
 where
  A : (x x' : X) โ†’ x ๏ผ x' โ†’ ๐“ค ฬ‡
  A x x' r = singleton-center x ๏ผ[ ฮฃ x' ๊ž‰ X , x ๏ผ x' ] (x' , r)

singleton-types-are-singletons : {X : ๐“ค ฬ‡ } (xโ‚€ : X) โ†’ is-singleton (singleton-type xโ‚€)
singleton-types-are-singletons xโ‚€ = singleton-center xโ‚€ , (ฮป t โ†’ singleton-types-are-singletons'' (prโ‚‚ t))

singleton-types-are-singletons' : {X : ๐“ค ฬ‡ } {x : X} โ†’ is-central (singleton-type x) (x , refl)
singleton-types-are-singletons' {๐“ค} {X} (y , refl) = refl

singleton-types-are-props : {X : ๐“ค ฬ‡ } (x : X) โ†’ is-prop (singleton-type x)
singleton-types-are-props x = singletons-are-props (singleton-types-are-singletons x)

singleton-type' : {X : ๐“ค ฬ‡ } โ†’ X โ†’ ๐“ค ฬ‡
singleton-type' x = ฮฃ y ๊ž‰ type-of x , y ๏ผ x

singleton'-center : {X : ๐“ค ฬ‡ } (x : X) โ†’ singleton-type' x
singleton'-center x = (x , refl)

ร—-prop-criterion-necessity : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ }
                           โ†’ is-prop (X ร— Y) โ†’ (Y โ†’ is-prop X) ร— (X โ†’ is-prop Y)
ร—-prop-criterion-necessity i = (ฮป y x x' โ†’ ap prโ‚ (i (x , y) (x' , y ))) ,
                               (ฮป x y y' โ†’ ap prโ‚‚ (i (x , y) (x  , y')))

ร—-prop-criterion : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ }
                 โ†’ (Y โ†’ is-prop X) ร— (X โ†’ is-prop Y) โ†’ is-prop (X ร— Y)
ร—-prop-criterion (i , j) (x , y) (x' , y') = to-ฮฃ-๏ผ (i y x x' , j x _ _)

ร—-๐Ÿ˜-is-prop : {X : ๐“ค ฬ‡ } โ†’ is-prop (X ร— ๐Ÿ˜ {๐“ฅ})
ร—-๐Ÿ˜-is-prop (x , z) _ = ๐Ÿ˜-elim z

๐Ÿ˜-ร—-is-prop : {X : ๐“ค ฬ‡ } โ†’ is-prop (๐Ÿ˜ {๐“ฅ} ร— X)
๐Ÿ˜-ร—-is-prop (z , x) _ = ๐Ÿ˜-elim z

ร—-is-prop : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ }
          โ†’ is-prop X โ†’ is-prop Y โ†’ is-prop (X ร— Y)
ร—-is-prop i j = ร—-prop-criterion ((ฮป _ โ†’ i) , (ฮป _ โ†’ j))

to-subtype-๏ผ : {X : ๐“ฆ ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ }
               {x y : X} {a : A x} {b : A y}
             โ†’ ((x : X) โ†’ is-prop (A x))
             โ†’ x ๏ผ y
             โ†’ (x , a) ๏ผ (y , b)
to-subtype-๏ผ {๐“ค} {๐“ฅ} {X} {A} {x} {y} {a} {b} s p = to-ฮฃ-๏ผ (p , s y (transport A p a) b)

subtype-of-prop-is-prop : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } (m : X โ†’ Y)
                        โ†’ left-cancellable m โ†’ is-prop Y โ†’ is-prop X
subtype-of-prop-is-prop {๐“ค} {๐“ฅ} {X} m lc i x x' = lc (i (m x) (m x'))

subtypes-of-sets-are-sets : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } (m : X โ†’ Y)
                          โ†’ left-cancellable m โ†’ is-set Y โ†’ is-set X
subtypes-of-sets-are-sets {๐“ค} {๐“ฅ} {X} m i h = Id-collapsibles-are-sets (f , g)
 where
  f : {x x' : X} โ†’ x ๏ผ x' โ†’ x ๏ผ x'
  f r = i (ap m r)
  g : {x x' : X} (r s : x ๏ผ x') โ†’ f r ๏ผ f s
  g r s = ap i (h (ap m r) (ap m s))

prโ‚-lc : {X : ๐“ค ฬ‡ } {Y : X โ†’ ๐“ฅ ฬ‡ } โ†’ ({x : X} โ†’ is-prop (Y x))
       โ†’ left-cancellable (prโ‚ {๐“ค} {๐“ฅ} {X} {Y})
prโ‚-lc f p = to-ฮฃ-๏ผ (p , (f _ _))

subsets-of-sets-are-sets : (X : ๐“ค ฬ‡ ) (Y : X โ†’ ๐“ฅ ฬ‡ )
                         โ†’ is-set X
                         โ†’ ({x : X} โ†’ is-prop (Y x))
                         โ†’ is-set (ฮฃ x ๊ž‰ X , Y x)
subsets-of-sets-are-sets X Y h p = subtypes-of-sets-are-sets prโ‚ (prโ‚-lc p) h

inl-lc-is-section : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } {x x' : X} โ†’ (p : inl {๐“ค} {๐“ฅ} {X} {Y} x ๏ผ inl x') โ†’ p ๏ผ ap inl (inl-lc p)
inl-lc-is-section refl = refl

inr-lc-is-section : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } {y y' : Y} โ†’ (p : inr {๐“ค} {๐“ฅ} {X} {Y} y ๏ผ inr y') โ†’ p ๏ผ ap inr (inr-lc p)
inr-lc-is-section refl = refl

+-is-set : (X : ๐“ค ฬ‡ ) (Y : ๐“ฅ ฬ‡ ) โ†’ is-set X โ†’ is-set Y โ†’ is-set (X + Y)
+-is-set X Y i j {inl x} {inl x'} p q = inl-lc-is-section p โˆ™ r โˆ™ (inl-lc-is-section q)โปยน
 where
  r : ap inl (inl-lc p) ๏ผ ap inl (inl-lc q)
  r = ap (ap inl) (i (inl-lc p) (inl-lc q))
+-is-set X Y i j {inl x} {inr y} p q = ๐Ÿ˜-elim (+disjoint  p)
+-is-set X Y i j {inr y} {inl x} p q = ๐Ÿ˜-elim (+disjoint' p)
+-is-set X Y i j {inr y} {inr y'} p q = inr-lc-is-section p โˆ™ r โˆ™ (inr-lc-is-section q)โปยน
 where
  r : ap inr (inr-lc p) ๏ผ ap inr (inr-lc q)
  r = ap (ap inr) (j (inr-lc p) (inr-lc q))

ร—-is-set : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ } โ†’ is-set X โ†’ is-set Y โ†’ is-set (X ร— Y)
ร—-is-set i j {(x , y)} {(x' , y')} p q =
 p            ๏ผโŸจ tofrom-ร—-๏ผ p โŸฉ
 to-ร—-๏ผ pโ‚€ pโ‚ ๏ผโŸจ apโ‚‚ (ฮป -โ‚€ -โ‚ โ†’ to-ร—-๏ผ -โ‚€ -โ‚) (i pโ‚€ qโ‚€) (j pโ‚ qโ‚) โŸฉ
 to-ร—-๏ผ qโ‚€ qโ‚ ๏ผโŸจ (tofrom-ร—-๏ผ q)โปยน โŸฉ
 q            โˆŽ where
  pโ‚€ : x ๏ผ x'
  pโ‚€ = prโ‚ (from-ร—-๏ผ' p)
  pโ‚ : y ๏ผ y'
  pโ‚ = prโ‚‚ (from-ร—-๏ผ' p)
  qโ‚€ : x ๏ผ x'
  qโ‚€ = prโ‚ (from-ร—-๏ผ' q)
  qโ‚ : y ๏ผ y'
  qโ‚ = prโ‚‚ (from-ร—-๏ผ' q)

\end{code}

Formulation of the K axiom for a universe U.

\begin{code}

K-axiom : โˆ€ ๐“ค โ†’ ๐“ค โบ ฬ‡
K-axiom ๐“ค = (X : ๐“ค ฬ‡ ) โ†’ is-set X

\end{code}

Formulation of propositional extensionality:

\begin{code}

propext : โˆ€ ๐“ค โ†’ ๐“ค โบ ฬ‡
propext ๐“ค = {P Q : ๐“ค ฬ‡ } โ†’ is-prop P โ†’ is-prop Q โ†’ (P โ†’ Q) โ†’ (Q โ†’ P) โ†’ P ๏ผ Q

PropExt : ๐“คฯ‰
PropExt = โˆ€ ๐“ค โ†’ propext ๐“ค

Prop-Ext : ๐“คฯ‰
Prop-Ext = โˆ€ {๐“ค} โ†’ propext ๐“ค

\end{code}

The following says that, in particular, for any proposition P, we have
that P + ยฌ P is a proposition, or that the decidability of a
proposition is a proposition:

\begin{code}

sum-of-contradictory-props : {P : ๐“ค ฬ‡ } {Q : ๐“ฅ ฬ‡ }
                           โ†’ is-prop P โ†’ is-prop Q โ†’ (P โ†’ Q โ†’ ๐Ÿ˜ {๐“ฆ}) โ†’ is-prop (P + Q)
sum-of-contradictory-props {๐“ค} {๐“ฅ} {๐“ฆ} {P} {Q} i j f = ฮณ
 where
  ฮณ : (x y : P + Q) โ†’ x ๏ผ y
  ฮณ (inl p) (inl p') = ap inl (i p p')
  ฮณ (inl p) (inr q)  = ๐Ÿ˜-elim {๐“ค โŠ” ๐“ฅ} {๐“ฆ} (f p q)
  ฮณ (inr q) (inl p)  = ๐Ÿ˜-elim (f p q)
  ฮณ (inr q) (inr q') = ap inr (j q q')

\end{code}

Without assuming excluded middle, we have that there are no truth
values other than ๐Ÿ˜ and ๐Ÿ™:

\begin{code}

no-props-other-than-๐Ÿ˜-or-๐Ÿ™ : propext ๐“ค โ†’ ยฌ (ฮฃ P ๊ž‰ ๐“ค ฬ‡ , is-prop P ร— (P โ‰  ๐Ÿ˜) ร— (P โ‰  ๐Ÿ™))
no-props-other-than-๐Ÿ˜-or-๐Ÿ™ pe (P , i , f , g) = ๐Ÿ˜-elim (ฯ† u)
 where
   u : ยฌ P
   u p = g l
     where
       l : P ๏ผ ๐Ÿ™
       l = pe i ๐Ÿ™-is-prop unique-to-๐Ÿ™ (ฮป _ โ†’ p)
   ฯ† : ยฌยฌ P
   ฯ† u = f l
     where
       l : P ๏ผ ๐Ÿ˜
       l = pe i ๐Ÿ˜-is-prop (ฮป p โ†’ ๐Ÿ˜-elim (u p)) ๐Ÿ˜-elim

\end{code}

Notice how we used ๐Ÿ˜-elim above to coerce a hypothetical value in ๐Ÿ˜
{๐“คโ‚€}, arising from negation, to a value in ๐Ÿ˜ {๐“ค}. Otherwise "u" would
have sufficed in place of "ฮป p โ†’ ๐Ÿ˜-elim (u p)". The same technique is
used in the following construction.

\begin{code}

๐Ÿ˜-is-not-๐Ÿ™ : ๐Ÿ˜ {๐“ค} โ‰  ๐Ÿ™ {๐“ค}
๐Ÿ˜-is-not-๐Ÿ™ p = ๐Ÿ˜-elim (Idtofun (p โปยน) โ‹†)

\end{code}

Unique existence.

\begin{code}

โˆƒ! : {X : ๐“ค ฬ‡ } (A : X โ†’ ๐“ฅ ฬ‡ ) โ†’ ๐“ค โŠ” ๐“ฅ ฬ‡
โˆƒ! A = is-singleton (ฮฃ A)

existsUnique : (X : ๐“ค ฬ‡ ) (A : X โ†’ ๐“ฅ ฬ‡ ) โ†’ ๐“ค โŠ” ๐“ฅ ฬ‡
existsUnique X A = โˆƒ! A

syntax existsUnique X (ฮป x โ†’ b) = โˆƒ! x ๊ž‰ X , b

witness-uniqueness : {X : ๐“ค ฬ‡ } (A : X โ†’ ๐“ฅ ฬ‡ )
                   โ†’ (โˆƒ! x ๊ž‰ X , A x)
                   โ†’ (x y : X) โ†’ A x โ†’ A y โ†’ x ๏ผ y
witness-uniqueness A e x y a b = ap prโ‚ (singletons-are-props e (x , a) (y , b))

infixr -1 existsUnique

โˆƒ!-intro : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } (x : X) (a : A x) โ†’ ((ฯƒ : ฮฃ A) โ†’ (x , a) ๏ผ ฯƒ) โ†’ โˆƒ! A
โˆƒ!-intro x a o = (x , a) , o

โˆƒ!-witness : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } โ†’ โˆƒ! A โ†’ X
โˆƒ!-witness ((x , a) , o) = x

โˆƒ!-is-witness : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } (u : โˆƒ! A) โ†’ A (โˆƒ!-witness u)
โˆƒ!-is-witness ((x , a) , o) = a

description : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } โ†’ โˆƒ! A โ†’ ฮฃ A
description (ฯƒ , o) = ฯƒ

โˆƒ!-uniqueness' : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } (u : โˆƒ! A) โ†’ (ฯƒ : ฮฃ A) โ†’ description u ๏ผ ฯƒ
โˆƒ!-uniqueness' ((x , a) , o) = o

โˆƒ!-uniqueness : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } (u : โˆƒ! A) โ†’ (x : X) (a : A x) โ†’ description u ๏ผ (x , a)
โˆƒ!-uniqueness u x a = โˆƒ!-uniqueness' u (x , a)

โˆƒ!-uniqueness'' : {X : ๐“ค ฬ‡ } {A : X โ†’ ๐“ฅ ฬ‡ } (u : โˆƒ! A) โ†’ (ฯƒ ฯ‰ : ฮฃ A) โ†’ ฯƒ ๏ผ ฯ‰
โˆƒ!-uniqueness'' u ฯƒ ฯ‰ = โˆƒ!-uniqueness' u ฯƒ โปยน โˆ™ โˆƒ!-uniqueness' u ฯ‰

\end{code}

Added 5 March 2020 by Tom de Jong.

\begin{code}

+-is-prop : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ }
          โ†’ is-prop X
            โ†’ is-prop Y
          โ†’ (X โ†’ ยฌ Y)
          โ†’ is-prop (X + Y)
+-is-prop i j f (inl x) (inl x') = ap inl (i x x')
+-is-prop i j f (inl x) (inr y) = ๐Ÿ˜-induction (f x y)
+-is-prop i j f (inr y) (inl x) = ๐Ÿ˜-induction (f x y)
+-is-prop i j f (inr y) (inr y') = ap inr (j y y')

+-is-prop' : {X : ๐“ค ฬ‡ } {Y : ๐“ฅ ฬ‡ }
           โ†’ is-prop X
           โ†’ is-prop Y
           โ†’ (Y โ†’ ยฌ X)
           โ†’ is-prop (X + Y)
+-is-prop' {๐“ค} {๐“ฅ} {X} {Y} i j f = +-is-prop i j (ฮป y x โ†’ f x y)

\end{code}

Added 16th June 2020 by Martin Escardo. (Should have added this ages ago to avoid boiler-plate code.)

\begin{code}

ร—โ‚ƒ-is-prop : {๐“ฅโ‚€ ๐“ฅโ‚ ๐“ฅโ‚‚ : Universe}
             {Xโ‚€ : ๐“ฅโ‚€ ฬ‡ } {Xโ‚ : ๐“ฅโ‚ ฬ‡ } {Xโ‚‚ : ๐“ฅโ‚‚ ฬ‡ }
           โ†’ is-prop Xโ‚€ โ†’ is-prop Xโ‚ โ†’ is-prop Xโ‚‚ โ†’ is-prop (Xโ‚€ ร— Xโ‚ ร— Xโ‚‚)
ร—โ‚ƒ-is-prop iโ‚€ iโ‚ iโ‚‚ = ร—-is-prop iโ‚€ (ร—-is-prop iโ‚ iโ‚‚)

ร—โ‚„-is-prop : {๐“ฅโ‚€ ๐“ฅโ‚ ๐“ฅโ‚‚ ๐“ฅโ‚ƒ : Universe}
             {Xโ‚€ : ๐“ฅโ‚€ ฬ‡ } {Xโ‚ : ๐“ฅโ‚ ฬ‡ } {Xโ‚‚ : ๐“ฅโ‚‚ ฬ‡ } {Xโ‚ƒ : ๐“ฅโ‚ƒ ฬ‡ }
           โ†’ is-prop Xโ‚€ โ†’ is-prop Xโ‚ โ†’ is-prop Xโ‚‚ โ†’ is-prop Xโ‚ƒ โ†’ is-prop (Xโ‚€ ร— Xโ‚ ร— Xโ‚‚ ร— Xโ‚ƒ)
ร—โ‚„-is-prop iโ‚€ iโ‚ iโ‚‚ iโ‚ƒ = ร—-is-prop iโ‚€ (ร—โ‚ƒ-is-prop iโ‚ iโ‚‚ iโ‚ƒ)

ร—โ‚…-is-prop : {๐“ฅโ‚€ ๐“ฅโ‚ ๐“ฅโ‚‚ ๐“ฅโ‚ƒ ๐“ฅโ‚„ : Universe}
             {Xโ‚€ : ๐“ฅโ‚€ ฬ‡ } {Xโ‚ : ๐“ฅโ‚ ฬ‡ } {Xโ‚‚ : ๐“ฅโ‚‚ ฬ‡ } {Xโ‚ƒ : ๐“ฅโ‚ƒ ฬ‡ } {Xโ‚„ : ๐“ฅโ‚„ ฬ‡ }
           โ†’ is-prop Xโ‚€ โ†’ is-prop Xโ‚ โ†’ is-prop Xโ‚‚ โ†’ is-prop Xโ‚ƒ โ†’ is-prop Xโ‚„ โ†’ is-prop (Xโ‚€ ร— Xโ‚ ร— Xโ‚‚ ร— Xโ‚ƒ ร— Xโ‚„)
ร—โ‚…-is-prop iโ‚€ iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ = ร—-is-prop iโ‚€ (ร—โ‚„-is-prop iโ‚ iโ‚‚ iโ‚ƒ iโ‚„)

ร—โ‚†-is-prop : {๐“ฅโ‚€ ๐“ฅโ‚ ๐“ฅโ‚‚ ๐“ฅโ‚ƒ ๐“ฅโ‚„ ๐“ฅโ‚… : Universe}
             {Xโ‚€ : ๐“ฅโ‚€ ฬ‡ } {Xโ‚ : ๐“ฅโ‚ ฬ‡ } {Xโ‚‚ : ๐“ฅโ‚‚ ฬ‡ } {Xโ‚ƒ : ๐“ฅโ‚ƒ ฬ‡ } {Xโ‚„ : ๐“ฅโ‚„ ฬ‡ } {Xโ‚… : ๐“ฅโ‚… ฬ‡ }
           โ†’ is-prop Xโ‚€ โ†’ is-prop Xโ‚ โ†’ is-prop Xโ‚‚ โ†’ is-prop Xโ‚ƒ โ†’ is-prop Xโ‚„ โ†’ is-prop Xโ‚… โ†’ is-prop (Xโ‚€ ร— Xโ‚ ร— Xโ‚‚ ร— Xโ‚ƒ ร— Xโ‚„ ร— Xโ‚…)
ร—โ‚†-is-prop iโ‚€ iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ iโ‚… = ร—-is-prop iโ‚€ (ร—โ‚…-is-prop iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ iโ‚…)

ร—โ‚‡-is-prop : {๐“ฅโ‚€ ๐“ฅโ‚ ๐“ฅโ‚‚ ๐“ฅโ‚ƒ ๐“ฅโ‚„ ๐“ฅโ‚… ๐“ฅโ‚† : Universe}
             {Xโ‚€ : ๐“ฅโ‚€ ฬ‡ } {Xโ‚ : ๐“ฅโ‚ ฬ‡ } {Xโ‚‚ : ๐“ฅโ‚‚ ฬ‡ } {Xโ‚ƒ : ๐“ฅโ‚ƒ ฬ‡ } {Xโ‚„ : ๐“ฅโ‚„ ฬ‡ } {Xโ‚… : ๐“ฅโ‚… ฬ‡ } {Xโ‚† : ๐“ฅโ‚† ฬ‡ }
           โ†’ is-prop Xโ‚€ โ†’ is-prop Xโ‚ โ†’ is-prop Xโ‚‚ โ†’ is-prop Xโ‚ƒ โ†’ is-prop Xโ‚„ โ†’ is-prop Xโ‚… โ†’ is-prop Xโ‚† โ†’ is-prop (Xโ‚€ ร— Xโ‚ ร— Xโ‚‚ ร— Xโ‚ƒ ร— Xโ‚„ ร— Xโ‚… ร— Xโ‚†)
ร—โ‚‡-is-prop iโ‚€ iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ iโ‚… iโ‚† = ร—-is-prop iโ‚€ (ร—โ‚†-is-prop iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ iโ‚… iโ‚†)

ร—โ‚ˆ-is-prop : {๐“ฅโ‚€ ๐“ฅโ‚ ๐“ฅโ‚‚ ๐“ฅโ‚ƒ ๐“ฅโ‚„ ๐“ฅโ‚… ๐“ฅโ‚† ๐“ฅโ‚‡ : Universe}
             {Xโ‚€ : ๐“ฅโ‚€ ฬ‡ } {Xโ‚ : ๐“ฅโ‚ ฬ‡ } {Xโ‚‚ : ๐“ฅโ‚‚ ฬ‡ } {Xโ‚ƒ : ๐“ฅโ‚ƒ ฬ‡ } {Xโ‚„ : ๐“ฅโ‚„ ฬ‡ } {Xโ‚… : ๐“ฅโ‚… ฬ‡ } {Xโ‚† : ๐“ฅโ‚† ฬ‡ } {Xโ‚‡ : ๐“ฅโ‚‡ ฬ‡ }
           โ†’ is-prop Xโ‚€ โ†’ is-prop Xโ‚ โ†’ is-prop Xโ‚‚ โ†’ is-prop Xโ‚ƒ โ†’ is-prop Xโ‚„ โ†’ is-prop Xโ‚… โ†’ is-prop Xโ‚† โ†’ is-prop Xโ‚‡ โ†’ is-prop (Xโ‚€ ร— Xโ‚ ร— Xโ‚‚ ร— Xโ‚ƒ ร— Xโ‚„ ร— Xโ‚… ร— Xโ‚† ร— Xโ‚‡)
ร—โ‚ˆ-is-prop iโ‚€ iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ iโ‚… iโ‚† iโ‚‡ = ร—-is-prop iโ‚€ (ร—โ‚‡-is-prop iโ‚ iโ‚‚ iโ‚ƒ iโ‚„ iโ‚… iโ‚† iโ‚‡)
\end{code}

The type of truth values.

\begin{code}

ฮฉ : โˆ€ ๐“ค โ†’ ๐“ค โบ ฬ‡
ฮฉ ๐“ค = ฮฃ P ๊ž‰ ๐“ค ฬ‡ , is-prop P

ฮฉโ‚€ = ฮฉ ๐“คโ‚€

_holds : ฮฉ ๐“ค โ†’ ๐“ค ฬ‡
(P , i) holds = P


holds-is-prop : (p : ฮฉ ๐“ค) โ†’ is-prop (p holds)
holds-is-prop (P , i) = i

โŠฅฮฉ โŠคฮฉ : ฮฉ ๐“ค
โŠฅฮฉ = ๐Ÿ˜ , ๐Ÿ˜-is-prop   -- false
โŠคฮฉ = ๐Ÿ™ , ๐Ÿ™-is-prop   -- true

\end{code}