]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/nlibrary/topology/igft.ma
more notation for topologies, and some prentheses that can be used in notation
[helm.git] / helm / software / matita / nlibrary / topology / igft.ma
1 include "sets/sets.ma".
2
3 nrecord axiom_set : Type[1] ≝ { 
4   S:> Type[0];
5   I: S → Type[0];
6   C: ∀a:S. I a → Ω ^ S
7 }.
8
9 notation "𝐈  \sub( ❨term 90 a❩ )" non associative with precedence 70 for @{ 'I $a }.
10 notation "𝐂 \sub ( ❨term 90 a,\emsp term 90 i❩ )" non associative with precedence 70 for @{ 'C $a $i }.
11
12 notation > "𝐈 term 90 a" non associative with precedence 70 for @{ 'I $a }.
13 notation > "𝐂 term 90 a term 90 i" non associative with precedence 70 for @{ 'C $a $i }.
14
15 interpretation "I" 'I a = (I ? a).
16 interpretation "C" 'C a i = (C ? a i).
17
18 ndefinition cover_set ≝ λc:∀A:axiom_set.Ω^A → A → CProp[0].λA,C,U.
19   ∀y.y ∈ C → c A U y.
20
21 (* a \ltri b *)
22 notation "hvbox(a break ◃ b)" non associative with precedence 45
23 for @{ 'covers $a $b }.
24
25 interpretation "covers set temp" 'covers C U = (cover_set ?? C U).
26
27 ninductive cover (A : axiom_set) (U : Ω^A) : A → CProp[0] ≝ 
28 | creflexivity : ∀a:A. a ∈ U → cover ? U a
29 | cinfinity    : ∀a:A.∀i:𝐈 a. 𝐂 a i ◃ U → cover ? U a.
30 napply cover;
31 nqed.
32
33 interpretation "covers" 'covers a U = (cover ? U a).
34 interpretation "covers set" 'covers a U = (cover_set cover ? a U).
35
36 ndefinition fish_set ≝ λf:∀A:axiom_set.Ω^A → A → CProp[0].
37  λA,U,V.
38   ∃a.a ∈ V ∧ f A U a.
39
40 (* a \ltimes b *)
41 notation "hvbox(a break ⋉ b)" non associative with precedence 45
42 for @{ 'fish $a $b }. 
43
44 interpretation "fish set temp" 'fish A U = (fish_set ?? U A).
45
46 ncoinductive fish (A : axiom_set) (F : Ω^A) : A → CProp[0] ≝ 
47 | cfish : ∀a. a ∈ F → (∀i:𝐈 a .𝐂  a i ⋉ F) → fish A F a.
48 napply fish;
49 nqed.
50
51 interpretation "fish set" 'fish A U = (fish_set fish ? U A).
52 interpretation "fish" 'fish a U = (fish ? U a).
53
54 nlet corec fish_rec (A:axiom_set) (U: Ω^A)
55  (P: Ω^A) (H1: P ⊆ U)
56   (H2: ∀a:A. a ∈ P → ∀j: 𝐈 a. 𝐂 a j ≬ P):
57    ∀a:A. ∀p: a ∈ P. a ⋉ U ≝ ?.
58 #a; #p; napply cfish;
59 ##[ napply H1; napply p;
60 ##| #i; ncases (H2 a p i); #x; *; #xC; #xP; @; ##[napply x]
61     @; ##[ napply xC ] napply (fish_rec ? U P); nassumption;
62 ##]
63 nqed.
64
65 notation "◃U" non associative with precedence 55
66 for @{ 'coverage $U }.
67
68 ndefinition coverage : ∀A:axiom_set.∀U:Ω^A.Ω^A ≝ λA,U.{ a | a ◃ U }.
69
70 interpretation "coverage cover" 'coverage U = (coverage ? U).
71
72 ndefinition cover_equation : ∀A:axiom_set.∀U,X:Ω^A.CProp[0] ≝  λA,U,X. 
73   ∀a.a ∈ X ↔ (a ∈ U ∨ ∃i:𝐈 a.∀y.y ∈ 𝐂 a i → y ∈ X).  
74
75 ntheorem coverage_cover_equation : ∀A,U. cover_equation A U (◃U).
76 #A; #U; #a; @; #H;
77 ##[ nelim H; #b; (* manca clear *)
78     ##[ #bU; @1; nassumption;
79     ##| #i; #CaiU; #IH; @2; @ i; #c; #cCbi; ncases (IH ? cCbi);
80         ##[ #E; @; napply E;
81         ##| #_; napply CaiU; nassumption; ##] ##]
82 ##| ncases H; ##[ #E; @; nassumption]
83     *; #j; #Hj; @2 j; #w; #wC; napply Hj; nassumption;
84 ##]
85 nqed. 
86
87 ntheorem coverage_min_cover_equation : 
88   ∀A,U,W. cover_equation A U W → ◃U ⊆ W.
89 #A; #U; #W; #H; #a; #aU; nelim aU; #b;
90 ##[ #bU; ncases (H b); #_; #H1; napply H1; @1; nassumption;
91 ##| #i; #CbiU; #IH; ncases (H b); #_; #H1; napply H1; @2; @i; napply IH;
92 ##]
93 nqed.
94
95 notation "⋉F" non associative with precedence 55
96 for @{ 'fished $F }.
97
98 ndefinition fished : ∀A:axiom_set.∀F:Ω^A.Ω^A ≝ λA,F.{ a | a ⋉ F }.
99
100 interpretation "fished fish" 'fished F = (fished ? F).
101
102 ndefinition fish_equation : ∀A:axiom_set.∀F,X:Ω^A.CProp[0] ≝ λA,F,X.
103   ∀a. a ∈ X ↔ a ∈ F ∧ ∀i:𝐈 a.∃y.y ∈ 𝐂 a i ∧ y ∈ X. 
104   
105 ntheorem fised_fish_equation : ∀A,F. fish_equation A F (⋉F).
106 #A; #F; #a; @; (* bug, fare case sotto diverso da farlo sopra *) #H; ncases H;
107 ##[ #b; #bF; #H2; @ bF; #i; ncases (H2 i); #c; *; #cC; #cF; @c; @ cC;
108     napply cF;  
109 ##| #aF; #H1; @ aF; napply H1;
110 ##]
111 nqed.
112
113 ntheorem fised_max_fish_equation : ∀A,F,G. fish_equation A F G → G ⊆ ⋉F.
114 #A; #F; #G; #H; #a; #aG; napply (fish_rec … aG);
115 #b; ncases (H b); #H1; #_; #bG; ncases (H1 bG); #E1; #E2; nassumption; 
116 nqed. 
117