doc-src/AxClass/generated/Group.tex
author wenzelm
Mon, 05 Feb 2001 20:33:50 +0100
changeset 11071 4e542a09b582
parent 10395 7ef380745743
child 11099 b301d1f72552
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9767
dc2ee9b2e065 updated;
wenzelm
parents: 9672
diff changeset
     1
%
dc2ee9b2e065 updated;
wenzelm
parents: 9672
diff changeset
     2
\begin{isabellebody}%
9921
7acefd99e748 updated;
wenzelm
parents: 9767
diff changeset
     3
\def\isabellecontext{Group}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
     4
%
10395
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
     5
\isamarkupheader{Basic group theory%
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
     6
}
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
     7
\isacommand{theory}\ Group\ {\isacharequal}\ Main{\isacharcolon}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
     8
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
     9
\medskip\noindent The meta-level type system of Isabelle supports
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    10
 \emph{intersections} and \emph{inclusions} of type classes. These
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    11
 directly correspond to intersections and inclusions of type
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    12
 predicates in a purely set theoretic sense. This is sufficient as a
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    13
 means to describe simple hierarchies of structures.  As an
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    14
 illustration, we use the well-known example of semigroups, monoids,
8907
wenzelm
parents: 8903
diff changeset
    15
 general groups and Abelian groups.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    16
\end{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    17
%
10395
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
    18
\isamarkupsubsection{Monoids and Groups%
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
    19
}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    20
%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    21
\begin{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    22
First we declare some polymorphic constants required later for the
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    23
 signature parts of our structures.%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    24
\end{isamarkuptext}%
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
    25
\isacommand{consts}\isanewline
10207
c7c64cd26fc9 updated;
wenzelm
parents: 10140
diff changeset
    26
\ \ times\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isachardoublequote}\ \ \ \ {\isacharparenleft}\isakeyword{infixl}\ {\isachardoublequote}{\isasymodot}{\isachardoublequote}\ {\isadigit{7}}{\isadigit{0}}{\isacharparenright}\isanewline
11071
wenzelm
parents: 10395
diff changeset
    27
\ \ invers\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isachardoublequote}\ \ \ \ {\isacharparenleft}{\isachardoublequote}{\isacharparenleft}{\isacharunderscore}{\isasyminv}{\isacharparenright}{\isachardoublequote}\ {\isacharbrackleft}{\isadigit{1}}{\isadigit{0}}{\isadigit{0}}{\isadigit{0}}{\isacharbrackright}\ {\isadigit{9}}{\isadigit{9}}{\isadigit{9}}{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    28
\ \ one\ {\isacharcolon}{\isacharcolon}\ {\isacharprime}a\ \ \ \ {\isacharparenleft}{\isachardoublequote}{\isasymunit}{\isachardoublequote}{\isacharparenright}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    29
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    30
\noindent Next we define class \isa{monoid} of monoids with
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    31
 operations \isa{{\isasymodot}} and \isa{{\isasymunit}}.  Note that multiple class
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    32
 axioms are allowed for user convenience --- they simply represent the
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    33
 conjunction of their respective universal closures.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    34
\end{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    35
\isacommand{axclass}\ monoid\ {\isacharless}\ {\isachardoublequote}term{\isachardoublequote}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    36
\ \ assoc{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}x\ {\isasymodot}\ y{\isacharparenright}\ {\isasymodot}\ z\ {\isacharequal}\ x\ {\isasymodot}\ {\isacharparenleft}y\ {\isasymodot}\ z{\isacharparenright}{\isachardoublequote}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    37
\ \ left{\isacharunderscore}unit{\isacharcolon}\ {\isachardoublequote}{\isasymunit}\ {\isasymodot}\ x\ {\isacharequal}\ x{\isachardoublequote}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    38
\ \ right{\isacharunderscore}unit{\isacharcolon}\ {\isachardoublequote}x\ {\isasymodot}\ {\isasymunit}\ {\isacharequal}\ x{\isachardoublequote}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    39
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    40
\noindent So class \isa{monoid} contains exactly those types \isa{{\isasymtau}} where \isa{{\isasymodot}\ {\isasymColon}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymtau}} and \isa{{\isasymunit}\ {\isasymColon}\ {\isasymtau}} are
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    41
 specified appropriately, such that \isa{{\isasymodot}} is associative and
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    42
 \isa{{\isasymunit}} is a left and right unit element for the \isa{{\isasymodot}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    43
 operation.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    44
\end{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    45
%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    46
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    47
\medskip Independently of \isa{monoid}, we now define a linear
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    48
 hierarchy of semigroups, general groups and Abelian groups.  Note
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    49
 that the names of class axioms are automatically qualified with each
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    50
 class name, so we may re-use common names such as \isa{assoc}.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    51
\end{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    52
\isacommand{axclass}\ semigroup\ {\isacharless}\ {\isachardoublequote}term{\isachardoublequote}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    53
\ \ assoc{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}x\ {\isasymodot}\ y{\isacharparenright}\ {\isasymodot}\ z\ {\isacharequal}\ x\ {\isasymodot}\ {\isacharparenleft}y\ {\isasymodot}\ z{\isacharparenright}{\isachardoublequote}\isanewline
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
    54
\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    55
\isacommand{axclass}\ group\ {\isacharless}\ semigroup\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    56
\ \ left{\isacharunderscore}unit{\isacharcolon}\ {\isachardoublequote}{\isasymunit}\ {\isasymodot}\ x\ {\isacharequal}\ x{\isachardoublequote}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    57
\ \ left{\isacharunderscore}inverse{\isacharcolon}\ {\isachardoublequote}x{\isasyminv}\ {\isasymodot}\ x\ {\isacharequal}\ {\isasymunit}{\isachardoublequote}\isanewline
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    58
\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    59
\isacommand{axclass}\ agroup\ {\isacharless}\ group\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    60
\ \ commute{\isacharcolon}\ {\isachardoublequote}x\ {\isasymodot}\ y\ {\isacharequal}\ y\ {\isasymodot}\ x{\isachardoublequote}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    61
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    62
\noindent Class \isa{group} inherits associativity of \isa{{\isasymodot}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    63
 from \isa{semigroup} and adds two further group axioms. Similarly,
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    64
 \isa{agroup} is defined as the subset of \isa{group} such that
11071
wenzelm
parents: 10395
diff changeset
    65
 for all of its elements \isa{{\isasymtau}}, the operation \isa{{\isasymodot}\ {\isasymColon}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymtau}} is even commutative.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    66
\end{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    67
%
10395
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
    68
\isamarkupsubsection{Abstract reasoning%
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
    69
}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    70
%
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
    71
\begin{isamarkuptext}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    72
In a sense, axiomatic type classes may be viewed as \emph{abstract
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    73
 theories}.  Above class definitions gives rise to abstract axioms
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    74
 \isa{assoc}, \isa{left{\isacharunderscore}unit}, \isa{left{\isacharunderscore}inverse}, \isa{commute}, where any of these contain a type variable \isa{{\isacharprime}a\ {\isasymColon}\ c}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    75
 that is restricted to types of the corresponding class \isa{c}.
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    76
 \emph{Sort constraints} like this express a logical precondition for
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    77
 the whole formula.  For example, \isa{assoc} states that for all
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    78
 \isa{{\isasymtau}}, provided that \isa{{\isasymtau}\ {\isasymColon}\ semigroup}, the operation
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    79
 \isa{{\isasymodot}\ {\isasymColon}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymtau}} is associative.
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    80
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    81
 \medskip From a technical point of view, abstract axioms are just
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    82
 ordinary Isabelle theorems, which may be used in proofs without
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    83
 special treatment.  Such ``abstract proofs'' usually yield new
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
    84
 ``abstract theorems''.  For example, we may now derive the following
8907
wenzelm
parents: 8903
diff changeset
    85
 well-known laws of general groups.%
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
    86
\end{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    87
\isacommand{theorem}\ group{\isacharunderscore}right{\isacharunderscore}inverse{\isacharcolon}\ {\isachardoublequote}x\ {\isasymodot}\ x{\isasyminv}\ {\isacharequal}\ {\isacharparenleft}{\isasymunit}{\isasymColon}{\isacharprime}a{\isasymColon}group{\isacharparenright}{\isachardoublequote}\isanewline
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
    88
\isacommand{proof}\ {\isacharminus}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    89
\ \ \isacommand{have}\ {\isachardoublequote}x\ {\isasymodot}\ x{\isasyminv}\ {\isacharequal}\ {\isasymunit}\ {\isasymodot}\ {\isacharparenleft}x\ {\isasymodot}\ x{\isasyminv}{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
    90
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}unit{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    91
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isasymunit}\ {\isasymodot}\ x\ {\isasymodot}\ x{\isasyminv}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
    92
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ semigroup{\isachardot}assoc{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    93
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isacharparenleft}x{\isasyminv}{\isacharparenright}{\isasyminv}\ {\isasymodot}\ x{\isasyminv}\ {\isasymodot}\ x\ {\isasymodot}\ x{\isasyminv}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
    94
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}inverse{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    95
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isacharparenleft}x{\isasyminv}{\isacharparenright}{\isasyminv}\ {\isasymodot}\ {\isacharparenleft}x{\isasyminv}\ {\isasymodot}\ x{\isacharparenright}\ {\isasymodot}\ x{\isasyminv}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
    96
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ semigroup{\isachardot}assoc{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    97
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isacharparenleft}x{\isasyminv}{\isacharparenright}{\isasyminv}\ {\isasymodot}\ {\isasymunit}\ {\isasymodot}\ x{\isasyminv}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
    98
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}inverse{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
    99
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isacharparenleft}x{\isasyminv}{\isacharparenright}{\isasyminv}\ {\isasymodot}\ {\isacharparenleft}{\isasymunit}\ {\isasymodot}\ x{\isasyminv}{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   100
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ semigroup{\isachardot}assoc{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   101
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isacharparenleft}x{\isasyminv}{\isacharparenright}{\isasyminv}\ {\isasymodot}\ x{\isasyminv}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   102
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}unit{\isacharparenright}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   103
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isasymunit}{\isachardoublequote}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   104
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}inverse{\isacharparenright}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   105
\ \ \isacommand{finally}\ \isacommand{show}\ {\isacharquery}thesis\ \isacommand{{\isachardot}}\isanewline
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
   106
\isacommand{qed}%
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
   107
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   108
\noindent With \isa{group{\isacharunderscore}right{\isacharunderscore}inverse} already available, \isa{group{\isacharunderscore}right{\isacharunderscore}unit}\label{thm:group-right-unit} is now established much
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   109
 easier.%
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
   110
\end{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   111
\isacommand{theorem}\ group{\isacharunderscore}right{\isacharunderscore}unit{\isacharcolon}\ {\isachardoublequote}x\ {\isasymodot}\ {\isasymunit}\ {\isacharequal}\ {\isacharparenleft}x{\isasymColon}{\isacharprime}a{\isasymColon}group{\isacharparenright}{\isachardoublequote}\isanewline
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   112
\isacommand{proof}\ {\isacharminus}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   113
\ \ \isacommand{have}\ {\isachardoublequote}x\ {\isasymodot}\ {\isasymunit}\ {\isacharequal}\ x\ {\isasymodot}\ {\isacharparenleft}x{\isasyminv}\ {\isasymodot}\ x{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   114
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}inverse{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   115
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ x\ {\isasymodot}\ x{\isasyminv}\ {\isasymodot}\ x{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   116
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ semigroup{\isachardot}assoc{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   117
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ {\isasymunit}\ {\isasymodot}\ x{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   118
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isacharunderscore}right{\isacharunderscore}inverse{\isacharparenright}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   119
\ \ \isacommand{also}\ \isacommand{have}\ {\isachardoublequote}{\isachardot}{\isachardot}{\isachardot}\ {\isacharequal}\ x{\isachardoublequote}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   120
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ only{\isacharcolon}\ group{\isachardot}left{\isacharunderscore}unit{\isacharparenright}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   121
\ \ \isacommand{finally}\ \isacommand{show}\ {\isacharquery}thesis\ \isacommand{{\isachardot}}\isanewline
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   122
\isacommand{qed}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   123
\begin{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   124
\medskip Abstract theorems may be instantiated to only those types
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   125
 \isa{{\isasymtau}} where the appropriate class membership \isa{{\isasymtau}\ {\isasymColon}\ c} is
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   126
 known at Isabelle's type signature level.  Since we have \isa{agroup\ {\isasymsubseteq}\ group\ {\isasymsubseteq}\ semigroup} by definition, all theorems of \isa{semigroup} and \isa{group} are automatically inherited by \isa{group} and \isa{agroup}.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   127
\end{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   128
%
10395
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
   129
\isamarkupsubsection{Abstract instantiation%
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
   130
}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   131
%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   132
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   133
From the definition, the \isa{monoid} and \isa{group} classes
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   134
 have been independent.  Note that for monoids, \isa{right{\isacharunderscore}unit} had
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   135
 to be included as an axiom, but for groups both \isa{right{\isacharunderscore}unit}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   136
 and \isa{right{\isacharunderscore}inverse} are derivable from the other axioms.  With
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   137
 \isa{group{\isacharunderscore}right{\isacharunderscore}unit} derived as a theorem of group theory (see
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   138
 page~\pageref{thm:group-right-unit}), we may now instantiate \isa{monoid\ {\isasymsubseteq}\ semigroup} and \isa{group\ {\isasymsubseteq}\ monoid} properly as
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   139
 follows (cf.\ \figref{fig:monoid-group}).
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   140
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   141
 \begin{figure}[htbp]
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   142
   \begin{center}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   143
     \small
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   144
     \unitlength 0.6mm
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   145
     \begin{picture}(65,90)(0,-10)
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   146
       \put(15,10){\line(0,1){10}} \put(15,30){\line(0,1){10}}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   147
       \put(15,50){\line(1,1){10}} \put(35,60){\line(1,-1){10}}
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   148
       \put(15,5){\makebox(0,0){\isa{agroup}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   149
       \put(15,25){\makebox(0,0){\isa{group}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   150
       \put(15,45){\makebox(0,0){\isa{semigroup}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   151
       \put(30,65){\makebox(0,0){\isa{term}}} \put(50,45){\makebox(0,0){\isa{monoid}}}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   152
     \end{picture}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   153
     \hspace{4em}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   154
     \begin{picture}(30,90)(0,0)
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   155
       \put(15,10){\line(0,1){10}} \put(15,30){\line(0,1){10}}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   156
       \put(15,50){\line(0,1){10}} \put(15,70){\line(0,1){10}}
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   157
       \put(15,5){\makebox(0,0){\isa{agroup}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   158
       \put(15,25){\makebox(0,0){\isa{group}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   159
       \put(15,45){\makebox(0,0){\isa{monoid}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   160
       \put(15,65){\makebox(0,0){\isa{semigroup}}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   161
       \put(15,85){\makebox(0,0){\isa{term}}}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   162
     \end{picture}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   163
     \caption{Monoids and groups: according to definition, and by proof}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   164
     \label{fig:monoid-group}
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   165
   \end{center}
8907
wenzelm
parents: 8903
diff changeset
   166
 \end{figure}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   167
\end{isamarkuptext}%
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   168
\isacommand{instance}\ monoid\ {\isacharless}\ semigroup\isanewline
10310
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   169
\isacommand{proof}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   170
\ \ \isacommand{fix}\ x\ y\ z\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a{\isasymColon}monoid{\isachardoublequote}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   171
\ \ \isacommand{show}\ {\isachardoublequote}x\ {\isasymodot}\ y\ {\isasymodot}\ z\ {\isacharequal}\ x\ {\isasymodot}\ {\isacharparenleft}y\ {\isasymodot}\ z{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   172
\ \ \ \ \isacommand{by}\ {\isacharparenleft}rule\ monoid{\isachardot}assoc{\isacharparenright}\isanewline
8890
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
   173
\isacommand{qed}\isanewline
9a44d8d98731 snapshot of new Isar'ized version;
wenzelm
parents:
diff changeset
   174
\isanewline
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   175
\isacommand{instance}\ group\ {\isacharless}\ monoid\isanewline
10310
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   176
\isacommand{proof}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   177
\ \ \isacommand{fix}\ x\ y\ z\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a{\isasymColon}group{\isachardoublequote}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   178
\ \ \isacommand{show}\ {\isachardoublequote}x\ {\isasymodot}\ y\ {\isasymodot}\ z\ {\isacharequal}\ x\ {\isasymodot}\ {\isacharparenleft}y\ {\isasymodot}\ z{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   179
\ \ \ \ \isacommand{by}\ {\isacharparenleft}rule\ semigroup{\isachardot}assoc{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   180
\ \ \isacommand{show}\ {\isachardoublequote}{\isasymunit}\ {\isasymodot}\ x\ {\isacharequal}\ x{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   181
\ \ \ \ \isacommand{by}\ {\isacharparenleft}rule\ group{\isachardot}left{\isacharunderscore}unit{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   182
\ \ \isacommand{show}\ {\isachardoublequote}x\ {\isasymodot}\ {\isasymunit}\ {\isacharequal}\ x{\isachardoublequote}\isanewline
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   183
\ \ \ \ \isacommand{by}\ {\isacharparenleft}rule\ group{\isacharunderscore}right{\isacharunderscore}unit{\isacharparenright}\isanewline
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   184
\isacommand{qed}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   185
\begin{isamarkuptext}%
10223
wenzelm
parents: 10207
diff changeset
   186
\medskip The $\INSTANCE$ command sets up an appropriate goal that
wenzelm
parents: 10207
diff changeset
   187
 represents the class inclusion (or type arity, see
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   188
 \secref{sec:inst-arity}) to be proven (see also
10310
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   189
 \cite{isabelle-isar-ref}).  The initial proof step causes
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   190
 back-chaining of class membership statements wrt.\ the hierarchy of
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   191
 any classes defined in the current theory; the effect is to reduce to
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   192
 the initial statement to a number of goals that directly correspond
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   193
 to any class axioms encountered on the path upwards through the class
d78de58fe368 updated;
wenzelm
parents: 10223
diff changeset
   194
 hierarchy.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   195
\end{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   196
%
10395
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
   197
\isamarkupsubsection{Concrete instantiation \label{sec:inst-arity}%
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
   198
}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   199
%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   200
\begin{isamarkuptext}%
10223
wenzelm
parents: 10207
diff changeset
   201
So far we have covered the case of the form $\INSTANCE$~\isa{c\isactrlsub {\isadigit{1}}\ {\isacharless}\ c\isactrlsub {\isadigit{2}}}, namely \emph{abstract instantiation} ---
wenzelm
parents: 10207
diff changeset
   202
 $c@1$ is more special than \isa{c\isactrlsub {\isadigit{1}}} and thus an instance
wenzelm
parents: 10207
diff changeset
   203
 of \isa{c\isactrlsub {\isadigit{2}}}.  Even more interesting for practical
wenzelm
parents: 10207
diff changeset
   204
 applications are \emph{concrete instantiations} of axiomatic type
11071
wenzelm
parents: 10395
diff changeset
   205
 classes.  That is, certain simple schemes \isa{{\isacharparenleft}{\isasymalpha}\isactrlsub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymalpha}\isactrlsub n{\isacharparenright}\ t\ {\isasymColon}\ c} of class membership may be established at the
wenzelm
parents: 10395
diff changeset
   206
 logical level and then transferred to Isabelle's type signature
wenzelm
parents: 10395
diff changeset
   207
 level.
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   208
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   209
 \medskip As a typical example, we show that type \isa{bool} with
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   210
 exclusive-or as \isa{{\isasymodot}} operation, identity as \isa{{\isasyminv}}, and
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   211
 \isa{False} as \isa{{\isasymunit}} forms an Abelian group.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   212
\end{isamarkuptext}%
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   213
\isacommand{defs}\ {\isacharparenleft}\isakeyword{overloaded}{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   214
\ \ times{\isacharunderscore}bool{\isacharunderscore}def{\isacharcolon}\ {\isachardoublequote}x\ {\isasymodot}\ y\ {\isasymequiv}\ x\ {\isasymnoteq}\ {\isacharparenleft}y{\isasymColon}bool{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   215
\ \ inverse{\isacharunderscore}bool{\isacharunderscore}def{\isacharcolon}\ {\isachardoublequote}x{\isasyminv}\ {\isasymequiv}\ x{\isasymColon}bool{\isachardoublequote}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   216
\ \ unit{\isacharunderscore}bool{\isacharunderscore}def{\isacharcolon}\ {\isachardoublequote}{\isasymunit}\ {\isasymequiv}\ False{\isachardoublequote}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   217
\begin{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   218
\medskip It is important to note that above $\DEFS$ are just
8907
wenzelm
parents: 8903
diff changeset
   219
 overloaded meta-level constant definitions, where type classes are
wenzelm
parents: 8903
diff changeset
   220
 not yet involved at all.  This form of constant definition with
wenzelm
parents: 8903
diff changeset
   221
 overloading (and optional recursion over the syntactic structure of
wenzelm
parents: 8903
diff changeset
   222
 simple types) are admissible as definitional extensions of plain HOL
wenzelm
parents: 8903
diff changeset
   223
 \cite{Wenzel:1997:TPHOL}.  The Haskell-style type system is not
wenzelm
parents: 8903
diff changeset
   224
 required for overloading.  Nevertheless, overloaded definitions are
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   225
 best applied in the context of type classes.
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   226
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   227
 \medskip Since we have chosen above $\DEFS$ of the generic group
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   228
 operations on type \isa{bool} appropriately, the class membership
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   229
 \isa{bool\ {\isasymColon}\ agroup} may be now derived as follows.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   230
\end{isamarkuptext}%
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   231
\isacommand{instance}\ bool\ {\isacharcolon}{\isacharcolon}\ agroup\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   232
\isacommand{proof}\ {\isacharparenleft}intro{\isacharunderscore}classes{\isacharcomma}\isanewline
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   233
\ \ \ \ unfold\ times{\isacharunderscore}bool{\isacharunderscore}def\ inverse{\isacharunderscore}bool{\isacharunderscore}def\ unit{\isacharunderscore}bool{\isacharunderscore}def{\isacharparenright}\isanewline
9519
fdc3b5bcd79d updated;
wenzelm
parents: 9331
diff changeset
   234
\ \ \isacommand{fix}\ x\ y\ z\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   235
\ \ \isacommand{show}\ {\isachardoublequote}{\isacharparenleft}{\isacharparenleft}x\ {\isasymnoteq}\ y{\isacharparenright}\ {\isasymnoteq}\ z{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}x\ {\isasymnoteq}\ {\isacharparenleft}y\ {\isasymnoteq}\ z{\isacharparenright}{\isacharparenright}{\isachardoublequote}\ \isacommand{by}\ blast\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   236
\ \ \isacommand{show}\ {\isachardoublequote}{\isacharparenleft}False\ {\isasymnoteq}\ x{\isacharparenright}\ {\isacharequal}\ x{\isachardoublequote}\ \isacommand{by}\ blast\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   237
\ \ \isacommand{show}\ {\isachardoublequote}{\isacharparenleft}x\ {\isasymnoteq}\ x{\isacharparenright}\ {\isacharequal}\ False{\isachardoublequote}\ \isacommand{by}\ blast\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   238
\ \ \isacommand{show}\ {\isachardoublequote}{\isacharparenleft}x\ {\isasymnoteq}\ y{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}y\ {\isasymnoteq}\ x{\isacharparenright}{\isachardoublequote}\ \isacommand{by}\ blast\isanewline
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   239
\isacommand{qed}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   240
\begin{isamarkuptext}%
10223
wenzelm
parents: 10207
diff changeset
   241
The result of an $\INSTANCE$ statement is both expressed as a theorem
wenzelm
parents: 10207
diff changeset
   242
 of Isabelle's meta-logic, and as a type arity of the type signature.
wenzelm
parents: 10207
diff changeset
   243
 The latter enables type-inference system to take care of this new
wenzelm
parents: 10207
diff changeset
   244
 instance automatically.
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   245
8907
wenzelm
parents: 8903
diff changeset
   246
 \medskip We could now also instantiate our group theory classes to
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   247
 many other concrete types.  For example, \isa{int\ {\isasymColon}\ agroup}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   248
 (e.g.\ by defining \isa{{\isasymodot}} as addition, \isa{{\isasyminv}} as negation
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   249
 and \isa{{\isasymunit}} as zero) or \isa{list\ {\isasymColon}\ {\isacharparenleft}term{\isacharparenright}\ semigroup}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   250
 (e.g.\ if \isa{{\isasymodot}} is defined as list append).  Thus, the
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   251
 characteristic constants \isa{{\isasymodot}}, \isa{{\isasyminv}}, \isa{{\isasymunit}}
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   252
 really become overloaded, i.e.\ have different meanings on different
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   253
 types.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   254
\end{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   255
%
10395
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
   256
\isamarkupsubsection{Lifting and Functors%
7ef380745743 updated;
wenzelm
parents: 10310
diff changeset
   257
}
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   258
%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   259
\begin{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   260
As already mentioned above, overloading in the simply-typed HOL
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   261
 systems may include recursion over the syntactic structure of types.
10223
wenzelm
parents: 10207
diff changeset
   262
 That is, definitional equations \isa{c\isactrlsup {\isasymtau}\ {\isasymequiv}\ t} may also
wenzelm
parents: 10207
diff changeset
   263
 contain constants of name \isa{c} on the right-hand side --- if
wenzelm
parents: 10207
diff changeset
   264
 these have types that are structurally simpler than \isa{{\isasymtau}}.
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   265
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   266
 This feature enables us to \emph{lift operations}, say to Cartesian
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   267
 products, direct sums or function spaces.  Subsequently we lift
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   268
 \isa{{\isasymodot}} component-wise to binary products \isa{{\isacharprime}a\ {\isasymtimes}\ {\isacharprime}b}.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   269
\end{isamarkuptext}%
9665
2a6d7f1409f9 updated;
wenzelm
parents: 9519
diff changeset
   270
\isacommand{defs}\ {\isacharparenleft}\isakeyword{overloaded}{\isacharparenright}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   271
\ \ times{\isacharunderscore}prod{\isacharunderscore}def{\isacharcolon}\ {\isachardoublequote}p\ {\isasymodot}\ q\ {\isasymequiv}\ {\isacharparenleft}fst\ p\ {\isasymodot}\ fst\ q{\isacharcomma}\ snd\ p\ {\isasymodot}\ snd\ q{\isacharparenright}{\isachardoublequote}%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   272
\begin{isamarkuptext}%
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   273
It is very easy to see that associativity of \isa{{\isasymodot}} on \isa{{\isacharprime}a}
11071
wenzelm
parents: 10395
diff changeset
   274
 and \isa{{\isasymodot}} on \isa{{\isacharprime}b} transfers to \isa{{\isasymodot}} on \isa{{\isacharprime}a\ {\isasymtimes}\ {\isacharprime}b}.  Hence the binary type constructor \isa{{\isasymodot}} maps semigroups to
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   275
 semigroups.  This may be established formally as follows.%
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   276
\end{isamarkuptext}%
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   277
\isacommand{instance}\ {\isacharasterisk}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}semigroup{\isacharcomma}\ semigroup{\isacharparenright}\ semigroup\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   278
\isacommand{proof}\ {\isacharparenleft}intro{\isacharunderscore}classes{\isacharcomma}\ unfold\ times{\isacharunderscore}prod{\isacharunderscore}def{\isacharparenright}\isanewline
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   279
\ \ \isacommand{fix}\ p\ q\ r\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a{\isasymColon}semigroup\ {\isasymtimes}\ {\isacharprime}b{\isasymColon}semigroup{\isachardoublequote}\isanewline
9519
fdc3b5bcd79d updated;
wenzelm
parents: 9331
diff changeset
   280
\ \ \isacommand{show}\isanewline
10140
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   281
\ \ \ \ {\isachardoublequote}{\isacharparenleft}fst\ {\isacharparenleft}fst\ p\ {\isasymodot}\ fst\ q{\isacharcomma}\ snd\ p\ {\isasymodot}\ snd\ q{\isacharparenright}\ {\isasymodot}\ fst\ r{\isacharcomma}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   282
\ \ \ \ \ \ snd\ {\isacharparenleft}fst\ p\ {\isasymodot}\ fst\ q{\isacharcomma}\ snd\ p\ {\isasymodot}\ snd\ q{\isacharparenright}\ {\isasymodot}\ snd\ r{\isacharparenright}\ {\isacharequal}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   283
\ \ \ \ \ \ \ {\isacharparenleft}fst\ p\ {\isasymodot}\ fst\ {\isacharparenleft}fst\ q\ {\isasymodot}\ fst\ r{\isacharcomma}\ snd\ q\ {\isasymodot}\ snd\ r{\isacharparenright}{\isacharcomma}\isanewline
ba9297b71897 major cleanup -- improved typesetting;
wenzelm
parents: 9921
diff changeset
   284
\ \ \ \ \ \ \ \ snd\ p\ {\isasymodot}\ snd\ {\isacharparenleft}fst\ q\ {\isasymodot}\ fst\ r{\isacharcomma}\ snd\ q\ {\isasymodot}\ snd\ r{\isacharparenright}{\isacharparenright}{\isachardoublequote}\isanewline
9672
2c208c98f541 updated;
wenzelm
parents: 9665
diff changeset
   285
\ \ \ \ \isacommand{by}\ {\isacharparenleft}simp\ add{\isacharcolon}\ semigroup{\isachardot}assoc{\isacharparenright}\isanewline
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   286
\isacommand{qed}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   287
\begin{isamarkuptext}%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   288
Thus, if we view class instances as ``structures'', then overloaded
8907
wenzelm
parents: 8903
diff changeset
   289
 constant definitions with recursion over types indirectly provide
wenzelm
parents: 8903
diff changeset
   290
 some kind of ``functors'' --- i.e.\ mappings between abstract
8903
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   291
 theories.%
78d6e47469e4 new Isar version;
wenzelm
parents: 8890
diff changeset
   292
\end{isamarkuptext}%
9767
dc2ee9b2e065 updated;
wenzelm
parents: 9672
diff changeset
   293
\isacommand{end}\end{isabellebody}%
9145
9f7b8de5bfaf updated;
wenzelm
parents: 8922
diff changeset
   294
%%% Local Variables:
9f7b8de5bfaf updated;
wenzelm
parents: 8922
diff changeset
   295
%%% mode: latex
9f7b8de5bfaf updated;
wenzelm
parents: 8922
diff changeset
   296
%%% TeX-master: "root"
9f7b8de5bfaf updated;
wenzelm
parents: 8922
diff changeset
   297
%%% End: