X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fnlibrary%2Fsets%2Fsetoids1.ma;h=69e0958744de4f83c3257f88ad3b8e4ac78ef8fa;hb=c57405141d26ac2215a07b05d27a16a691dda50e;hp=85038ab1694a89e2a40a27d8331aaad88f7e3f5f;hpb=835f6498543d1f20cb02d134c1b22be7d622420e;p=helm.git diff --git a/helm/software/matita/nlibrary/sets/setoids1.ma b/helm/software/matita/nlibrary/sets/setoids1.ma index 85038ab16..69e095874 100644 --- a/helm/software/matita/nlibrary/sets/setoids1.ma +++ b/helm/software/matita/nlibrary/sets/setoids1.ma @@ -14,6 +14,7 @@ include "properties/relations1.ma". include "sets/setoids.ma". +include "hints_declaration.ma". nrecord setoid1: Type[2] ≝ { carr1:> Type[1]; @@ -55,11 +56,59 @@ nrecord unary_morphism1 (A,B: setoid1) : Type[1] ≝ prop11: ∀a,a'. eq1 ? a a' → eq1 ? (fun11 a) (fun11 a') }. -nrecord binary_morphism1 (A,B,C:setoid1) : Type[1] ≝ - { fun21:2> A → B → C; - prop21: ∀a,a',b,b'. eq1 ? a a' → eq1 ? b b' → eq1 ? (fun21 a b) (fun21 a' b') - }. - interpretation "prop11" 'prop1 c = (prop11 ????? c). -interpretation "prop21" 'prop2 l r = (prop21 ???????? l r). interpretation "refl1" 'refl = (refl1 ???). + +ndefinition unary_morphism1_setoid1: setoid1 → setoid1 → setoid1. + #s; #s1; @ (unary_morphism1 s s1); @ + [ #f; #g; napply (∀a,a':s. a=a' → f a = g a') + | #x; #a; #a'; #Ha; napply (.= †Ha); napply refl1 + | #x; #y; #H; #a; #a'; #Ha; napply (.= †Ha); napply sym1; /2/ + | #x; #y; #z; #H1; #H2; #a; #a'; #Ha; napply (.= †Ha); napply trans1; ##[##2: napply H1 | ##skip | napply H2]//;##] +nqed. + +unification hint 0 ≔ S, T ; + R ≟ (unary_morphism1_setoid1 S T) +(* --------------------------------- *) ⊢ + carr1 R ≡ unary_morphism1 S T. + +interpretation "prop21" 'prop2 l r = (prop11 ? (unary_morphism1_setoid1 ??) ? ?? l ?? r). + +nlemma unary_morph1_eq1: ∀A,B.∀f,g: unary_morphism1 A B. (∀x. f x = g x) → f=g. +/3/. nqed. + +nlemma mk_binary_morphism1: + ∀A,B,C: setoid1. ∀f: A → B → C. (∀a,a',b,b'. a=a' → b=b' → f a b = f a' b') → + unary_morphism1 A (unary_morphism1_setoid1 B C). + #A; #B; #C; #f; #H; @ [ #x; @ (f x) ] #a; #a'; #Ha [##2: napply unary_morph1_eq1; #y] + /2/. +nqed. + +ndefinition composition1 ≝ + λo1,o2,o3:Type[1].λf:o2 → o3.λg: o1 → o2.λx.f (g x). + +interpretation "function composition" 'compose f g = (composition ??? f g). +interpretation "function composition1" 'compose f g = (composition1 ??? f g). + +ndefinition comp1_unary_morphisms: + ∀o1,o2,o3:setoid1. + unary_morphism1 o2 o3 → unary_morphism1 o1 o2 → + unary_morphism1 o1 o3. +#o1; #o2; #o3; #f; #g; @ (f ∘ g); + #a; #a'; #e; nnormalize; napply (.= †(†e)); napply #. +nqed. + +unification hint 0 ≔ o1,o2,o3:setoid1,f:unary_morphism1 o2 o3,g:unary_morphism1 o1 o2; + R ≟ (mk_unary_morphism1 ?? (composition1 … f g) + (prop11 ?? (comp1_unary_morphisms o1 o2 o3 f g))) + (* -------------------------------------------------------------------- *) ⊢ + fun11 ?? R ≡ (composition1 … f g). + +ndefinition comp1_binary_morphisms: + ∀o1,o2,o3. + unary_morphism1 (unary_morphism1_setoid1 o2 o3) + (unary_morphism1_setoid1 (unary_morphism1_setoid1 o1 o2) (unary_morphism1_setoid1 o1 o3)). +#o1; #o2; #o3; napply mk_binary_morphism1 + [ #f; #g; napply (comp1_unary_morphisms … f g) (*CSC: why not ∘?*) + | #a; #a'; #b; #b'; #ea; #eb; #x; #x'; #Hx; nnormalize; /3/ ] +nqed. \ No newline at end of file