X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fnlibrary%2Fsets%2Fsets.ma;h=c4fc89f210b0c90f5a049d80442f0cf6b7222e11;hb=8cb2490b5b202549a596cfd1d0f166a5ee43fc4e;hp=f140ef7700b7ca3b426debca3612628d8ac7f876;hpb=b266ed97b63400d62ab4ba6a4ebdfbc1d5b0c2bb;p=helm.git diff --git a/helm/software/matita/nlibrary/sets/sets.ma b/helm/software/matita/nlibrary/sets/sets.ma index f140ef770..c4fc89f21 100644 --- a/helm/software/matita/nlibrary/sets/sets.ma +++ b/helm/software/matita/nlibrary/sets/sets.ma @@ -71,7 +71,7 @@ nqed. include "hints_declaration.ma". alias symbol "hint_decl" = "hint_decl_Type2". -unification hint 0 ≔ A ⊢ carr1 (powerclass_setoid A) ≡ Ω^A. +unification hint 0 ≔ A ⊢ carr1 (mk_setoid1 (Ω^A) (eq1 (powerclass_setoid A))) ≡ Ω^A. (************ SETS OVER SETOIDS ********************) @@ -106,6 +106,10 @@ nqed. unification hint 0 ≔ A ⊢ carr1 (qpowerclass_setoid A) ≡ qpowerclass A. +(*CSC: non va! +unification hint 0 ≔ A ⊢ + carr1 (mk_setoid1 (qpowerclass A) (eq1 (qpowerclass_setoid A))) ≡ qpowerclass A.*) + nlemma mem_ok: ∀A. binary_morphism1 (setoid1_of_setoid A) (qpowerclass_setoid A) CPROP. #A; @ [ napply (λx,S. x ∈ S) @@ -116,9 +120,16 @@ nlemma mem_ok: ∀A. binary_morphism1 (setoid1_of_setoid A) (qpowerclass_setoid ##] nqed. -unification hint 0 ≔ - A : setoid, x, S ⊢ (mem_ok A) x S ≡ mem A S x. - +(*CSC: bug qui se metto x o S al posto di ? +nlemma foo: True. +nletin xxx ≝ (λA:setoid.λx,S. let SS ≝ pc ? S in + fun21 ??? (mk_binary_morphism1 ??? (λx.λS. ? ∈ ?) (prop21 ??? (mem_ok A))) x S); +*) +unification hint 0 ≔ A:setoid, x, S; + SS ≟ (pc ? S) + (*-------------------------------------*) ⊢ + fun21 ??? (mk_binary_morphism1 ??? (λx,S. x ∈ S) (prop21 ??? (mem_ok A))) x S ≡ mem A SS x. + nlemma subseteq_ok: ∀A. binary_morphism1 (qpowerclass_setoid A) (qpowerclass_setoid A) CPROP. #A; @ [ napply (λS,S'. S ⊆ S') @@ -129,15 +140,21 @@ nlemma subseteq_ok: ∀A. binary_morphism1 (qpowerclass_setoid A) (qpowerclass_s [ nassumption | napply (subseteq_trans … b'); nassumption ] ##] nqed. +unification hint 0 ≔ A,a,a' + (*-----------------------------------------------------------------*) ⊢ + eq_rel ? (eq A) a a' ≡ eq_rel1 ? (eq1 (setoid1_of_setoid A)) a a'. + nlemma intersect_ok: ∀A. binary_morphism1 (qpowerclass_setoid A) (qpowerclass_setoid A) (qpowerclass_setoid A). #A; @ [ #S; #S'; @ [ napply (S ∩ S') - | #a; #a'; #Ha; nwhd in ⊢ (? ? ? % %); @; *; #H1; #H2; @ - [##1,2: napply (. (mem_ok' …)^-1) [##3,6: nassumption |##2,5: nassumption |##*: ##skip] - ##|##3,4: napply (. (mem_ok' …)) [##1,3,4,6: nassumption |##*: ##skip]##]##] + | #a; #a'; #Ha; + nwhd in ⊢ (? ? ? % %); @; *; #H1; #H2; @ + [##1,2: napply (. Ha^-1‡#); nassumption; + ##|##3,4: napply (. Ha‡#); nassumption]##] ##| #a; #a'; #b; #b'; #Ha; #Hb; nwhd; @; #x; nwhd in ⊢ (% → %); #H - [ napply (. ((#‡Ha^-1)‡(#‡Hb^-1))); nassumption + [ alias symbol "invert" = "setoid1 symmetry". + napply (. ((#‡Ha^-1)‡(#‡Hb^-1))); nassumption | napply (. ((#‡Ha)‡(#‡Hb))); nassumption ]##] nqed. @@ -147,12 +164,6 @@ unification hint 0 ≔ A : setoid, B,C : qpowerclass A ⊢ pc A (intersect_ok A B C) ≡ intersect ? (pc ? B) (pc ? C). -(* hints can pass under mem *) (* ??? XXX why is it needed? *) -unification hint 0 ≔ A,B,x ; - C ≟ B - (*---------------------*) ⊢ - mem A B x ≡ mem A C x. - nlemma test: ∀A:setoid. ∀U,V:qpowerclass A. ∀x,x':setoid1_of_setoid A. x=x' → x ∈ U ∩ V → x' ∈ U ∩ V. #A; #U; #V; #x; #x'; #H; #p; napply (. (H^-1‡#)); nassumption. nqed. @@ -169,10 +180,6 @@ ndefinition counter_image: ∀A,B. (carr A → carr B) → Ω^B → Ω^A ≝ nrecord compatible_equivalence_relation (A: setoid) : Type[1] ≝ { rel:> equivalence_relation A; compatibility: ∀x,x':A. x=x' → rel x x' - (* coercion qui non andava per via di un Failure invece di Uncertain - ritornato dall'unificazione per il problema: - ?[] A =?= ?[Γ]->?[Γ+1] - *) }. ndefinition quotient: ∀A. compatible_equivalence_relation A → setoid. @@ -187,7 +194,8 @@ ndefinition eqrel_of_morphism: [ @ [ napply (λx,y. f x = f y) | #x; napply refl | #x; #y; napply sym | #x; #y; #z; napply trans] -##| #x; #x'; #H; nwhd; napply (.= (†H)); napply refl ] +##| #x; #x'; #H; nwhd; alias symbol "prop1" = "prop1". +napply (.= (†H)); napply refl ] nqed. ndefinition canonical_proj: ∀A,R. unary_morphism A (quotient A R). @@ -219,7 +227,7 @@ ndefinition injective ≝ nlemma first_omomorphism_theorem_functions2: ∀A,B.∀f: unary_morphism A B. surjective … (Full_set ?) (Full_set ?) (canonical_proj ? (eqrel_of_morphism … f)). - #A; #B; #f; nwhd; #y; #Hy; @ y; @ [ napply I | napply refl] + #A; #B; #f; nwhd; #y; #Hy; @ y; @ I ; napply refl; (* bug, prova @ I refl *) nqed. @@ -229,9 +237,31 @@ nlemma first_omomorphism_theorem_functions3: #A; #B; #f; nwhd; #x; #x'; #Hx; #Hx'; #K; nassumption. nqed. -nrecord isomorphism (A) (B) (S: qpowerclass A) (T: qpowerclass B) : CProp[0] ≝ +nrecord isomorphism (A, B : setoid) (S: qpowerclass A) (T: qpowerclass B) : Type[0] ≝ { iso_f:> unary_morphism A B; f_closed: ∀x. x ∈ S → iso_f x ∈ T; f_sur: surjective … S T iso_f; f_inj: injective … S iso_f }. + +(* +nrecord isomorphism (A, B : setoid) (S: qpowerclass A) (T: qpowerclass B) : CProp[0] ≝ + { iso_f:> unary_morphism A B; + f_closed: ∀x. x ∈ pc A S → fun1 ?? iso_f x ∈ pc B T}. + + +ncheck (λA:?. + λB:?. + λS:?. + λT:?. + λxxx:isomorphism A B S T. + match xxx + return λxxx:isomorphism A B S T. + ∀x: carr A. + ∀x_72: mem (carr A) (pc A S) x. + mem (carr B) (pc B T) (fun1 A B ((λ_.?) A B S T xxx) x) + with [ mk_isomorphism _ yyy ⇒ yyy ] ). + + ; + }. +*)