2017-05-24 13:54:00 +02:00
|
|
|
|
Require Import HoTT HitTactics.
|
2017-08-01 15:41:53 +02:00
|
|
|
|
Require Export representations.definition disjunction fsets.operations.
|
2017-05-23 16:30:31 +02:00
|
|
|
|
|
2017-06-19 21:32:55 +02:00
|
|
|
|
(* Lemmas relating operations to the membership predicate *)
|
|
|
|
|
Section operations_isIn.
|
2017-06-20 15:08:52 +02:00
|
|
|
|
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Context {A : Type}.
|
|
|
|
|
Context `{Univalence}.
|
|
|
|
|
|
2017-08-07 16:49:46 +02:00
|
|
|
|
Lemma union_idem : forall x: FSet A, x ∪ x = x.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Proof.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
hinduction ; try (intros ; apply set_path2).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
- apply nl.
|
|
|
|
|
- apply idem.
|
|
|
|
|
- intros x y P Q.
|
|
|
|
|
rewrite assoc.
|
|
|
|
|
rewrite (comm x y).
|
|
|
|
|
rewrite <- (assoc y x x).
|
|
|
|
|
rewrite P.
|
|
|
|
|
rewrite (comm y x).
|
|
|
|
|
rewrite <- (assoc x y y).
|
|
|
|
|
f_ap.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
Defined.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
|
|
|
|
|
(** ** Properties about subset relation. *)
|
|
|
|
|
Lemma subset_union (X Y : FSet A) :
|
2017-08-07 16:49:46 +02:00
|
|
|
|
X ⊆ Y -> X ∪ Y = Y.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Proof.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
hinduction X ; try (intros; apply path_forall; intro; apply set_path2).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
- intros. apply nl.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
- intros a.
|
|
|
|
|
hinduction Y ; try (intros; apply path_forall; intro; apply set_path2).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
+ intro.
|
|
|
|
|
contradiction.
|
|
|
|
|
+ intro a0.
|
|
|
|
|
simple refine (Trunc_ind _ _).
|
|
|
|
|
intro p ; simpl.
|
|
|
|
|
rewrite p; apply idem.
|
|
|
|
|
+ intros X1 X2 IH1 IH2.
|
|
|
|
|
simple refine (Trunc_ind _ _).
|
|
|
|
|
intros [e1 | e2].
|
|
|
|
|
++ rewrite assoc.
|
|
|
|
|
rewrite (IH1 e1).
|
|
|
|
|
reflexivity.
|
|
|
|
|
++ rewrite comm.
|
|
|
|
|
rewrite <- assoc.
|
|
|
|
|
rewrite (comm X2).
|
|
|
|
|
rewrite (IH2 e2).
|
|
|
|
|
reflexivity.
|
|
|
|
|
- intros X1 X2 IH1 IH2 [G1 G2].
|
|
|
|
|
rewrite <- assoc.
|
|
|
|
|
rewrite (IH2 G2).
|
|
|
|
|
apply (IH1 G1).
|
|
|
|
|
Defined.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Lemma subset_union_l (X : FSet A) :
|
2017-08-07 16:49:46 +02:00
|
|
|
|
forall Y, X ⊆ X ∪ Y.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Proof.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
hinduction X ; try (repeat (intro; intros; apply path_forall);
|
|
|
|
|
intro ; apply equiv_hprop_allpath ; apply _).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
- apply (fun _ => tt).
|
|
|
|
|
- intros a Y.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
apply (tr(inl(tr idpath))).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
- intros X1 X2 HX1 HX2 Y.
|
|
|
|
|
split.
|
|
|
|
|
* rewrite <- assoc. apply HX1.
|
|
|
|
|
* rewrite (comm X1 X2). rewrite <- assoc. apply HX2.
|
|
|
|
|
Defined.
|
|
|
|
|
|
2017-08-07 16:22:55 +02:00
|
|
|
|
(* simplify it using extensionality *)
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Lemma comprehension_or : forall ϕ ψ (x: FSet A),
|
2017-08-07 16:49:46 +02:00
|
|
|
|
comprehension (fun a => orb (ϕ a) (ψ a)) x
|
|
|
|
|
= (comprehension ϕ x) ∪ (comprehension ψ x).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Proof.
|
|
|
|
|
intros ϕ ψ.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
hinduction ; try (intros; apply set_path2).
|
2017-08-03 12:21:34 +02:00
|
|
|
|
- apply (union_idem _)^.
|
|
|
|
|
- intros.
|
|
|
|
|
destruct (ϕ a) ; destruct (ψ a) ; symmetry.
|
|
|
|
|
* apply union_idem.
|
|
|
|
|
* apply nr.
|
|
|
|
|
* apply nl.
|
|
|
|
|
* apply union_idem.
|
|
|
|
|
- simpl. intros x y P Q.
|
|
|
|
|
rewrite P.
|
|
|
|
|
rewrite Q.
|
|
|
|
|
rewrite <- assoc.
|
|
|
|
|
rewrite (assoc (comprehension ψ x)).
|
|
|
|
|
rewrite (comm (comprehension ψ x) (comprehension ϕ y)).
|
|
|
|
|
rewrite <- assoc.
|
|
|
|
|
rewrite <- assoc.
|
|
|
|
|
reflexivity.
|
|
|
|
|
Defined.
|
2017-05-23 16:30:31 +02:00
|
|
|
|
|
2017-06-19 21:32:55 +02:00
|
|
|
|
End operations_isIn.
|
|
|
|
|
|
|
|
|
|
(* Other properties *)
|
|
|
|
|
Section properties.
|
|
|
|
|
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Context {A : Type}.
|
|
|
|
|
Context `{Univalence}.
|
|
|
|
|
|
|
|
|
|
(** isIn properties *)
|
2017-08-07 16:49:46 +02:00
|
|
|
|
Definition empty_isIn (a: A) : a ∈ E -> Empty := idmap.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
|
2017-08-07 16:49:46 +02:00
|
|
|
|
Definition singleton_isIn (a b: A) : a ∈ {|b|} -> Trunc (-1) (a = b) := idmap.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
|
2017-08-07 16:22:55 +02:00
|
|
|
|
Definition union_isIn (X Y : FSet A) (a : A)
|
2017-08-07 16:49:46 +02:00
|
|
|
|
: a ∈ X ∪ Y = a ∈ X ∨ a ∈ Y := idpath.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
|
|
|
|
|
Lemma comprehension_isIn (ϕ : A -> Bool) (a : A) : forall X : FSet A,
|
2017-08-07 16:49:46 +02:00
|
|
|
|
a ∈ (comprehension ϕ X) = if ϕ a then a ∈ X else False_hp.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
Proof.
|
|
|
|
|
hinduction ; try (intros ; apply set_path2) ; cbn.
|
|
|
|
|
- destruct (ϕ a) ; reflexivity.
|
|
|
|
|
- intros b.
|
|
|
|
|
assert (forall c d, ϕ a = c -> ϕ b = d ->
|
|
|
|
|
a ∈ (if ϕ b then {|b|} else ∅)
|
|
|
|
|
=
|
|
|
|
|
(if ϕ a then BuildhProp (Trunc (-1) (a = b)) else False_hp)) as X.
|
|
|
|
|
{
|
|
|
|
|
intros c d Hc Hd.
|
|
|
|
|
destruct c ; destruct d ; rewrite Hc, Hd ; try reflexivity
|
|
|
|
|
; apply path_iff_hprop ; try contradiction ; intros ; strip_truncations
|
|
|
|
|
; apply (false_ne_true).
|
|
|
|
|
* apply (Hd^ @ ap ϕ X^ @ Hc).
|
|
|
|
|
* apply (Hc^ @ ap ϕ X @ Hd).
|
|
|
|
|
}
|
|
|
|
|
apply (X (ϕ a) (ϕ b) idpath idpath).
|
|
|
|
|
- intros X Y H1 H2.
|
|
|
|
|
rewrite H1, H2.
|
|
|
|
|
destruct (ϕ a).
|
|
|
|
|
* reflexivity.
|
|
|
|
|
* apply path_iff_hprop.
|
|
|
|
|
** intros Z ; strip_truncations.
|
|
|
|
|
destruct Z ; assumption.
|
|
|
|
|
** intros ; apply tr ; right ; assumption.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Defined.
|
|
|
|
|
|
2017-08-07 22:13:42 +02:00
|
|
|
|
Context {B : Type}.
|
2017-08-07 23:15:25 +02:00
|
|
|
|
|
2017-08-07 23:27:53 +02:00
|
|
|
|
Lemma isIn_singleproduct (a : A) (b : B) (c : A) : forall (Y : FSet B),
|
2017-08-07 23:15:25 +02:00
|
|
|
|
isIn (a, b) (single_product c Y) = land (BuildhProp (Trunc (-1) (a = c))) (isIn b Y).
|
|
|
|
|
Proof.
|
|
|
|
|
hinduction ; try (intros ; apply path_ishprop).
|
2017-08-07 23:27:53 +02:00
|
|
|
|
- apply path_hprop ; symmetry ; apply prod_empty_r.
|
2017-08-07 23:15:25 +02:00
|
|
|
|
- intros d.
|
|
|
|
|
apply path_iff_hprop.
|
|
|
|
|
* intros.
|
2017-08-07 23:27:53 +02:00
|
|
|
|
strip_truncations.
|
|
|
|
|
split ; apply tr ; try (apply (ap fst X)) ; try (apply (ap snd X)).
|
2017-08-07 23:15:25 +02:00
|
|
|
|
* intros [Z1 Z2].
|
2017-08-07 23:27:53 +02:00
|
|
|
|
strip_truncations.
|
|
|
|
|
rewrite Z1, Z2.
|
|
|
|
|
apply (tr idpath).
|
2017-08-07 23:15:25 +02:00
|
|
|
|
- intros X1 X2 HX1 HX2.
|
|
|
|
|
apply path_iff_hprop.
|
|
|
|
|
* intros X.
|
|
|
|
|
strip_truncations.
|
2017-08-07 23:27:53 +02:00
|
|
|
|
destruct X as [H1 | H1] ; rewrite ?HX1, ?HX2 in H1 ; destruct H1 as [H1 H2].
|
|
|
|
|
** split.
|
2017-08-07 23:15:25 +02:00
|
|
|
|
*** apply H1.
|
|
|
|
|
*** apply (tr(inl H2)).
|
2017-08-07 23:27:53 +02:00
|
|
|
|
** split.
|
2017-08-07 23:15:25 +02:00
|
|
|
|
*** apply H1.
|
|
|
|
|
*** apply (tr(inr H2)).
|
|
|
|
|
* intros [H1 H2].
|
|
|
|
|
strip_truncations.
|
|
|
|
|
apply tr.
|
|
|
|
|
rewrite HX1, HX2.
|
|
|
|
|
destruct H2 as [Hb1 | Hb2].
|
|
|
|
|
** left.
|
2017-08-07 23:27:53 +02:00
|
|
|
|
split ; try (apply (tr H1)) ; try (apply Hb1).
|
2017-08-07 23:15:25 +02:00
|
|
|
|
** right.
|
|
|
|
|
split ; try (apply (tr H1)) ; try (apply Hb2).
|
|
|
|
|
Defined.
|
|
|
|
|
|
2017-08-07 23:27:53 +02:00
|
|
|
|
Definition isIn_product (a : A) (b : B) (X : FSet A) (Y : FSet B) :
|
2017-08-07 23:15:25 +02:00
|
|
|
|
isIn (a,b) (product X Y) = land (isIn a X) (isIn b Y).
|
2017-08-07 22:13:42 +02:00
|
|
|
|
Proof.
|
2017-08-07 23:15:25 +02:00
|
|
|
|
hinduction X ; try (intros ; apply path_ishprop).
|
|
|
|
|
- apply path_hprop ; symmetry ; apply prod_empty_l.
|
|
|
|
|
- intros.
|
|
|
|
|
apply isIn_singleproduct.
|
|
|
|
|
- intros X1 X2 HX1 HX2.
|
|
|
|
|
rewrite HX1, HX2.
|
|
|
|
|
apply path_iff_hprop.
|
|
|
|
|
* intros X.
|
2017-08-07 22:13:42 +02:00
|
|
|
|
strip_truncations.
|
2017-08-07 23:27:53 +02:00
|
|
|
|
destruct X as [[H3 H4] | [H3 H4]] ; split ; try (apply H4).
|
|
|
|
|
** apply (tr(inl H3)).
|
|
|
|
|
** apply (tr(inr H3)).
|
2017-08-07 23:15:25 +02:00
|
|
|
|
* intros [H1 H2].
|
2017-08-07 22:13:42 +02:00
|
|
|
|
strip_truncations.
|
2017-08-07 23:27:53 +02:00
|
|
|
|
destruct H1 as [H1 | H1] ; apply tr.
|
|
|
|
|
** left ; split ; assumption.
|
|
|
|
|
** right ; split ; assumption.
|
2017-08-07 22:13:42 +02:00
|
|
|
|
Defined.
|
|
|
|
|
|
2017-08-07 16:22:55 +02:00
|
|
|
|
(* The proof can be simplified using extensionality *)
|
2017-08-03 12:21:34 +02:00
|
|
|
|
(** comprehension properties *)
|
2017-08-07 16:49:46 +02:00
|
|
|
|
Lemma comprehension_false Y : comprehension (fun (_ : A) => false) Y = ∅.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Proof.
|
|
|
|
|
hrecursion Y; try (intros; apply set_path2).
|
|
|
|
|
- reflexivity.
|
|
|
|
|
- reflexivity.
|
|
|
|
|
- intros x y IHa IHb.
|
2017-08-07 16:22:55 +02:00
|
|
|
|
rewrite IHa, IHb.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
apply union_idem.
|
|
|
|
|
Defined.
|
|
|
|
|
|
2017-08-07 16:22:55 +02:00
|
|
|
|
(* Can be simplified using extensionality *)
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Lemma comprehension_subset : forall ϕ (X : FSet A),
|
2017-08-07 16:49:46 +02:00
|
|
|
|
(comprehension ϕ X) ∪ X = X.
|
2017-08-03 12:21:34 +02:00
|
|
|
|
Proof.
|
|
|
|
|
intros ϕ.
|
|
|
|
|
hrecursion; try (intros ; apply set_path2) ; cbn.
|
|
|
|
|
- apply union_idem.
|
|
|
|
|
- intro a.
|
|
|
|
|
destruct (ϕ a).
|
|
|
|
|
* apply union_idem.
|
|
|
|
|
* apply nl.
|
|
|
|
|
- intros X Y P Q.
|
|
|
|
|
rewrite assoc.
|
|
|
|
|
rewrite <- (assoc (comprehension ϕ X) (comprehension ϕ Y) X).
|
|
|
|
|
rewrite (comm (comprehension ϕ Y) X).
|
|
|
|
|
rewrite assoc.
|
|
|
|
|
rewrite P.
|
|
|
|
|
rewrite <- assoc.
|
|
|
|
|
rewrite Q.
|
|
|
|
|
reflexivity.
|
|
|
|
|
Defined.
|
2017-08-03 15:07:53 +02:00
|
|
|
|
|
2017-08-07 16:49:46 +02:00
|
|
|
|
Lemma merely_choice : forall X : FSet A, hor (X = ∅) (hexists (fun a => a ∈ X)).
|
2017-08-03 15:07:53 +02:00
|
|
|
|
Proof.
|
|
|
|
|
hinduction; try (intros; apply equiv_hprop_allpath ; apply _).
|
|
|
|
|
- apply (tr (inl idpath)).
|
|
|
|
|
- intro a.
|
|
|
|
|
refine (tr (inr (tr (a ; tr idpath)))).
|
|
|
|
|
- intros X Y TX TY.
|
|
|
|
|
strip_truncations.
|
|
|
|
|
destruct TX as [XE | HX] ; destruct TY as [YE | HY] ; try(strip_truncations ; apply tr).
|
2017-08-07 16:22:55 +02:00
|
|
|
|
* refine (tr (inl _)).
|
2017-08-03 15:07:53 +02:00
|
|
|
|
rewrite XE, YE.
|
|
|
|
|
apply (union_idem E).
|
2017-08-07 16:22:55 +02:00
|
|
|
|
* destruct HY as [a Ya].
|
|
|
|
|
refine (inr (tr _)).
|
2017-08-03 15:07:53 +02:00
|
|
|
|
exists a.
|
|
|
|
|
apply (tr (inr Ya)).
|
2017-08-07 16:22:55 +02:00
|
|
|
|
* destruct HX as [a Xa].
|
|
|
|
|
refine (inr (tr _)).
|
2017-08-03 15:07:53 +02:00
|
|
|
|
exists a.
|
|
|
|
|
apply (tr (inl Xa)).
|
2017-08-07 16:22:55 +02:00
|
|
|
|
* destruct (HX, HY) as [[a Xa] [b Yb]].
|
|
|
|
|
refine (inr (tr _)).
|
2017-08-03 15:07:53 +02:00
|
|
|
|
exists a.
|
|
|
|
|
apply (tr (inl Xa)).
|
|
|
|
|
Defined.
|
2017-08-07 14:55:07 +02:00
|
|
|
|
|
2017-06-19 21:06:17 +02:00
|
|
|
|
End properties.
|