aboutsummaryrefslogtreecommitdiff
path: root/hott/Propositions.thy
blob: 66e34d26b4b086bc396af1f93a0f39bd32e9182e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
theory Propositions
imports
  MLTT.Prelude
  Equivalence

begin

definition isProp where "isProp A \<equiv> \<Prod>x y: A. x =\<^bsub>A\<^esub> y"
definition isSet where "isSet A \<equiv> \<Prod>x y: A. \<Prod>p q: x =\<^bsub>A\<^esub> y. p =\<^bsub>x =\<^bsub>A\<^esub> y\<^esub> q"

Theorem isProp_Top: "isProp \<top>"
  unfolding isProp_def
  by (intros, elims, refl)

Theorem isProp_Bot: "isProp \<bottom>"
  unfolding isProp_def
  by (intros, elim)

end