]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/nlibrary/topology/igft.ma
1fb59f067aa3ab33ee8426597ce2f0e2f50ebc3c
[helm.git] / helm / software / matita / nlibrary / topology / igft.ma
1 include "logic/connectives.ma".
2
3 nrecord powerset (X : Type[0]) : Type[1] ≝ { char : X → CProp[0] }.
4
5 interpretation "char" 'subset p = (mk_powerset ? p).  
6
7 interpretation "pwset" 'powerset a = (powerset a). 
8
9 interpretation "in" 'mem a X = (char ? X a). 
10
11 ndefinition subseteq ≝ λA.λU,V : Ω^A. 
12   ∀x.x ∈ U → x ∈ V.
13
14 interpretation "subseteq" 'subseteq u v = (subseteq ? u v).
15
16 ndefinition overlaps ≝ λA.λU,V : Ω^A. 
17   ∃x.x ∈ U ∧ x ∈ V.
18
19 interpretation "overlaps" 'overlaps u v = (overlaps ? u v).
20 (*
21 ndefinition intersect ≝ λA.λu,v:Ω\sup A.{ y | y ∈ u ∧ y ∈ v }.
22
23 interpretation "intersect" 'intersects u v = (intersect ? u v). 
24 *)
25 nrecord axiom_set : Type[1] ≝ { 
26   S:> Type[0];
27   I: S → Type[0];
28   C: ∀a:S. I a → Ω ^ S
29 }.
30
31 ndefinition cover_set ≝ λc:∀A:axiom_set.Ω^A → A → CProp[0].λA,C,U.
32   ∀y.y ∈ C → c A U y.
33
34 notation "hvbox(a break ◃ b)" non associative with precedence 45
35 for @{ 'covers $a $b }. (* a \ltri b *)
36
37 interpretation "covers set temp" 'covers C U = (cover_set ?? C U).
38
39 ninductive cover (A : axiom_set) (U : Ω^A) : A → CProp[0] ≝ 
40 | creflexivity : ∀a:A. a ∈ U → cover ? U a
41 | cinfinity    : ∀a:A. ∀i:I ? a. (C ? a i ◃ U) → cover ? U a.
42 napply cover;
43 nqed.
44
45 interpretation "covers" 'covers a U = (cover ? U a).
46 interpretation "covers set" 'covers a U = (cover_set cover ? a U).
47
48 ndefinition fish_set ≝ λf:∀A:axiom_set.Ω^A → A → CProp[0].
49  λA,U,V.
50   ∃a.a ∈ V ∧ f A U a.
51
52 notation "hvbox(a break ⋉ b)" non associative with precedence 45
53 for @{ 'fish $a $b }. (* a \ltimes b *)
54
55 interpretation "fish set temp" 'fish A U = (fish_set ?? U A).
56
57 ncoinductive fish (A : axiom_set) (F : Ω^A) : A → CProp[0] ≝ 
58 | cfish : ∀a. a ∈ F → (∀i:I ? a.C A a i ⋉ F) → fish A F a.
59 napply fish;
60 nqed.
61
62 interpretation "fish set" 'fish A U = (fish_set fish ? U A).
63 interpretation "fish" 'fish a U = (fish ? U a).
64
65 nlet corec fish_rec (A:axiom_set) (U: Ω^A)
66  (P: Ω^A) (H1: P ⊆ U)
67   (H2: ∀a:A. a ∈ P → ∀j: I ? a. C ? a j ≬ P):
68    ∀a:A. ∀p: a ∈ P. a ⋉ U ≝ ?.
69 #a; #p; napply cfish;
70 ##[ napply H1; napply p;
71 ##| #i; ncases (H2 a p i); #x; *; #xC; #xP; napply ex_intro; ##[napply x]
72     napply conj; ##[ napply xC ] napply (fish_rec ? U P); nassumption;
73 ##]
74 nqed.
75
76 (*
77 ntheorem covers_elim2:
78  ∀A: axiom_set. ∀U:Ω^A.∀P: A → CProp[0].
79   (∀a:A. a ∈ U → P a) →
80    (∀a:A.∀V:Ω^A. a ◃ V → V ◃ U → (∀y. y ∈ V → P y) → P a) →
81      ∀a:A. a ◃ U → P a.
82 #A; #U; #P; #H1; #H2; #a; #aU; nelim aU;
83 ##[ #b; #H; napply H1; napply H;
84 ##| #b; #i; #CaiU; #H; napply H2; 
85     ##[ napply (C ? b i);
86     ##| napply cinfinity; ##[ napply i ] nwhd; #y; #H3; napply creflexivity; ##]
87     nassumption; 
88 ##]
89 nqed.
90 *)
91
92 alias symbol "fish" (instance 1) = "fish set".
93 alias symbol "covers" = "covers".
94 ntheorem compatibility: ∀A:axiom_set.∀a:A.∀U,V. a ⋉ V → a ◃ U → U ⋉ V.
95 #A; #a; #U; #V; #aV; #aU; ngeneralize in match aV; (* clear aV *)
96 nelim aU;
97 ##[ #b; #bU; #bV; napply ex_intro; ##[ napply b] napply conj; nassumption;
98 ##| #b; #i; #CaiU; #H; #bV; ncases bV in i CaiU H;
99     #c; #cV; #CciV; #i; #CciU; #H; ncases (CciV i); #x; *; #xCci; #xV;
100     napply H; nassumption;
101 ##]
102 nqed.
103
104 definition leq ≝ λA:axiom_set.λa,b:A. a ◃ {y|b=y}.
105
106 interpretation "covered by one" 'leq a b = (leq ? a b).
107
108 theorem leq_refl: ∀A:axiom_set.∀a:A. a ≤ a.
109  intros;
110  apply refl;
111  normalize;
112  reflexivity.
113 qed.
114
115 theorem leq_trans: ∀A:axiom_set.∀a,b,c:A. a ≤ b → b ≤ c → a ≤ c.
116  intros;
117  unfold in H H1 ⊢ %;
118  apply (transitivity ???? H);
119  constructor 1;
120  intros;
121  normalize in H2;
122  rewrite < H2;
123  assumption.
124 qed.
125
126 definition uparrow ≝ λA:axiom_set.λa:A.mk_powerset ? (λb:A. a ≤ b).
127
128 interpretation "uparrow" 'uparrow a = (uparrow ? a).
129
130 definition downarrow ≝ λA:axiom_set.λU:Ω \sup A.mk_powerset ? (λa:A. (↑a) ≬ U).
131
132 interpretation "downarrow" 'downarrow a = (downarrow ? a).
133
134 definition fintersects ≝ λA:axiom_set.λU,V:Ω \sup A.↓U ∩ ↓V.
135
136 interpretation "fintersects" 'fintersects U V = (fintersects ? U V).
137
138 record convergent_generated_topology : Type ≝
139  { AA:> axiom_set;
140    convergence: ∀a:AA.∀U,V:Ω \sup AA. a ◃ U → a ◃ V → a ◃ (U ↓ V)
141  }.