]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/library/algebra/monoids.ma
A few experiments (with horrible results) using notation...
[helm.git] / helm / matita / library / algebra / monoids.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 set "baseuri" "cic:/matita/algebra/monoids/".
16
17 include "algebra/semigroups.ma".
18
19 record isMonoid (SS:SemiGroup) (e:SS) : Prop ≝
20  { e_is_left_unit: is_left_unit SS e;
21    e_is_right_unit: is_right_unit SS e
22  }.
23  
24 record Monoid : Type ≝
25  { semigroup: SemiGroup;
26    e: semigroup;
27    properties: isMonoid ? e
28  }.
29  
30 coercion cic:/matita/algebra/monoids/semigroup.con.
31
32 notation "hvbox(! \sub S)"
33 for @{ 'munit $S }.
34
35 interpretation "Monoid unit" 'munit S =
36  (cic:/matita/algebra/monoids/e.con S).
37
38 definition is_left_inverse ≝
39  λM:Monoid.
40   λopp: M → M.
41    ∀x:M. op M (opp x) x = ! \sub M.
42
43 definition is_right_inverse ≝
44  λM:Monoid.
45   λopp: M → M.
46    ∀x:M. op M x (opp x) = ! \sub M.
47
48 theorem is_left_inverse_to_is_right_inverse_to_eq:
49  ∀M:Monoid. ∀oppL,oppR.
50   is_left_inverse M oppL → is_right_inverse M oppR → 
51    ∀x:M. oppL x = oppR x.
52  intros;
53  generalize in match (H x); intro;
54  generalize in match (eq_f ? ? (λy. op M y (oppR x)) ? ? H2);
55  simplify; fold simplify (op M);
56  intro; clear H2;
57  generalize in match (properties (semigroup M));
58  fold simplify (Type_of_Monoid M);
59  intro;
60  unfold isSemiGroup in H2; unfold associative in H2;
61  rewrite > H2 in H3; clear H2;
62  rewrite > H1 in H3;
63  rewrite > (e_is_left_unit ? ? (properties M)) in H3;
64  rewrite > (e_is_right_unit ? ? (properties M)) in H3;
65  assumption.
66 qed.
67