]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/nlibrary/topology/igft.ma
it starts to work
[helm.git] / helm / software / matita / nlibrary / topology / igft.ma
1 include "sets/sets.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 alias symbol "covers" (instance 0) = "covers".
78 alias symbol "covers" (instance 2) = "covers".
79 alias symbol "covers" (instance 1) = "covers set".
80 ntheorem covers_elim2:
81  ∀A: axiom_set. ∀U:Ω^A.∀P: A → CProp[0].
82   (∀a:A. a ∈ U → P a) →
83    (∀a:A.∀V:Ω^A. a ◃ V → V ◃ U → (∀y. y ∈ V → P y) → P a) →
84      ∀a:A. a ◃ U → P a.
85 #A; #U; #P; #H1; #H2; #a; #aU; nelim aU;
86 ##[ #b; #H; napply H1; napply H;
87 ##| #b; #i; #CaiU; #H; napply H2; 
88     ##[ napply (C ? b i);
89     ##| napply cinfinity; ##[ napply i ] nwhd; #y; #H3; napply creflexivity; ##]
90     nassumption; 
91 ##]
92 nqed.
93 *)
94
95 alias symbol "fish" (instance 1) = "fish set".
96 alias symbol "covers" = "covers".
97 ntheorem compatibility: ∀A:axiom_set.∀a:A.∀U,V. a ⋉ V → a ◃ U → U ⋉ V.
98 #A; #a; #U; #V; #aV; #aU; ngeneralize in match aV; (* clear aV *)
99 nelim aU;
100 ##[ #b; #bU; #bV; napply ex_intro; ##[ napply b] napply conj; nassumption;
101 ##| #b; #i; #CaiU; #H; #bV; ncases bV in i CaiU H;
102     #c; #cV; #CciV; #i; #CciU; #H; ncases (CciV i); #x; *; #xCci; #xV;
103     napply H; nassumption;
104 ##]
105 nqed.
106
107 STOP
108
109 definition leq ≝ λA:axiom_set.λa,b:A. a ◃ {y|b=y}.
110
111 interpretation "covered by one" 'leq a b = (leq ? a b).
112
113 theorem leq_refl: ∀A:axiom_set.∀a:A. a ≤ a.
114  intros;
115  apply refl;
116  normalize;
117  reflexivity.
118 qed.
119
120 theorem leq_trans: ∀A:axiom_set.∀a,b,c:A. a ≤ b → b ≤ c → a ≤ c.
121  intros;
122  unfold in H H1 ⊢ %;
123  apply (transitivity ???? H);
124  constructor 1;
125  intros;
126  normalize in H2;
127  rewrite < H2;
128  assumption.
129 qed.
130
131 definition uparrow ≝ λA:axiom_set.λa:A.mk_powerset ? (λb:A. a ≤ b).
132
133 interpretation "uparrow" 'uparrow a = (uparrow ? a).
134
135 definition downarrow ≝ λA:axiom_set.λU:Ω \sup A.mk_powerset ? (λa:A. (↑a) ≬ U).
136
137 interpretation "downarrow" 'downarrow a = (downarrow ? a).
138
139 definition fintersects ≝ λA:axiom_set.λU,V:Ω \sup A.↓U ∩ ↓V.
140
141 interpretation "fintersects" 'fintersects U V = (fintersects ? U V).
142
143 record convergent_generated_topology : Type ≝
144  { AA:> axiom_set;
145    convergence: ∀a:AA.∀U,V:Ω \sup AA. a ◃ U → a ◃ V → a ◃ (U ↓ V)
146  }.