src/HOL/Isar_Examples/Group.thy
author wenzelm
Fri, 07 Aug 2015 16:15:53 +0200
changeset 60864 20cfa048fe7c
parent 58882 6e2010ab8bd9
child 61541 846c72206207
permissions -rw-r--r--
suppress empty messages as usual;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33026
8f35633c4922 modernized session Isar_Examples;
wenzelm
parents: 31758
diff changeset
     1
(*  Title:      HOL/Isar_Examples/Group.thy
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Muenchen
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
     3
*)
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
     4
58882
6e2010ab8bd9 modernized header;
wenzelm
parents: 58614
diff changeset
     5
section \<open>Basic group theory\<close>
7748
5b9c45b21782 improved presentation;
wenzelm
parents: 7740
diff changeset
     6
31758
3edd5f813f01 observe standard theory naming conventions;
wenzelm
parents: 16417
diff changeset
     7
theory Group
3edd5f813f01 observe standard theory naming conventions;
wenzelm
parents: 16417
diff changeset
     8
imports Main
3edd5f813f01 observe standard theory naming conventions;
wenzelm
parents: 16417
diff changeset
     9
begin
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    10
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    11
subsection \<open>Groups and calculational reasoning\<close> 
6784
687ddcad8581 proper calculation;
wenzelm
parents: 6763
diff changeset
    12
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    13
text \<open>Groups over signature $({\times} :: \alpha \To \alpha \To
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    14
  \alpha, \idt{one} :: \alpha, \idt{inverse} :: \alpha \To \alpha)$
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    15
  are defined as an axiomatic type class as follows.  Note that the
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    16
  parent class $\idt{times}$ is provided by the basic HOL theory.\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    17
35317
d57da4abb47d dropped axclass; dropped Id
haftmann
parents: 33026
diff changeset
    18
class group = times + one + inverse +
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    19
  assumes group_assoc: "(x * y) * z = x * (y * z)"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    20
    and group_left_one: "1 * x = x"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    21
    and group_left_inverse: "inverse x * x = 1"
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    22
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    23
text \<open>The group axioms only state the properties of left one and
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    24
  inverse, the right versions may be derived as follows.\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    25
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    26
theorem (in group) group_right_inverse: "x * inverse x = 1"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    27
proof -
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    28
  have "x * inverse x = 1 * (x * inverse x)"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
    29
    by (simp only: group_left_one)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    30
  also have "\<dots> = 1 * x * inverse x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    31
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    32
  also have "\<dots> = inverse (inverse x) * inverse x * x * inverse x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    33
    by (simp only: group_left_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    34
  also have "\<dots> = inverse (inverse x) * (inverse x * x) * inverse x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    35
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    36
  also have "\<dots> = inverse (inverse x) * 1 * inverse x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    37
    by (simp only: group_left_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    38
  also have "\<dots> = inverse (inverse x) * (1 * inverse x)"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    39
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    40
  also have "\<dots> = inverse (inverse x) * inverse x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
    41
    by (simp only: group_left_one)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    42
  also have "\<dots> = 1"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    43
    by (simp only: group_left_inverse)
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    44
  finally show ?thesis .
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    45
qed
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    46
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    47
text \<open>With \name{group-right-inverse} already available,
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    48
  \name{group-right-one}\label{thm:group-right-one} is now established
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    49
  much easier.\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    50
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    51
theorem (in group) group_right_one: "x * 1 = x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    52
proof -
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    53
  have "x * 1 = x * (inverse x * x)"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    54
    by (simp only: group_left_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    55
  also have "\<dots> = x * inverse x * x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    56
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    57
  also have "\<dots> = 1 * x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    58
    by (simp only: group_right_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    59
  also have "\<dots> = x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
    60
    by (simp only: group_left_one)
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    61
  finally show ?thesis .
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    62
qed
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    63
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    64
text \<open>\medskip The calculational proof style above follows typical
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    65
  presentations given in any introductory course on algebra.  The
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    66
  basic technique is to form a transitive chain of equations, which in
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    67
  turn are established by simplifying with appropriate rules.  The
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    68
  low-level logical details of equational reasoning are left implicit.
6784
687ddcad8581 proper calculation;
wenzelm
parents: 6763
diff changeset
    69
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    70
  Note that ``$\dots$'' is just a special term variable that is bound
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    71
  automatically to the argument\footnote{The argument of a curried
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    72
  infix expression happens to be its right-hand side.} of the last
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    73
  fact achieved by any local assumption or proven statement.  In
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    74
  contrast to $\var{thesis}$, the ``$\dots$'' variable is bound
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    75
  \emph{after} the proof is finished, though.
7874
180364256231 improved presentation;
wenzelm
parents: 7800
diff changeset
    76
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    77
  There are only two separate Isar language elements for calculational
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    78
  proofs: ``\isakeyword{also}'' for initial or intermediate
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    79
  calculational steps, and ``\isakeyword{finally}'' for exhibiting the
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    80
  result of a calculation.  These constructs are not hardwired into
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    81
  Isabelle/Isar, but defined on top of the basic Isar/VM interpreter.
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    82
  Expanding the \isakeyword{also} and \isakeyword{finally} derived
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    83
  language elements, calculations may be simulated by hand as
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    84
  demonstrated below.\<close>
6784
687ddcad8581 proper calculation;
wenzelm
parents: 6763
diff changeset
    85
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    86
theorem (in group) "x * 1 = x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    87
proof -
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
    88
  have "x * 1 = x * (inverse x * x)"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    89
    by (simp only: group_left_inverse)
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    90
7433
27887c52b9c8 "this";
wenzelm
parents: 7356
diff changeset
    91
  note calculation = this
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    92
    -- \<open>first calculational step: init calculation register\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    93
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
    94
  have "\<dots> = x * inverse x * x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
    95
    by (simp only: group_assoc)
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    96
7433
27887c52b9c8 "this";
wenzelm
parents: 7356
diff changeset
    97
  note calculation = trans [OF calculation this]
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
    98
    -- \<open>general calculational step: compose with transitivity rule\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
    99
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   100
  have "\<dots> = 1 * x"
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
   101
    by (simp only: group_right_inverse)
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
   102
7433
27887c52b9c8 "this";
wenzelm
parents: 7356
diff changeset
   103
  note calculation = trans [OF calculation this]
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   104
    -- \<open>general calculational step: compose with transitivity rule\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
   105
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   106
  have "\<dots> = x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   107
    by (simp only: group_left_one)
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
   108
7433
27887c52b9c8 "this";
wenzelm
parents: 7356
diff changeset
   109
  note calculation = trans [OF calculation this]
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   110
    -- \<open>final calculational step: compose with transitivity rule \dots\<close>
6784
687ddcad8581 proper calculation;
wenzelm
parents: 6763
diff changeset
   111
  from calculation
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   112
    -- \<open>\dots\ and pick up the final result\<close>
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
   113
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
   114
  show ?thesis .
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
   115
qed
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
   116
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   117
text \<open>Note that this scheme of calculations is not restricted to
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   118
  plain transitivity.  Rules like anti-symmetry, or even forward and
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   119
  backward substitution work as well.  For the actual implementation
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   120
  of \isacommand{also} and \isacommand{finally}, Isabelle/Isar
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   121
  maintains separate context information of ``transitivity'' rules.
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   122
  Rule selection takes place automatically by higher-order
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   123
  unification.\<close>
7874
180364256231 improved presentation;
wenzelm
parents: 7800
diff changeset
   124
6763
df12aef00932 Some bits of group theory. Demonstrate calculational proofs.
wenzelm
parents:
diff changeset
   125
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   126
subsection \<open>Groups as monoids\<close>
6793
88aba7f486cb groups as monoids;
wenzelm
parents: 6784
diff changeset
   127
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   128
text \<open>Monoids over signature $({\times} :: \alpha \To \alpha \To
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   129
  \alpha, \idt{one} :: \alpha)$ are defined like this.\<close>
6793
88aba7f486cb groups as monoids;
wenzelm
parents: 6784
diff changeset
   130
35317
d57da4abb47d dropped axclass; dropped Id
haftmann
parents: 33026
diff changeset
   131
class monoid = times + one +
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   132
  assumes monoid_assoc: "(x * y) * z = x * (y * z)"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   133
    and monoid_left_one: "1 * x = x"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   134
    and monoid_right_one: "x * 1 = x"
6793
88aba7f486cb groups as monoids;
wenzelm
parents: 6784
diff changeset
   135
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   136
text \<open>Groups are \emph{not} yet monoids directly from the
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   137
  definition.  For monoids, \name{right-one} had to be included as an
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   138
  axiom, but for groups both \name{right-one} and \name{right-inverse}
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   139
  are derivable from the other axioms.  With \name{group-right-one}
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   140
  derived as a theorem of group theory (see
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   141
  page~\pageref{thm:group-right-one}), we may still instantiate
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   142
  $\idt{group} \subseteq \idt{monoid}$ properly as follows.\<close>
6793
88aba7f486cb groups as monoids;
wenzelm
parents: 6784
diff changeset
   143
10007
64bf7da1994a isar-strip-terminators;
wenzelm
parents: 8910
diff changeset
   144
instance group < monoid
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   145
  by intro_classes
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   146
    (rule group_assoc,
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   147
      rule group_left_one,
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   148
      rule group_right_one)
6793
88aba7f486cb groups as monoids;
wenzelm
parents: 6784
diff changeset
   149
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   150
text \<open>The \isacommand{instance} command actually is a version of
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   151
  \isacommand{theorem}, setting up a goal that reflects the intended
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   152
  class relation (or type constructor arity).  Thus any Isar proof
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   153
  language element may be involved to establish this statement.  When
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   154
  concluding the proof, the result is transformed into the intended
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   155
  type signature extension behind the scenes.\<close>
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   156
7874
180364256231 improved presentation;
wenzelm
parents: 7800
diff changeset
   157
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   158
subsection \<open>More theorems of group theory\<close>
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   159
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   160
text \<open>The one element is already uniquely determined by preserving
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   161
  an \emph{arbitrary} group element.\<close>
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   162
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   163
theorem (in group) group_one_equality:
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   164
  assumes eq: "e * x = x"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   165
  shows "1 = e"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   166
proof -
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   167
  have "1 = x * inverse x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   168
    by (simp only: group_right_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   169
  also have "\<dots> = (e * x) * inverse x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   170
    by (simp only: eq)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   171
  also have "\<dots> = e * (x * inverse x)"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   172
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   173
  also have "\<dots> = e * 1"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   174
    by (simp only: group_right_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   175
  also have "\<dots> = e"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   176
    by (simp only: group_right_one)
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   177
  finally show ?thesis .
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   178
qed
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   179
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   180
text \<open>Likewise, the inverse is already determined by the cancel property.\<close>
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   181
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   182
theorem (in group) group_inverse_equality:
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   183
  assumes eq: "x' * x = 1"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   184
  shows "inverse x = x'"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   185
proof -
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   186
  have "inverse x = 1 * inverse x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   187
    by (simp only: group_left_one)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   188
  also have "\<dots> = (x' * x) * inverse x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   189
    by (simp only: eq)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   190
  also have "\<dots> = x' * (x * inverse x)"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   191
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   192
  also have "\<dots> = x' * 1"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   193
    by (simp only: group_right_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   194
  also have "\<dots> = x'"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   195
    by (simp only: group_right_one)
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   196
  finally show ?thesis .
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   197
qed
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   198
58614
7338eb25226c more cartouches;
wenzelm
parents: 55656
diff changeset
   199
text \<open>The inverse operation has some further characteristic properties.\<close>
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   200
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   201
theorem (in group) group_inverse_times: "inverse (x * y) = inverse y * inverse x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   202
proof (rule group_inverse_equality)
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   203
  show "(inverse y * inverse x) * (x * y) = 1"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   204
  proof -
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   205
    have "(inverse y * inverse x) * (x * y) =
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   206
        (inverse y * (inverse x * x)) * y"
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   207
      by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   208
    also have "\<dots> = (inverse y * 1) * y"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   209
      by (simp only: group_left_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   210
    also have "\<dots> = inverse y * y"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   211
      by (simp only: group_right_one)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   212
    also have "\<dots> = 1"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   213
      by (simp only: group_left_inverse)
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   214
    finally show ?thesis .
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   215
  qed
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   216
qed
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   217
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   218
theorem (in group) inverse_inverse: "inverse (inverse x) = x"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   219
proof (rule group_inverse_equality)
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   220
  show "x * inverse x = one"
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   221
    by (simp only: group_right_inverse)
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   222
qed
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   223
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   224
theorem (in group) inverse_inject:
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   225
  assumes eq: "inverse x = inverse y"
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   226
  shows "x = y"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   227
proof -
37671
fa53d267dab3 misc tuning and modernization;
wenzelm
parents: 35317
diff changeset
   228
  have "x = x * 1"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   229
    by (simp only: group_right_one)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   230
  also have "\<dots> = x * (inverse y * y)"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   231
    by (simp only: group_left_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   232
  also have "\<dots> = x * (inverse x * y)"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   233
    by (simp only: eq)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   234
  also have "\<dots> = (x * inverse x) * y"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   235
    by (simp only: group_assoc)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   236
  also have "\<dots> = 1 * y"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   237
    by (simp only: group_right_inverse)
55656
eb07b0acbebc more symbols;
wenzelm
parents: 37671
diff changeset
   238
  also have "\<dots> = y"
10141
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   239
    by (simp only: group_left_one)
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   240
  finally show ?thesis .
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   241
qed
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   242
964d9dc47041 tuned names;
wenzelm
parents: 10007
diff changeset
   243
end