]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/matita/contribs/igft/igft.ma
formal topologies
[helm.git] / helm / software / matita / contribs / igft / igft.ma
diff --git a/helm/software/matita/contribs/igft/igft.ma b/helm/software/matita/contribs/igft/igft.ma
new file mode 100644 (file)
index 0000000..b6da862
--- /dev/null
@@ -0,0 +1,65 @@
+
+record powerset (A : Type) : Type := { content : A → CProp }.
+
+notation > "Ω ^ A" non associative with precedence 50 for @{'P $A}.
+notation "Ω \sup A" non associative with precedence 50 for @{'P $A}.
+interpretation "Powerset" 'P A = (powerset A).
+
+record AxiomSet : Type := {
+  S :> Type;
+  I_ : S → Type;
+  C_ : ∀a.I_ a → Ω ^ S
+}.
+
+notation "'I'" non associative with precedence 90 for @{'I}.
+interpretation "I" 'I = (I_ _).
+notation < "'I' \lpar a \rpar" non associative with precedence 90 for @{'I1 $a}.
+interpretation "I a" 'I1 a = (I_ _ a).
+notation "'C'" non associative with precedence 90 for @{'C}.
+interpretation "C" 'C = (C_ _).
+notation < "'C' \lpar a \rpar" non associative with precedence 90 for @{'C1 $a}.
+interpretation "C a" 'C1 a = (C_ _ a).
+notation < "'C' \lpar a , i \rpar" non associative with precedence 90 for @{'C2 $a $i}.
+interpretation "C a i" 'C2 a i = (C_ _ a i).
+
+definition in_subset :=
+  λA:AxiomSet.λa:A.λU:Ω^A.content A U a.
+  
+notation "hvbox(a break εU)" non associative with precedence 50 for 
+@{'in_subset $a $U}.
+interpretation "In subset" 'in_subset a U = (in_subset _ a U).
+
+definition for_all ≝ λA:AxiomSet.λU:Ω^A.λP:A → CProp.∀x.xεU → P x.
+
+inductive covers (A : AxiomSet) (U : Ω ^ A) : A → CProp :=
+ | reflexivity : ∀a.aεU → covers A U a
+ | infinity : ∀a.∀i : I a. for_all A (C a i) (covers A U)  → covers A U a.
+notation "U ⊲ V" non associative with precedence 45
+for @{ 'covers_subsets $U $V}.
+interpretation "Covers subsets" 'covers_subsets U V = (for_all _ U (covers _ V)).
+interpretation "Covers elem subset" 'covers_subsets U V = (covers _ V U).
+
+definition subseteq := λA:AxiomSet.λU,V:Ω^A.∀x.xεU → xεV.
+
+interpretation "subseteq" 'subseteq u v = (subseteq _ u v).
+
+definition covers_elim ≝
+ λA:AxiomSet.λU,P: Ω^A.λH1: U ⊆ P. 
+  λH2:∀a:A.∀j:I a. C a j ⊲ U → C a j ⊆ P → aεP.
+    let rec aux (a:A) (p:a ⊲ U) on p : aεP ≝
+     match p return λaa.λ_:aa ⊲ U.aa ε P with
+      [ reflexivity a q ⇒ H1 a q
+      | infinity a j q ⇒ H2 a j q (λb.λr. aux b (q b r))]
+    in
+     aux.
+
+interpretation "char" 'subset p = (mk_powerset _ p).  
+
+theorem transitivity: ∀A:AxiomSet.∀a:A.∀U,V. a ⊲ U → U ⊲ V → a ⊲ V.
+ intros;
+ apply (covers_elim ?? {a | a ⊲ V} ??? H);
+  [ intros 2; apply (H1 ? H2);
+  | intros; apply (infinity ??? j);
+    intros 2; apply (H3 ? H4);]
+qed.