]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/nlibrary/algebra/magmas.ma
Metas must be handled when using iterators.
[helm.git] / helm / software / matita / nlibrary / algebra / magmas.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 include "sets/sets.ma".
16
17 nrecord magma_type : Type[1] ≝
18  { mtcarr:> setoid;
19    op: binary_morphism mtcarr mtcarr mtcarr
20  }.
21
22 nrecord magma (A: magma_type) : Type[1] ≝
23  { mcarr:> Ω \sup A;
24    op_closed: ∀x,y. x ∈ mcarr → y ∈ mcarr → op A x y ∈ mcarr
25  }.
26 (* le coercion non vanno; sospetto setoid1_of_setoid *)
27 nrecord magma_morphism_type (A,B: magma_type) : Type[0] ≝
28  { mmcarr:> unary_morphism A B;
29    mmprop: ∀x,y:carr A. mmcarr (op ? x y) = op … (mmcarr x) (mmcarr y)
30  }.
31 (* le coercion non vanno *)
32 nrecord magma_morphism (A) (B) (Ma: magma A) (Mb: magma B) : Type[0] ≝
33  { mmmcarr:> magma_morphism_type A B;
34    mmclosed: ∀x:carr A. x ∈ mcarr ? Ma → mmmcarr x ∈ mcarr ? Mb
35  }.
36 (*
37 ndefinition mm_image:
38  ∀A,B. ∀Ma: magma A. ∀Mb: magma B. magma_morphism … Ma Mb → magma B.
39  #A; #B; #Ma; #Mb; #f;
40  napply mk_magma
41   [ napply (image … f Ma)
42   | #x; #y; nwhd in ⊢ (% → % → ?); *; #x0; *; #Hx0; #Hx1; *; #y0; *; #Hy0; #Hy1; nwhd;
43     napply ex_intro
44      [ napply (op … x0 y0) 
45      | napply conj
46         [ napply op_closed; nassumption
47         | nrewrite < Hx1;
48           nrewrite < Hy1;
49           napply (mmprop … f)]##]
50 nqed.
51
52 ndefinition mm_counter_image:
53  ∀A,B. ∀Ma: magma A. ∀Mb: magma B. magma_morphism … Ma Mb → magma A.
54   #A; #B; #Ma; #Mb; #f;
55   napply mk_magma
56    [ napply (counter_image … f Mb)
57    | #x; #y; nwhd in ⊢ (% → % → ?); *; #x0; *; #Hx0; #Hx1; *; #y0; *; #Hy0; #Hy1; nwhd;
58      napply ex_intro
59       [ napply (op … x0 y0)
60       | napply conj
61          [ napply op_closed; nassumption
62          | nrewrite < Hx1;
63            nrewrite < Hy1;
64            napply (mmprop … f)]##]
65 nqed.
66 *)
67
68 ndefinition m_intersect: ∀A. magma A → magma A → magma A.
69  #A; #M1; #M2;
70  napply (mk_magma …)
71   [ napply (intersects_ok ? M1 M2)
72   | #x; #y; nwhd in ⊢ (% → % → %); *; #Hx1; #Hx2; *; #Hy1; #Hy2;
73     napply conj; napply op_closed; nassumption ]
74 nqed.