doc-src/IsarImplementation/Thy/document/logic.tex
author haftmann
Wed, 21 Jan 2009 16:47:32 +0100
changeset 29581 b3b33e0298eb
parent 29008 d863c103ded0
child 29615 24a58ae5dc0e
permissions -rw-r--r--
binding is alias for Binding.T
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     1
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     2
\begin{isabellebody}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     3
\def\isabellecontext{logic}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     4
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     5
\isadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     6
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     7
\endisadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     8
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     9
\isatagtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    10
\isacommand{theory}\isamarkupfalse%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    11
\ logic\ \isakeyword{imports}\ base\ \isakeyword{begin}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    12
\endisatagtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    13
{\isafoldtheory}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    14
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    15
\isadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    16
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    17
\endisadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    18
%
20471
ffafbd4103c0 updated;
wenzelm
parents: 20451
diff changeset
    19
\isamarkupchapter{Primitive logic \label{ch:logic}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    20
}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    21
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    22
%
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    23
\begin{isamarkuptext}%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    24
The logical foundations of Isabelle/Isar are that of the Pure logic,
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    25
  which has been introduced as a natural-deduction framework in
20493
wenzelm
parents: 20491
diff changeset
    26
  \cite{paulson700}.  This is essentially the same logic as ``\isa{{\isasymlambda}HOL}'' in the more abstract setting of Pure Type Systems (PTS)
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    27
  \cite{Barendregt-Geuvers:2001}, although there are some key
20491
wenzelm
parents: 20481
diff changeset
    28
  differences in the specific treatment of simple types in
wenzelm
parents: 20481
diff changeset
    29
  Isabelle/Pure.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    30
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    31
  Following type-theoretic parlance, the Pure logic consists of three
20543
wenzelm
parents: 20542
diff changeset
    32
  levels of \isa{{\isasymlambda}}-calculus with corresponding arrows, \isa{{\isasymRightarrow}} for syntactic function space (terms depending on terms), \isa{{\isasymAnd}} for universal quantification (proofs depending on terms), and
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    33
  \isa{{\isasymLongrightarrow}} for implication (proofs depending on proofs).
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    34
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    35
  Derivations are relative to a logical theory, which declares type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    36
  constructors, constants, and axioms.  Theory declarations support
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    37
  schematic polymorphism, which is strictly speaking outside the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    38
  logic.\footnote{This is the deeper logical reason, why the theory
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    39
  context \isa{{\isasymTheta}} is separate from the proof context \isa{{\isasymGamma}}
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    40
  of the core calculus.}%
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    41
\end{isamarkuptext}%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    42
\isamarkuptrue%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    43
%
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    44
\isamarkupsection{Types \label{sec:types}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    45
}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    46
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    47
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    48
\begin{isamarkuptext}%
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    49
The language of types is an uninterpreted order-sorted first-order
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    50
  algebra; types are qualified by ordered type classes.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    51
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    52
  \medskip A \emph{type class} is an abstract syntactic entity
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    53
  declared in the theory context.  The \emph{subclass relation} \isa{c\isactrlisub {\isadigit{1}}\ {\isasymsubseteq}\ c\isactrlisub {\isadigit{2}}} is specified by stating an acyclic
20491
wenzelm
parents: 20481
diff changeset
    54
  generating relation; the transitive closure is maintained
wenzelm
parents: 20481
diff changeset
    55
  internally.  The resulting relation is an ordering: reflexive,
wenzelm
parents: 20481
diff changeset
    56
  transitive, and antisymmetric.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    57
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    58
  A \emph{sort} is a list of type classes written as \isa{s\ {\isacharequal}\ {\isacharbraceleft}c\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ c\isactrlisub m{\isacharbraceright}}, which represents symbolic
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    59
  intersection.  Notationally, the curly braces are omitted for
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    60
  singleton intersections, i.e.\ any class \isa{c} may be read as
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    61
  a sort \isa{{\isacharbraceleft}c{\isacharbraceright}}.  The ordering on type classes is extended to
20491
wenzelm
parents: 20481
diff changeset
    62
  sorts according to the meaning of intersections: \isa{{\isacharbraceleft}c\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}\ c\isactrlisub m{\isacharbraceright}\ {\isasymsubseteq}\ {\isacharbraceleft}d\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ d\isactrlisub n{\isacharbraceright}} iff
wenzelm
parents: 20481
diff changeset
    63
  \isa{{\isasymforall}j{\isachardot}\ {\isasymexists}i{\isachardot}\ c\isactrlisub i\ {\isasymsubseteq}\ d\isactrlisub j}.  The empty intersection
wenzelm
parents: 20481
diff changeset
    64
  \isa{{\isacharbraceleft}{\isacharbraceright}} refers to the universal sort, which is the largest
wenzelm
parents: 20481
diff changeset
    65
  element wrt.\ the sort order.  The intersections of all (finitely
wenzelm
parents: 20481
diff changeset
    66
  many) classes declared in the current theory are the minimal
wenzelm
parents: 20481
diff changeset
    67
  elements wrt.\ the sort order.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    68
20491
wenzelm
parents: 20481
diff changeset
    69
  \medskip A \emph{fixed type variable} is a pair of a basic name
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    70
  (starting with a \isa{{\isacharprime}} character) and a sort constraint, e.g.\
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    71
  \isa{{\isacharparenleft}{\isacharprime}a{\isacharcomma}\ s{\isacharparenright}} which is usually printed as \isa{{\isasymalpha}\isactrlisub s}.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    72
  A \emph{schematic type variable} is a pair of an indexname and a
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    73
  sort constraint, e.g.\ \isa{{\isacharparenleft}{\isacharparenleft}{\isacharprime}a{\isacharcomma}\ {\isadigit{0}}{\isacharparenright}{\isacharcomma}\ s{\isacharparenright}} which is usually
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    74
  printed as \isa{{\isacharquery}{\isasymalpha}\isactrlisub s}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    75
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    76
  Note that \emph{all} syntactic components contribute to the identity
20493
wenzelm
parents: 20491
diff changeset
    77
  of type variables, including the sort constraint.  The core logic
wenzelm
parents: 20491
diff changeset
    78
  handles type variables with the same name but different sorts as
wenzelm
parents: 20491
diff changeset
    79
  different, although some outer layers of the system make it hard to
wenzelm
parents: 20491
diff changeset
    80
  produce anything like this.
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
    81
20493
wenzelm
parents: 20491
diff changeset
    82
  A \emph{type constructor} \isa{{\isasymkappa}} is a \isa{k}-ary operator
wenzelm
parents: 20491
diff changeset
    83
  on types declared in the theory.  Type constructor application is
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    84
  written postfix as \isa{{\isacharparenleft}{\isasymalpha}\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymalpha}\isactrlisub k{\isacharparenright}{\isasymkappa}}.  For
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    85
  \isa{k\ {\isacharequal}\ {\isadigit{0}}} the argument tuple is omitted, e.g.\ \isa{prop}
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    86
  instead of \isa{{\isacharparenleft}{\isacharparenright}prop}.  For \isa{k\ {\isacharequal}\ {\isadigit{1}}} the parentheses
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    87
  are omitted, e.g.\ \isa{{\isasymalpha}\ list} instead of \isa{{\isacharparenleft}{\isasymalpha}{\isacharparenright}list}.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    88
  Further notation is provided for specific constructors, notably the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    89
  right-associative infix \isa{{\isasymalpha}\ {\isasymRightarrow}\ {\isasymbeta}} instead of \isa{{\isacharparenleft}{\isasymalpha}{\isacharcomma}\ {\isasymbeta}{\isacharparenright}fun}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    90
  
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    91
  A \emph{type} is defined inductively over type variables and type
20543
wenzelm
parents: 20542
diff changeset
    92
  constructors as follows: \isa{{\isasymtau}\ {\isacharequal}\ {\isasymalpha}\isactrlisub s\ {\isacharbar}\ {\isacharquery}{\isasymalpha}\isactrlisub s\ {\isacharbar}\ {\isacharparenleft}{\isasymtau}\isactrlsub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymtau}\isactrlsub k{\isacharparenright}{\isasymkappa}}.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    93
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
    94
  A \emph{type abbreviation} is a syntactic definition \isa{{\isacharparenleft}\isactrlvec {\isasymalpha}{\isacharparenright}{\isasymkappa}\ {\isacharequal}\ {\isasymtau}} of an arbitrary type expression \isa{{\isasymtau}} over
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    95
  variables \isa{\isactrlvec {\isasymalpha}}.  Type abbreviations appear as type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    96
  constructors in the syntax, but are expanded before entering the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    97
  logical core.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    98
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
    99
  A \emph{type arity} declares the image behavior of a type
20494
wenzelm
parents: 20493
diff changeset
   100
  constructor wrt.\ the algebra of sorts: \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}s\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ s\isactrlisub k{\isacharparenright}s} means that \isa{{\isacharparenleft}{\isasymtau}\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymtau}\isactrlisub k{\isacharparenright}{\isasymkappa}} is
wenzelm
parents: 20493
diff changeset
   101
  of sort \isa{s} if every argument type \isa{{\isasymtau}\isactrlisub i} is
wenzelm
parents: 20493
diff changeset
   102
  of sort \isa{s\isactrlisub i}.  Arity declarations are implicitly
wenzelm
parents: 20493
diff changeset
   103
  completed, i.e.\ \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}\isactrlvec s{\isacharparenright}c} entails \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}\isactrlvec s{\isacharparenright}c{\isacharprime}} for any \isa{c{\isacharprime}\ {\isasymsupseteq}\ c}.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   104
20491
wenzelm
parents: 20481
diff changeset
   105
  \medskip The sort algebra is always maintained as \emph{coregular},
wenzelm
parents: 20481
diff changeset
   106
  which means that type arities are consistent with the subclass
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   107
  relation: for any type constructor \isa{{\isasymkappa}}, and classes \isa{c\isactrlisub {\isadigit{1}}\ {\isasymsubseteq}\ c\isactrlisub {\isadigit{2}}}, and arities \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}\isactrlvec s\isactrlisub {\isadigit{1}}{\isacharparenright}c\isactrlisub {\isadigit{1}}} and \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}\isactrlvec s\isactrlisub {\isadigit{2}}{\isacharparenright}c\isactrlisub {\isadigit{2}}} holds \isa{\isactrlvec s\isactrlisub {\isadigit{1}}\ {\isasymsubseteq}\ \isactrlvec s\isactrlisub {\isadigit{2}}} component-wise.
20491
wenzelm
parents: 20481
diff changeset
   108
wenzelm
parents: 20481
diff changeset
   109
  The key property of a coregular order-sorted algebra is that sort
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   110
  constraints can be solved in a most general fashion: for each type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   111
  constructor \isa{{\isasymkappa}} and sort \isa{s} there is a most general
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   112
  vector of argument sorts \isa{{\isacharparenleft}s\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ s\isactrlisub k{\isacharparenright}} such
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   113
  that a type scheme \isa{{\isacharparenleft}{\isasymalpha}\isactrlbsub s\isactrlisub {\isadigit{1}}\isactrlesub {\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymalpha}\isactrlbsub s\isactrlisub k\isactrlesub {\isacharparenright}{\isasymkappa}} is of sort \isa{s}.
20543
wenzelm
parents: 20542
diff changeset
   114
  Consequently, type unification has most general solutions (modulo
wenzelm
parents: 20542
diff changeset
   115
  equivalence of sorts), so type-inference produces primary types as
wenzelm
parents: 20542
diff changeset
   116
  expected \cite{nipkow-prehofer}.%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   117
\end{isamarkuptext}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   118
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   119
%
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   120
\isadelimmlref
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   121
%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   122
\endisadelimmlref
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   123
%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   124
\isatagmlref
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   125
%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   126
\begin{isamarkuptext}%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   127
\begin{mldecls}
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   128
  \indexmltype{class}\verb|type class| \\
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   129
  \indexmltype{sort}\verb|type sort| \\
20494
wenzelm
parents: 20493
diff changeset
   130
  \indexmltype{arity}\verb|type arity| \\
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   131
  \indexmltype{typ}\verb|type typ| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   132
  \indexml{map\_atyps}\verb|map_atyps: (typ -> typ) -> typ -> typ| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   133
  \indexml{fold\_atyps}\verb|fold_atyps: (typ -> 'a -> 'a) -> typ -> 'a -> 'a| \\
20547
wenzelm
parents: 20543
diff changeset
   134
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   135
  \begin{mldecls}
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   136
  \indexml{Sign.subsort}\verb|Sign.subsort: theory -> sort * sort -> bool| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   137
  \indexml{Sign.of\_sort}\verb|Sign.of_sort: theory -> typ * sort -> bool| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   138
  \indexml{Sign.add\_types}\verb|Sign.add_types: (string * int * mixfix) list -> theory -> theory| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   139
  \indexml{Sign.add\_tyabbrs\_i}\verb|Sign.add_tyabbrs_i: |\isasep\isanewline%
20520
wenzelm
parents: 20519
diff changeset
   140
\verb|  (string * string list * typ * mixfix) list -> theory -> theory| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   141
  \indexml{Sign.primitive\_class}\verb|Sign.primitive_class: string * class list -> theory -> theory| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   142
  \indexml{Sign.primitive\_classrel}\verb|Sign.primitive_classrel: class * class -> theory -> theory| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   143
  \indexml{Sign.primitive\_arity}\verb|Sign.primitive_arity: arity -> theory -> theory| \\
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   144
  \end{mldecls}
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   145
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   146
  \begin{description}
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   147
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   148
  \item \verb|class| represents type classes; this is an alias for
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   149
  \verb|string|.
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   150
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   151
  \item \verb|sort| represents sorts; this is an alias for
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   152
  \verb|class list|.
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   153
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   154
  \item \verb|arity| represents type arities; this is an alias for
20494
wenzelm
parents: 20493
diff changeset
   155
  triples of the form \isa{{\isacharparenleft}{\isasymkappa}{\isacharcomma}\ \isactrlvec s{\isacharcomma}\ s{\isacharparenright}} for \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}\isactrlvec s{\isacharparenright}s} described above.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   156
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   157
  \item \verb|typ| represents types; this is a datatype with
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   158
  constructors \verb|TFree|, \verb|TVar|, \verb|Type|.
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   159
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   160
  \item \verb|map_atyps|~\isa{f\ {\isasymtau}} applies the mapping \isa{f}
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   161
  to all atomic types (\verb|TFree|, \verb|TVar|) occurring in \isa{{\isasymtau}}.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   162
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   163
  \item \verb|fold_atyps|~\isa{f\ {\isasymtau}} iterates the operation \isa{f} over all occurrences of atomic types (\verb|TFree|, \verb|TVar|)
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   164
  in \isa{{\isasymtau}}; the type structure is traversed from left to right.
20494
wenzelm
parents: 20493
diff changeset
   165
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   166
  \item \verb|Sign.subsort|~\isa{thy\ {\isacharparenleft}s\isactrlisub {\isadigit{1}}{\isacharcomma}\ s\isactrlisub {\isadigit{2}}{\isacharparenright}}
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   167
  tests the subsort relation \isa{s\isactrlisub {\isadigit{1}}\ {\isasymsubseteq}\ s\isactrlisub {\isadigit{2}}}.
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   168
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   169
  \item \verb|Sign.of_sort|~\isa{thy\ {\isacharparenleft}{\isasymtau}{\isacharcomma}\ s{\isacharparenright}} tests whether type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   170
  \isa{{\isasymtau}} is of sort \isa{s}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   171
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   172
  \item \verb|Sign.add_types|~\isa{{\isacharbrackleft}{\isacharparenleft}{\isasymkappa}{\isacharcomma}\ k{\isacharcomma}\ mx{\isacharparenright}{\isacharcomma}\ {\isasymdots}{\isacharbrackright}} declares a new
20494
wenzelm
parents: 20493
diff changeset
   173
  type constructors \isa{{\isasymkappa}} with \isa{k} arguments and
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   174
  optional mixfix syntax.
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   175
20494
wenzelm
parents: 20493
diff changeset
   176
  \item \verb|Sign.add_tyabbrs_i|~\isa{{\isacharbrackleft}{\isacharparenleft}{\isasymkappa}{\isacharcomma}\ \isactrlvec {\isasymalpha}{\isacharcomma}\ {\isasymtau}{\isacharcomma}\ mx{\isacharparenright}{\isacharcomma}\ {\isasymdots}{\isacharbrackright}}
wenzelm
parents: 20493
diff changeset
   177
  defines a new type abbreviation \isa{{\isacharparenleft}\isactrlvec {\isasymalpha}{\isacharparenright}{\isasymkappa}\ {\isacharequal}\ {\isasymtau}} with
20491
wenzelm
parents: 20481
diff changeset
   178
  optional mixfix syntax.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   179
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   180
  \item \verb|Sign.primitive_class|~\isa{{\isacharparenleft}c{\isacharcomma}\ {\isacharbrackleft}c\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ c\isactrlisub n{\isacharbrackright}{\isacharparenright}} declares a new class \isa{c}, together with class
20494
wenzelm
parents: 20493
diff changeset
   181
  relations \isa{c\ {\isasymsubseteq}\ c\isactrlisub i}, for \isa{i\ {\isacharequal}\ {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ n}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   182
20543
wenzelm
parents: 20542
diff changeset
   183
  \item \verb|Sign.primitive_classrel|~\isa{{\isacharparenleft}c\isactrlisub {\isadigit{1}}{\isacharcomma}\ c\isactrlisub {\isadigit{2}}{\isacharparenright}} declares the class relation \isa{c\isactrlisub {\isadigit{1}}\ {\isasymsubseteq}\ c\isactrlisub {\isadigit{2}}}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   184
20494
wenzelm
parents: 20493
diff changeset
   185
  \item \verb|Sign.primitive_arity|~\isa{{\isacharparenleft}{\isasymkappa}{\isacharcomma}\ \isactrlvec s{\isacharcomma}\ s{\isacharparenright}} declares
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   186
  the arity \isa{{\isasymkappa}\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}\isactrlvec s{\isacharparenright}s}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   187
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   188
  \end{description}%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   189
\end{isamarkuptext}%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   190
\isamarkuptrue%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   191
%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   192
\endisatagmlref
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   193
{\isafoldmlref}%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   194
%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   195
\isadelimmlref
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   196
%
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   197
\endisadelimmlref
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   198
%
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   199
\isamarkupsection{Terms \label{sec:terms}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   200
}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   201
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   202
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   203
\begin{isamarkuptext}%
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   204
\glossary{Term}{FIXME}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   205
20491
wenzelm
parents: 20481
diff changeset
   206
  The language of terms is that of simply-typed \isa{{\isasymlambda}}-calculus
20520
wenzelm
parents: 20519
diff changeset
   207
  with de-Bruijn indices for bound variables (cf.\ \cite{debruijn72}
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   208
  or \cite{paulson-ml2}), with the types being determined determined
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   209
  by the corresponding binders.  In contrast, free variables and
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   210
  constants are have an explicit name and type in each occurrence.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   211
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   212
  \medskip A \emph{bound variable} is a natural number \isa{b},
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   213
  which accounts for the number of intermediate binders between the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   214
  variable occurrence in the body and its binding position.  For
20543
wenzelm
parents: 20542
diff changeset
   215
  example, the de-Bruijn term \isa{{\isasymlambda}\isactrlbsub nat\isactrlesub {\isachardot}\ {\isasymlambda}\isactrlbsub nat\isactrlesub {\isachardot}\ {\isadigit{1}}\ {\isacharplus}\ {\isadigit{0}}} would
wenzelm
parents: 20542
diff changeset
   216
  correspond to \isa{{\isasymlambda}x\isactrlbsub nat\isactrlesub {\isachardot}\ {\isasymlambda}y\isactrlbsub nat\isactrlesub {\isachardot}\ x\ {\isacharplus}\ y} in a named
wenzelm
parents: 20542
diff changeset
   217
  representation.  Note that a bound variable may be represented by
wenzelm
parents: 20542
diff changeset
   218
  different de-Bruijn indices at different occurrences, depending on
wenzelm
parents: 20542
diff changeset
   219
  the nesting of abstractions.
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   220
20543
wenzelm
parents: 20542
diff changeset
   221
  A \emph{loose variable} is a bound variable that is outside the
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   222
  scope of local binders.  The types (and names) for loose variables
20543
wenzelm
parents: 20542
diff changeset
   223
  can be managed as a separate context, that is maintained as a stack
wenzelm
parents: 20542
diff changeset
   224
  of hypothetical binders.  The core logic operates on closed terms,
wenzelm
parents: 20542
diff changeset
   225
  without any loose variables.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   226
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   227
  A \emph{fixed variable} is a pair of a basic name and a type, e.g.\
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   228
  \isa{{\isacharparenleft}x{\isacharcomma}\ {\isasymtau}{\isacharparenright}} which is usually printed \isa{x\isactrlisub {\isasymtau}}.  A
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   229
  \emph{schematic variable} is a pair of an indexname and a type,
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   230
  e.g.\ \isa{{\isacharparenleft}{\isacharparenleft}x{\isacharcomma}\ {\isadigit{0}}{\isacharparenright}{\isacharcomma}\ {\isasymtau}{\isacharparenright}} which is usually printed as \isa{{\isacharquery}x\isactrlisub {\isasymtau}}.
20491
wenzelm
parents: 20481
diff changeset
   231
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   232
  \medskip A \emph{constant} is a pair of a basic name and a type,
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   233
  e.g.\ \isa{{\isacharparenleft}c{\isacharcomma}\ {\isasymtau}{\isacharparenright}} which is usually printed as \isa{c\isactrlisub {\isasymtau}}.  Constants are declared in the context as polymorphic
20543
wenzelm
parents: 20542
diff changeset
   234
  families \isa{c\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}}, meaning that all substitution instances
wenzelm
parents: 20542
diff changeset
   235
  \isa{c\isactrlisub {\isasymtau}} for \isa{{\isasymtau}\ {\isacharequal}\ {\isasymsigma}{\isasymvartheta}} are valid.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   236
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   237
  The vector of \emph{type arguments} of constant \isa{c\isactrlisub {\isasymtau}}
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   238
  wrt.\ the declaration \isa{c\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} is defined as the codomain of
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   239
  the matcher \isa{{\isasymvartheta}\ {\isacharequal}\ {\isacharbraceleft}{\isacharquery}{\isasymalpha}\isactrlisub {\isadigit{1}}\ {\isasymmapsto}\ {\isasymtau}\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isacharquery}{\isasymalpha}\isactrlisub n\ {\isasymmapsto}\ {\isasymtau}\isactrlisub n{\isacharbraceright}} presented in canonical order \isa{{\isacharparenleft}{\isasymtau}\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymtau}\isactrlisub n{\isacharparenright}}.  Within a given theory context,
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   240
  there is a one-to-one correspondence between any constant \isa{c\isactrlisub {\isasymtau}} and the application \isa{c{\isacharparenleft}{\isasymtau}\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymtau}\isactrlisub n{\isacharparenright}} of its type arguments.  For example, with \isa{plus\ {\isacharcolon}{\isacharcolon}\ {\isasymalpha}\ {\isasymRightarrow}\ {\isasymalpha}\ {\isasymRightarrow}\ {\isasymalpha}}, the instance \isa{plus\isactrlbsub nat\ {\isasymRightarrow}\ nat\ {\isasymRightarrow}\ nat\isactrlesub } corresponds to \isa{plus{\isacharparenleft}nat{\isacharparenright}}.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   241
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   242
  Constant declarations \isa{c\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} may contain sort constraints
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   243
  for type variables in \isa{{\isasymsigma}}.  These are observed by
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   244
  type-inference as expected, but \emph{ignored} by the core logic.
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   245
  This means the primitive logic is able to reason with instances of
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   246
  polymorphic constants that the user-level type-checker would reject
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   247
  due to violation of type class restrictions.
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   248
20543
wenzelm
parents: 20542
diff changeset
   249
  \medskip An \emph{atomic} term is either a variable or constant.  A
wenzelm
parents: 20542
diff changeset
   250
  \emph{term} is defined inductively over atomic terms, with
wenzelm
parents: 20542
diff changeset
   251
  abstraction and application as follows: \isa{t\ {\isacharequal}\ b\ {\isacharbar}\ x\isactrlisub {\isasymtau}\ {\isacharbar}\ {\isacharquery}x\isactrlisub {\isasymtau}\ {\isacharbar}\ c\isactrlisub {\isasymtau}\ {\isacharbar}\ {\isasymlambda}\isactrlisub {\isasymtau}{\isachardot}\ t\ {\isacharbar}\ t\isactrlisub {\isadigit{1}}\ t\isactrlisub {\isadigit{2}}}.
wenzelm
parents: 20542
diff changeset
   252
  Parsing and printing takes care of converting between an external
wenzelm
parents: 20542
diff changeset
   253
  representation with named bound variables.  Subsequently, we shall
wenzelm
parents: 20542
diff changeset
   254
  use the latter notation instead of internal de-Bruijn
wenzelm
parents: 20542
diff changeset
   255
  representation.
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   256
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   257
  The inductive relation \isa{t\ {\isacharcolon}{\isacharcolon}\ {\isasymtau}} assigns a (unique) type to a
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   258
  term according to the structure of atomic terms, abstractions, and
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   259
  applicatins:
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   260
  \[
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   261
  \infer{\isa{a\isactrlisub {\isasymtau}\ {\isacharcolon}{\isacharcolon}\ {\isasymtau}}}{}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   262
  \qquad
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   263
  \infer{\isa{{\isacharparenleft}{\isasymlambda}x\isactrlsub {\isasymtau}{\isachardot}\ t{\isacharparenright}\ {\isacharcolon}{\isacharcolon}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymsigma}}}{\isa{t\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}}}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   264
  \qquad
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   265
  \infer{\isa{t\ u\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}}}{\isa{t\ {\isacharcolon}{\isacharcolon}\ {\isasymtau}\ {\isasymRightarrow}\ {\isasymsigma}} & \isa{u\ {\isacharcolon}{\isacharcolon}\ {\isasymtau}}}
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   266
  \]
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   267
  A \emph{well-typed term} is a term that can be typed according to these rules.
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   268
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   269
  Typing information can be omitted: type-inference is able to
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   270
  reconstruct the most general type of a raw term, while assigning
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   271
  most general types to all of its variables and constants.
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   272
  Type-inference depends on a context of type constraints for fixed
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   273
  variables, and declarations for polymorphic constants.
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   274
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   275
  The identity of atomic terms consists both of the name and the type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   276
  component.  This means that different variables \isa{x\isactrlbsub {\isasymtau}\isactrlisub {\isadigit{1}}\isactrlesub } and \isa{x\isactrlbsub {\isasymtau}\isactrlisub {\isadigit{2}}\isactrlesub } may become the same after type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   277
  instantiation.  Some outer layers of the system make it hard to
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   278
  produce variables of the same name, but different types.  In
20543
wenzelm
parents: 20542
diff changeset
   279
  contrast, mixed instances of polymorphic constants occur frequently.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   280
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   281
  \medskip The \emph{hidden polymorphism} of a term \isa{t\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}}
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   282
  is the set of type variables occurring in \isa{t}, but not in
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   283
  \isa{{\isasymsigma}}.  This means that the term implicitly depends on type
20543
wenzelm
parents: 20542
diff changeset
   284
  arguments that are not accounted in the result type, i.e.\ there are
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   285
  different type instances \isa{t{\isasymvartheta}\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} and \isa{t{\isasymvartheta}{\isacharprime}\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} with the same type.  This slightly
20543
wenzelm
parents: 20542
diff changeset
   286
  pathological situation notoriously demands additional care.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   287
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   288
  \medskip A \emph{term abbreviation} is a syntactic definition \isa{c\isactrlisub {\isasymsigma}\ {\isasymequiv}\ t} of a closed term \isa{t} of type \isa{{\isasymsigma}},
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   289
  without any hidden polymorphism.  A term abbreviation looks like a
20543
wenzelm
parents: 20542
diff changeset
   290
  constant in the syntax, but is expanded before entering the logical
wenzelm
parents: 20542
diff changeset
   291
  core.  Abbreviations are usually reverted when printing terms, using
wenzelm
parents: 20542
diff changeset
   292
  \isa{t\ {\isasymrightarrow}\ c\isactrlisub {\isasymsigma}} as rules for higher-order rewriting.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   293
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   294
  \medskip Canonical operations on \isa{{\isasymlambda}}-terms include \isa{{\isasymalpha}{\isasymbeta}{\isasymeta}}-conversion: \isa{{\isasymalpha}}-conversion refers to capture-free
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   295
  renaming of bound variables; \isa{{\isasymbeta}}-conversion contracts an
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   296
  abstraction applied to an argument term, substituting the argument
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   297
  in the body: \isa{{\isacharparenleft}{\isasymlambda}x{\isachardot}\ b{\isacharparenright}a} becomes \isa{b{\isacharbrackleft}a{\isacharslash}x{\isacharbrackright}}; \isa{{\isasymeta}}-conversion contracts vacuous application-abstraction: \isa{{\isasymlambda}x{\isachardot}\ f\ x} becomes \isa{f}, provided that the bound variable
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   298
  does not occur in \isa{f}.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   299
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   300
  Terms are normally treated modulo \isa{{\isasymalpha}}-conversion, which is
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   301
  implicit in the de-Bruijn representation.  Names for bound variables
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   302
  in abstractions are maintained separately as (meaningless) comments,
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   303
  mostly for parsing and printing.  Full \isa{{\isasymalpha}{\isasymbeta}{\isasymeta}}-conversion is
28786
de95d007eaed updated generated files;
wenzelm
parents: 28291
diff changeset
   304
  commonplace in various standard operations (\secref{sec:obj-rules})
de95d007eaed updated generated files;
wenzelm
parents: 28291
diff changeset
   305
  that are based on higher-order unification and matching.%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   306
\end{isamarkuptext}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   307
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   308
%
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   309
\isadelimmlref
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   310
%
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   311
\endisadelimmlref
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   312
%
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   313
\isatagmlref
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   314
%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   315
\begin{isamarkuptext}%
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   316
\begin{mldecls}
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   317
  \indexmltype{term}\verb|type term| \\
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   318
  \indexml{op aconv}\verb|op aconv: term * term -> bool| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   319
  \indexml{map\_types}\verb|map_types: (typ -> typ) -> term -> term| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   320
  \indexml{fold\_types}\verb|fold_types: (typ -> 'a -> 'a) -> term -> 'a -> 'a| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   321
  \indexml{map\_aterms}\verb|map_aterms: (term -> term) -> term -> term| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   322
  \indexml{fold\_aterms}\verb|fold_aterms: (term -> 'a -> 'a) -> term -> 'a -> 'a| \\
20547
wenzelm
parents: 20543
diff changeset
   323
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   324
  \begin{mldecls}
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   325
  \indexml{fastype\_of}\verb|fastype_of: term -> typ| \\
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   326
  \indexml{lambda}\verb|lambda: term -> term -> term| \\
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   327
  \indexml{betapply}\verb|betapply: term * term -> term| \\
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29008
diff changeset
   328
  \indexml{Sign.declare\_const}\verb|Sign.declare_const: Properties.T -> (binding * typ) * mixfix ->|\isasep\isanewline%
24972
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   329
\verb|  theory -> term * theory| \\
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29008
diff changeset
   330
  \indexml{Sign.add\_abbrev}\verb|Sign.add_abbrev: string -> Properties.T -> binding * term ->|\isasep\isanewline%
24972
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   331
\verb|  theory -> (term * term) * theory| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   332
  \indexml{Sign.const\_typargs}\verb|Sign.const_typargs: theory -> string * typ -> typ list| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   333
  \indexml{Sign.const\_instance}\verb|Sign.const_instance: theory -> string * typ list -> typ| \\
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   334
  \end{mldecls}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   335
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   336
  \begin{description}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   337
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   338
  \item \verb|term| represents de-Bruijn terms, with comments in
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   339
  abstractions, and explicitly named free variables and constants;
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   340
  this is a datatype with constructors \verb|Bound|, \verb|Free|, \verb|Var|, \verb|Const|, \verb|Abs|, \verb|op $|.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   341
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   342
  \item \isa{t}~\verb|aconv|~\isa{u} checks \isa{{\isasymalpha}}-equivalence of two terms.  This is the basic equality relation
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   343
  on type \verb|term|; raw datatype equality should only be used
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   344
  for operations related to parsing or printing!
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   345
20547
wenzelm
parents: 20543
diff changeset
   346
  \item \verb|map_types|~\isa{f\ t} applies the mapping \isa{f} to all types occurring in \isa{t}.
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   347
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   348
  \item \verb|fold_types|~\isa{f\ t} iterates the operation \isa{f} over all occurrences of types in \isa{t}; the term
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   349
  structure is traversed from left to right.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   350
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   351
  \item \verb|map_aterms|~\isa{f\ t} applies the mapping \isa{f}
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   352
  to all atomic terms (\verb|Bound|, \verb|Free|, \verb|Var|, \verb|Const|) occurring in \isa{t}.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   353
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   354
  \item \verb|fold_aterms|~\isa{f\ t} iterates the operation \isa{f} over all occurrences of atomic terms (\verb|Bound|, \verb|Free|,
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   355
  \verb|Var|, \verb|Const|) in \isa{t}; the term structure is
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   356
  traversed from left to right.
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   357
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   358
  \item \verb|fastype_of|~\isa{t} determines the type of a
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   359
  well-typed term.  This operation is relatively slow, despite the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   360
  omission of any sanity checks.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   361
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   362
  \item \verb|lambda|~\isa{a\ b} produces an abstraction \isa{{\isasymlambda}a{\isachardot}\ b}, where occurrences of the atomic term \isa{a} in the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   363
  body \isa{b} are replaced by bound variables.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   364
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   365
  \item \verb|betapply|~\isa{{\isacharparenleft}t{\isacharcomma}\ u{\isacharparenright}} produces an application \isa{t\ u}, with topmost \isa{{\isasymbeta}}-conversion if \isa{t} is an
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   366
  abstraction.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   367
28110
9d121b171a0a Sign.declare_const: Name.binding;
wenzelm
parents: 28086
diff changeset
   368
  \item \verb|Sign.declare_const|~\isa{properties\ {\isacharparenleft}{\isacharparenleft}c{\isacharcomma}\ {\isasymsigma}{\isacharparenright}{\isacharcomma}\ mx{\isacharparenright}}
24972
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   369
  declares a new constant \isa{c\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} with optional mixfix
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   370
  syntax.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   371
24828
137c242e7277 updated Sign.add_abbrev;
wenzelm
parents: 22322
diff changeset
   372
  \item \verb|Sign.add_abbrev|~\isa{print{\isacharunderscore}mode\ properties\ {\isacharparenleft}c{\isacharcomma}\ t{\isacharparenright}}
21827
0b1d07f79c1e updated;
wenzelm
parents: 21324
diff changeset
   373
  introduces a new term abbreviation \isa{c\ {\isasymequiv}\ t}.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   374
20520
wenzelm
parents: 20519
diff changeset
   375
  \item \verb|Sign.const_typargs|~\isa{thy\ {\isacharparenleft}c{\isacharcomma}\ {\isasymtau}{\isacharparenright}} and \verb|Sign.const_instance|~\isa{thy\ {\isacharparenleft}c{\isacharcomma}\ {\isacharbrackleft}{\isasymtau}\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ {\isasymtau}\isactrlisub n{\isacharbrackright}{\isacharparenright}}
20543
wenzelm
parents: 20542
diff changeset
   376
  convert between two representations of polymorphic constants: full
wenzelm
parents: 20542
diff changeset
   377
  type instance vs.\ compact type arguments form.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   378
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   379
  \end{description}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   380
\end{isamarkuptext}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   381
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   382
%
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   383
\endisatagmlref
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   384
{\isafoldmlref}%
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   385
%
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   386
\isadelimmlref
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   387
%
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   388
\endisadelimmlref
5ede702cd2ca more on terms;
wenzelm
parents: 20502
diff changeset
   389
%
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   390
\isamarkupsection{Theorems \label{sec:thms}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   391
}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   392
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   393
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   394
\begin{isamarkuptext}%
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   395
\glossary{Proposition}{FIXME A \seeglossary{term} of
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   396
  \seeglossary{type} \isa{prop}.  Internally, there is nothing
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   397
  special about propositions apart from their type, but the concrete
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   398
  syntax enforces a clear distinction.  Propositions are structured
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   399
  via implication \isa{A\ {\isasymLongrightarrow}\ B} or universal quantification \isa{{\isasymAnd}x{\isachardot}\ B\ x} --- anything else is considered atomic.  The canonical
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   400
  form for propositions is that of a \seeglossary{Hereditary Harrop
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   401
  Formula}. FIXME}
20481
c96f80442ce6 updated;
wenzelm
parents: 20477
diff changeset
   402
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   403
  \glossary{Theorem}{A proven proposition within a certain theory and
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   404
  proof context, formally \isa{{\isasymGamma}\ {\isasymturnstile}\isactrlsub {\isasymTheta}\ {\isasymphi}}; both contexts are
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   405
  rarely spelled out explicitly.  Theorems are usually normalized
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   406
  according to the \seeglossary{HHF} format. FIXME}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   407
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   408
  \glossary{Fact}{Sometimes used interchangeably for
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   409
  \seeglossary{theorem}.  Strictly speaking, a list of theorems,
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   410
  essentially an extra-logical conjunction.  Facts emerge either as
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   411
  local assumptions, or as results of local goal statements --- both
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   412
  may be simultaneous, hence the list representation. FIXME}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   413
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   414
  \glossary{Schematic variable}{FIXME}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   415
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   416
  \glossary{Fixed variable}{A variable that is bound within a certain
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   417
  proof context; an arbitrary-but-fixed entity within a portion of
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   418
  proof text. FIXME}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   419
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   420
  \glossary{Free variable}{Synonymous for \seeglossary{fixed
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   421
  variable}. FIXME}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   422
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   423
  \glossary{Bound variable}{FIXME}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   424
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   425
  \glossary{Variable}{See \seeglossary{schematic variable},
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   426
  \seeglossary{fixed variable}, \seeglossary{bound variable}, or
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   427
  \seeglossary{type variable}.  The distinguishing feature of
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   428
  different variables is their binding scope. FIXME}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   429
20543
wenzelm
parents: 20542
diff changeset
   430
  A \emph{proposition} is a well-typed term of type \isa{prop}, a
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   431
  \emph{theorem} is a proven proposition (depending on a context of
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   432
  hypotheses and the background theory).  Primitive inferences include
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   433
  plain natural deduction rules for the primary connectives \isa{{\isasymAnd}} and \isa{{\isasymLongrightarrow}} of the framework.  There is also a builtin
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   434
  notion of equality/equivalence \isa{{\isasymequiv}}.%
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   435
\end{isamarkuptext}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   436
\isamarkuptrue%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   437
%
26873
691f35f855cd updated generated file;
wenzelm
parents: 26854
diff changeset
   438
\isamarkupsubsection{Primitive connectives and rules \label{sec:prim-rules}%
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   439
}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   440
\isamarkuptrue%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   441
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   442
\begin{isamarkuptext}%
20543
wenzelm
parents: 20542
diff changeset
   443
The theory \isa{Pure} contains constant declarations for the
wenzelm
parents: 20542
diff changeset
   444
  primitive connectives \isa{{\isasymAnd}}, \isa{{\isasymLongrightarrow}}, and \isa{{\isasymequiv}} of
wenzelm
parents: 20542
diff changeset
   445
  the logical framework, see \figref{fig:pure-connectives}.  The
wenzelm
parents: 20542
diff changeset
   446
  derivability judgment \isa{A\isactrlisub {\isadigit{1}}{\isacharcomma}\ {\isasymdots}{\isacharcomma}\ A\isactrlisub n\ {\isasymturnstile}\ B} is
wenzelm
parents: 20542
diff changeset
   447
  defined inductively by the primitive inferences given in
wenzelm
parents: 20542
diff changeset
   448
  \figref{fig:prim-rules}, with the global restriction that the
wenzelm
parents: 20542
diff changeset
   449
  hypotheses must \emph{not} contain any schematic variables.  The
wenzelm
parents: 20542
diff changeset
   450
  builtin equality is conceptually axiomatized as shown in
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   451
  \figref{fig:pure-equality}, although the implementation works
20543
wenzelm
parents: 20542
diff changeset
   452
  directly with derived inferences.
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   453
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   454
  \begin{figure}[htb]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   455
  \begin{center}
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   456
  \begin{tabular}{ll}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   457
  \isa{all\ {\isacharcolon}{\isacharcolon}\ {\isacharparenleft}{\isasymalpha}\ {\isasymRightarrow}\ prop{\isacharparenright}\ {\isasymRightarrow}\ prop} & universal quantification (binder \isa{{\isasymAnd}}) \\
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   458
  \isa{{\isasymLongrightarrow}\ {\isacharcolon}{\isacharcolon}\ prop\ {\isasymRightarrow}\ prop\ {\isasymRightarrow}\ prop} & implication (right associative infix) \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   459
  \isa{{\isasymequiv}\ {\isacharcolon}{\isacharcolon}\ {\isasymalpha}\ {\isasymRightarrow}\ {\isasymalpha}\ {\isasymRightarrow}\ prop} & equality relation (infix) \\
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   460
  \end{tabular}
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   461
  \caption{Primitive connectives of Pure}\label{fig:pure-connectives}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   462
  \end{center}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   463
  \end{figure}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   464
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   465
  \begin{figure}[htb]
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   466
  \begin{center}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   467
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   468
  \infer[\isa{{\isacharparenleft}axiom{\isacharparenright}}]{\isa{{\isasymturnstile}\ A}}{\isa{A\ {\isasymin}\ {\isasymTheta}}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   469
  \qquad
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   470
  \infer[\isa{{\isacharparenleft}assume{\isacharparenright}}]{\isa{A\ {\isasymturnstile}\ A}}{}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   471
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   472
  \[
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   473
  \infer[\isa{{\isacharparenleft}{\isasymAnd}{\isacharunderscore}intro{\isacharparenright}}]{\isa{{\isasymGamma}\ {\isasymturnstile}\ {\isasymAnd}x{\isachardot}\ b{\isacharbrackleft}x{\isacharbrackright}}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ b{\isacharbrackleft}x{\isacharbrackright}} & \isa{x\ {\isasymnotin}\ {\isasymGamma}}}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   474
  \qquad
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   475
  \infer[\isa{{\isacharparenleft}{\isasymAnd}{\isacharunderscore}elim{\isacharparenright}}]{\isa{{\isasymGamma}\ {\isasymturnstile}\ b{\isacharbrackleft}a{\isacharbrackright}}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ {\isasymAnd}x{\isachardot}\ b{\isacharbrackleft}x{\isacharbrackright}}}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   476
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   477
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   478
  \infer[\isa{{\isacharparenleft}{\isasymLongrightarrow}{\isacharunderscore}intro{\isacharparenright}}]{\isa{{\isasymGamma}\ {\isacharminus}\ A\ {\isasymturnstile}\ A\ {\isasymLongrightarrow}\ B}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ B}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   479
  \qquad
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   480
  \infer[\isa{{\isacharparenleft}{\isasymLongrightarrow}{\isacharunderscore}elim{\isacharparenright}}]{\isa{{\isasymGamma}\isactrlsub {\isadigit{1}}\ {\isasymunion}\ {\isasymGamma}\isactrlsub {\isadigit{2}}\ {\isasymturnstile}\ B}}{\isa{{\isasymGamma}\isactrlsub {\isadigit{1}}\ {\isasymturnstile}\ A\ {\isasymLongrightarrow}\ B} & \isa{{\isasymGamma}\isactrlsub {\isadigit{2}}\ {\isasymturnstile}\ A}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   481
  \]
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   482
  \caption{Primitive inferences of Pure}\label{fig:prim-rules}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   483
  \end{center}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   484
  \end{figure}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   485
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   486
  \begin{figure}[htb]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   487
  \begin{center}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   488
  \begin{tabular}{ll}
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   489
  \isa{{\isasymturnstile}\ {\isacharparenleft}{\isasymlambda}x{\isachardot}\ b{\isacharbrackleft}x{\isacharbrackright}{\isacharparenright}\ a\ {\isasymequiv}\ b{\isacharbrackleft}a{\isacharbrackright}} & \isa{{\isasymbeta}}-conversion \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   490
  \isa{{\isasymturnstile}\ x\ {\isasymequiv}\ x} & reflexivity \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   491
  \isa{{\isasymturnstile}\ x\ {\isasymequiv}\ y\ {\isasymLongrightarrow}\ P\ x\ {\isasymLongrightarrow}\ P\ y} & substitution \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   492
  \isa{{\isasymturnstile}\ {\isacharparenleft}{\isasymAnd}x{\isachardot}\ f\ x\ {\isasymequiv}\ g\ x{\isacharparenright}\ {\isasymLongrightarrow}\ f\ {\isasymequiv}\ g} & extensionality \\
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   493
  \isa{{\isasymturnstile}\ {\isacharparenleft}A\ {\isasymLongrightarrow}\ B{\isacharparenright}\ {\isasymLongrightarrow}\ {\isacharparenleft}B\ {\isasymLongrightarrow}\ A{\isacharparenright}\ {\isasymLongrightarrow}\ A\ {\isasymequiv}\ B} & logical equivalence \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   494
  \end{tabular}
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   495
  \caption{Conceptual axiomatization of Pure equality}\label{fig:pure-equality}
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   496
  \end{center}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   497
  \end{figure}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   498
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   499
  The introduction and elimination rules for \isa{{\isasymAnd}} and \isa{{\isasymLongrightarrow}} are analogous to formation of dependently typed \isa{{\isasymlambda}}-terms representing the underlying proof objects.  Proof terms
20543
wenzelm
parents: 20542
diff changeset
   500
  are irrelevant in the Pure logic, though; they cannot occur within
wenzelm
parents: 20542
diff changeset
   501
  propositions.  The system provides a runtime option to record
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   502
  explicit proof terms for primitive inferences.  Thus all three
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   503
  levels of \isa{{\isasymlambda}}-calculus become explicit: \isa{{\isasymRightarrow}} for
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   504
  terms, and \isa{{\isasymAnd}{\isacharslash}{\isasymLongrightarrow}} for proofs (cf.\
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   505
  \cite{Berghofer-Nipkow:2000:TPHOL}).
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   506
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   507
  Observe that locally fixed parameters (as in \isa{{\isasymAnd}{\isacharunderscore}intro}) need
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   508
  not be recorded in the hypotheses, because the simple syntactic
20543
wenzelm
parents: 20542
diff changeset
   509
  types of Pure are always inhabitable.  ``Assumptions'' \isa{x\ {\isacharcolon}{\isacharcolon}\ {\isasymtau}} for type-membership are only present as long as some \isa{x\isactrlisub {\isasymtau}} occurs in the statement body.\footnote{This is the key
wenzelm
parents: 20542
diff changeset
   510
  difference to ``\isa{{\isasymlambda}HOL}'' in the PTS framework
wenzelm
parents: 20542
diff changeset
   511
  \cite{Barendregt-Geuvers:2001}, where hypotheses \isa{x\ {\isacharcolon}\ A} are
wenzelm
parents: 20542
diff changeset
   512
  treated uniformly for propositions and types.}
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   513
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   514
  \medskip The axiomatization of a theory is implicitly closed by
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   515
  forming all instances of type and term variables: \isa{{\isasymturnstile}\ A{\isasymvartheta}} holds for any substitution instance of an axiom
20543
wenzelm
parents: 20542
diff changeset
   516
  \isa{{\isasymturnstile}\ A}.  By pushing substitutions through derivations
wenzelm
parents: 20542
diff changeset
   517
  inductively, we also get admissible \isa{generalize} and \isa{instance} rules as shown in \figref{fig:subst-rules}.
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   518
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   519
  \begin{figure}[htb]
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   520
  \begin{center}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   521
  \[
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   522
  \infer{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}{\isacharquery}{\isasymalpha}{\isacharbrackright}}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}{\isasymalpha}{\isacharbrackright}} & \isa{{\isasymalpha}\ {\isasymnotin}\ {\isasymGamma}}}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   523
  \quad
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   524
  \infer[\quad\isa{{\isacharparenleft}generalize{\isacharparenright}}]{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}{\isacharquery}x{\isacharbrackright}}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}x{\isacharbrackright}} & \isa{x\ {\isasymnotin}\ {\isasymGamma}}}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   525
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   526
  \[
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   527
  \infer{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}{\isasymtau}{\isacharbrackright}}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}{\isacharquery}{\isasymalpha}{\isacharbrackright}}}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   528
  \quad
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   529
  \infer[\quad\isa{{\isacharparenleft}instantiate{\isacharparenright}}]{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}t{\isacharbrackright}}}{\isa{{\isasymGamma}\ {\isasymturnstile}\ B{\isacharbrackleft}{\isacharquery}x{\isacharbrackright}}}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   530
  \]
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   531
  \caption{Admissible substitution rules}\label{fig:subst-rules}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   532
  \end{center}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   533
  \end{figure}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   534
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   535
  Note that \isa{instantiate} does not require an explicit
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   536
  side-condition, because \isa{{\isasymGamma}} may never contain schematic
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   537
  variables.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   538
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   539
  In principle, variables could be substituted in hypotheses as well,
20543
wenzelm
parents: 20542
diff changeset
   540
  but this would disrupt the monotonicity of reasoning: deriving
wenzelm
parents: 20542
diff changeset
   541
  \isa{{\isasymGamma}{\isasymvartheta}\ {\isasymturnstile}\ B{\isasymvartheta}} from \isa{{\isasymGamma}\ {\isasymturnstile}\ B} is
wenzelm
parents: 20542
diff changeset
   542
  correct, but \isa{{\isasymGamma}{\isasymvartheta}\ {\isasymsupseteq}\ {\isasymGamma}} does not necessarily hold:
wenzelm
parents: 20542
diff changeset
   543
  the result belongs to a different proof context.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   544
20543
wenzelm
parents: 20542
diff changeset
   545
  \medskip An \emph{oracle} is a function that produces axioms on the
wenzelm
parents: 20542
diff changeset
   546
  fly.  Logically, this is an instance of the \isa{axiom} rule
wenzelm
parents: 20542
diff changeset
   547
  (\figref{fig:prim-rules}), but there is an operational difference.
wenzelm
parents: 20542
diff changeset
   548
  The system always records oracle invocations within derivations of
wenzelm
parents: 20542
diff changeset
   549
  theorems.  Tracing plain axioms (and named theorems) is optional.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   550
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   551
  Axiomatizations should be limited to the bare minimum, typically as
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   552
  part of the initial logical basis of an object-logic formalization.
20543
wenzelm
parents: 20542
diff changeset
   553
  Later on, theories are usually developed in a strictly definitional
wenzelm
parents: 20542
diff changeset
   554
  fashion, by stating only certain equalities over new constants.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   555
20543
wenzelm
parents: 20542
diff changeset
   556
  A \emph{simple definition} consists of a constant declaration \isa{c\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} together with an axiom \isa{{\isasymturnstile}\ c\ {\isasymequiv}\ t}, where \isa{t\ {\isacharcolon}{\isacharcolon}\ {\isasymsigma}} is a closed term without any hidden polymorphism.  The RHS
wenzelm
parents: 20542
diff changeset
   557
  may depend on further defined constants, but not \isa{c} itself.
wenzelm
parents: 20542
diff changeset
   558
  Definitions of functions may be presented as \isa{c\ \isactrlvec x\ {\isasymequiv}\ t} instead of the puristic \isa{c\ {\isasymequiv}\ {\isasymlambda}\isactrlvec x{\isachardot}\ t}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   559
20543
wenzelm
parents: 20542
diff changeset
   560
  An \emph{overloaded definition} consists of a collection of axioms
wenzelm
parents: 20542
diff changeset
   561
  for the same constant, with zero or one equations \isa{c{\isacharparenleft}{\isacharparenleft}\isactrlvec {\isasymalpha}{\isacharparenright}{\isasymkappa}{\isacharparenright}\ {\isasymequiv}\ t} for each type constructor \isa{{\isasymkappa}} (for
wenzelm
parents: 20542
diff changeset
   562
  distinct variables \isa{\isactrlvec {\isasymalpha}}).  The RHS may mention
wenzelm
parents: 20542
diff changeset
   563
  previously defined constants as above, or arbitrary constants \isa{d{\isacharparenleft}{\isasymalpha}\isactrlisub i{\isacharparenright}} for some \isa{{\isasymalpha}\isactrlisub i} projected from \isa{\isactrlvec {\isasymalpha}}.  Thus overloaded definitions essentially work by
wenzelm
parents: 20542
diff changeset
   564
  primitive recursion over the syntactic structure of a single type
wenzelm
parents: 20542
diff changeset
   565
  argument.%
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   566
\end{isamarkuptext}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   567
\isamarkuptrue%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   568
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   569
\isadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   570
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   571
\endisadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   572
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   573
\isatagmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   574
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   575
\begin{isamarkuptext}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   576
\begin{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   577
  \indexmltype{ctyp}\verb|type ctyp| \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   578
  \indexmltype{cterm}\verb|type cterm| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   579
  \indexml{Thm.ctyp\_of}\verb|Thm.ctyp_of: theory -> typ -> ctyp| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   580
  \indexml{Thm.cterm\_of}\verb|Thm.cterm_of: theory -> term -> cterm| \\
20547
wenzelm
parents: 20543
diff changeset
   581
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   582
  \begin{mldecls}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   583
  \indexmltype{thm}\verb|type thm| \\
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   584
  \indexml{proofs}\verb|proofs: int ref| \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   585
  \indexml{Thm.assume}\verb|Thm.assume: cterm -> thm| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   586
  \indexml{Thm.forall\_intr}\verb|Thm.forall_intr: cterm -> thm -> thm| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   587
  \indexml{Thm.forall\_elim}\verb|Thm.forall_elim: cterm -> thm -> thm| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   588
  \indexml{Thm.implies\_intr}\verb|Thm.implies_intr: cterm -> thm -> thm| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   589
  \indexml{Thm.implies\_elim}\verb|Thm.implies_elim: thm -> thm -> thm| \\
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   590
  \indexml{Thm.generalize}\verb|Thm.generalize: string list * string list -> int -> thm -> thm| \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   591
  \indexml{Thm.instantiate}\verb|Thm.instantiate: (ctyp * ctyp) list * (cterm * cterm) list -> thm -> thm| \\
28786
de95d007eaed updated generated files;
wenzelm
parents: 28291
diff changeset
   592
  \indexml{Thm.axiom}\verb|Thm.axiom: theory -> string -> thm| \\
28291
c49b328d689d updated generated file;
wenzelm
parents: 28110
diff changeset
   593
  \indexml{Thm.add\_oracle}\verb|Thm.add_oracle: bstring * ('a -> cterm) -> theory|\isasep\isanewline%
c49b328d689d updated generated file;
wenzelm
parents: 28110
diff changeset
   594
\verb|  -> (string * ('a -> thm)) * theory| \\
20547
wenzelm
parents: 20543
diff changeset
   595
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   596
  \begin{mldecls}
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   597
  \indexml{Theory.add\_axioms\_i}\verb|Theory.add_axioms_i: (string * term) list -> theory -> theory| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   598
  \indexml{Theory.add\_deps}\verb|Theory.add_deps: string -> string * typ -> (string * typ) list -> theory -> theory| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   599
  \indexml{Theory.add\_defs\_i}\verb|Theory.add_defs_i: bool -> bool -> (bstring * term) list -> theory -> theory| \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   600
  \end{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   601
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   602
  \begin{description}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   603
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   604
  \item \verb|ctyp| and \verb|cterm| represent certified types
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   605
  and terms, respectively.  These are abstract datatypes that
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   606
  guarantee that its values have passed the full well-formedness (and
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   607
  well-typedness) checks, relative to the declarations of type
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   608
  constructors, constants etc. in the theory.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   609
20547
wenzelm
parents: 20543
diff changeset
   610
  \item \verb|ctyp_of|~\isa{thy\ {\isasymtau}} and \verb|cterm_of|~\isa{thy\ t} explicitly checks types and terms, respectively.  This also
wenzelm
parents: 20543
diff changeset
   611
  involves some basic normalizations, such expansion of type and term
wenzelm
parents: 20543
diff changeset
   612
  abbreviations from the theory context.
wenzelm
parents: 20543
diff changeset
   613
wenzelm
parents: 20543
diff changeset
   614
  Re-certification is relatively slow and should be avoided in tight
wenzelm
parents: 20543
diff changeset
   615
  reasoning loops.  There are separate operations to decompose
wenzelm
parents: 20543
diff changeset
   616
  certified entities (including actual theorems).
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   617
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   618
  \item \verb|thm| represents proven propositions.  This is an
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   619
  abstract datatype that guarantees that its values have been
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   620
  constructed by basic principles of the \verb|Thm| module.
20543
wenzelm
parents: 20542
diff changeset
   621
  Every \verb|thm| value contains a sliding back-reference to the
wenzelm
parents: 20542
diff changeset
   622
  enclosing theory, cf.\ \secref{sec:context-theory}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   623
20543
wenzelm
parents: 20542
diff changeset
   624
  \item \verb|proofs| determines the detail of proof recording within
wenzelm
parents: 20542
diff changeset
   625
  \verb|thm| values: \verb|0| records only oracles, \verb|1| records
wenzelm
parents: 20542
diff changeset
   626
  oracles, axioms and named theorems, \verb|2| records full proof
wenzelm
parents: 20542
diff changeset
   627
  terms.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   628
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   629
  \item \verb|Thm.assume|, \verb|Thm.forall_intr|, \verb|Thm.forall_elim|, \verb|Thm.implies_intr|, and \verb|Thm.implies_elim|
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   630
  correspond to the primitive inferences of \figref{fig:prim-rules}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   631
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   632
  \item \verb|Thm.generalize|~\isa{{\isacharparenleft}\isactrlvec {\isasymalpha}{\isacharcomma}\ \isactrlvec x{\isacharparenright}}
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   633
  corresponds to the \isa{generalize} rules of
20543
wenzelm
parents: 20542
diff changeset
   634
  \figref{fig:subst-rules}.  Here collections of type and term
wenzelm
parents: 20542
diff changeset
   635
  variables are generalized simultaneously, specified by the given
wenzelm
parents: 20542
diff changeset
   636
  basic names.
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   637
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   638
  \item \verb|Thm.instantiate|~\isa{{\isacharparenleft}\isactrlvec {\isasymalpha}\isactrlisub s{\isacharcomma}\ \isactrlvec x\isactrlisub {\isasymtau}{\isacharparenright}} corresponds to the \isa{instantiate} rules
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   639
  of \figref{fig:subst-rules}.  Type variables are substituted before
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   640
  term variables.  Note that the types in \isa{\isactrlvec x\isactrlisub {\isasymtau}}
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   641
  refer to the instantiated versions.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   642
28786
de95d007eaed updated generated files;
wenzelm
parents: 28291
diff changeset
   643
  \item \verb|Thm.axiom|~\isa{thy\ name} retrieves a named
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   644
  axiom, cf.\ \isa{axiom} in \figref{fig:prim-rules}.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   645
28291
c49b328d689d updated generated file;
wenzelm
parents: 28110
diff changeset
   646
  \item \verb|Thm.add_oracle|~\isa{{\isacharparenleft}name{\isacharcomma}\ oracle{\isacharparenright}} produces a named
c49b328d689d updated generated file;
wenzelm
parents: 28110
diff changeset
   647
  oracle rule, essentially generating arbitrary axioms on the fly,
c49b328d689d updated generated file;
wenzelm
parents: 28110
diff changeset
   648
  cf.\ \isa{axiom} in \figref{fig:prim-rules}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   649
20543
wenzelm
parents: 20542
diff changeset
   650
  \item \verb|Theory.add_axioms_i|~\isa{{\isacharbrackleft}{\isacharparenleft}name{\isacharcomma}\ A{\isacharparenright}{\isacharcomma}\ {\isasymdots}{\isacharbrackright}} declares
wenzelm
parents: 20542
diff changeset
   651
  arbitrary propositions as axioms.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   652
20543
wenzelm
parents: 20542
diff changeset
   653
  \item \verb|Theory.add_deps|~\isa{name\ c\isactrlisub {\isasymtau}\ \isactrlvec d\isactrlisub {\isasymsigma}} declares dependencies of a named specification
wenzelm
parents: 20542
diff changeset
   654
  for constant \isa{c\isactrlisub {\isasymtau}}, relative to existing
wenzelm
parents: 20542
diff changeset
   655
  specifications for constants \isa{\isactrlvec d\isactrlisub {\isasymsigma}}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   656
20543
wenzelm
parents: 20542
diff changeset
   657
  \item \verb|Theory.add_defs_i|~\isa{unchecked\ overloaded\ {\isacharbrackleft}{\isacharparenleft}name{\isacharcomma}\ c\ \isactrlvec x\ {\isasymequiv}\ t{\isacharparenright}{\isacharcomma}\ {\isasymdots}{\isacharbrackright}} states a definitional axiom for an existing
wenzelm
parents: 20542
diff changeset
   658
  constant \isa{c}.  Dependencies are recorded (cf.\ \verb|Theory.add_deps|), unless the \isa{unchecked} option is set.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   659
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   660
  \end{description}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   661
\end{isamarkuptext}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   662
\isamarkuptrue%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   663
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   664
\endisatagmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   665
{\isafoldmlref}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   666
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   667
\isadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   668
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   669
\endisadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   670
%
20543
wenzelm
parents: 20542
diff changeset
   671
\isamarkupsubsection{Auxiliary definitions%
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   672
}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   673
\isamarkuptrue%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   674
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   675
\begin{isamarkuptext}%
20543
wenzelm
parents: 20542
diff changeset
   676
Theory \isa{Pure} provides a few auxiliary definitions, see
wenzelm
parents: 20542
diff changeset
   677
  \figref{fig:pure-aux}.  These special constants are normally not
wenzelm
parents: 20542
diff changeset
   678
  exposed to the user, but appear in internal encodings.
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   679
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   680
  \begin{figure}[htb]
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   681
  \begin{center}
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   682
  \begin{tabular}{ll}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   683
  \isa{conjunction\ {\isacharcolon}{\isacharcolon}\ prop\ {\isasymRightarrow}\ prop\ {\isasymRightarrow}\ prop} & (infix \isa{{\isacharampersand}}) \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   684
  \isa{{\isasymturnstile}\ A\ {\isacharampersand}\ B\ {\isasymequiv}\ {\isacharparenleft}{\isasymAnd}C{\isachardot}\ {\isacharparenleft}A\ {\isasymLongrightarrow}\ B\ {\isasymLongrightarrow}\ C{\isacharparenright}\ {\isasymLongrightarrow}\ C{\isacharparenright}} \\[1ex]
20543
wenzelm
parents: 20542
diff changeset
   685
  \isa{prop\ {\isacharcolon}{\isacharcolon}\ prop\ {\isasymRightarrow}\ prop} & (prefix \isa{{\isacharhash}}, suppressed) \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   686
  \isa{{\isacharhash}A\ {\isasymequiv}\ A} \\[1ex]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   687
  \isa{term\ {\isacharcolon}{\isacharcolon}\ {\isasymalpha}\ {\isasymRightarrow}\ prop} & (prefix \isa{TERM}) \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   688
  \isa{term\ x\ {\isasymequiv}\ {\isacharparenleft}{\isasymAnd}A{\isachardot}\ A\ {\isasymLongrightarrow}\ A{\isacharparenright}} \\[1ex]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   689
  \isa{TYPE\ {\isacharcolon}{\isacharcolon}\ {\isasymalpha}\ itself} & (prefix \isa{TYPE}) \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   690
  \isa{{\isacharparenleft}unspecified{\isacharparenright}} \\
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   691
  \end{tabular}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   692
  \caption{Definitions of auxiliary connectives}\label{fig:pure-aux}
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   693
  \end{center}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   694
  \end{figure}
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   695
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   696
  Derived conjunction rules include introduction \isa{A\ {\isasymLongrightarrow}\ B\ {\isasymLongrightarrow}\ A\ {\isacharampersand}\ B}, and destructions \isa{A\ {\isacharampersand}\ B\ {\isasymLongrightarrow}\ A} and \isa{A\ {\isacharampersand}\ B\ {\isasymLongrightarrow}\ B}.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   697
  Conjunction allows to treat simultaneous assumptions and conclusions
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   698
  uniformly.  For example, multiple claims are intermediately
20543
wenzelm
parents: 20542
diff changeset
   699
  represented as explicit conjunction, but this is refined into
wenzelm
parents: 20542
diff changeset
   700
  separate sub-goals before the user continues the proof; the final
wenzelm
parents: 20542
diff changeset
   701
  result is projected into a list of theorems (cf.\
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   702
  \secref{sec:tactical-goals}).
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   703
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   704
  The \isa{prop} marker (\isa{{\isacharhash}}) makes arbitrarily complex
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   705
  propositions appear as atomic, without changing the meaning: \isa{{\isasymGamma}\ {\isasymturnstile}\ A} and \isa{{\isasymGamma}\ {\isasymturnstile}\ {\isacharhash}A} are interchangeable.  See
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   706
  \secref{sec:tactical-goals} for specific operations.
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   707
20543
wenzelm
parents: 20542
diff changeset
   708
  The \isa{term} marker turns any well-typed term into a derivable
wenzelm
parents: 20542
diff changeset
   709
  proposition: \isa{{\isasymturnstile}\ TERM\ t} holds unconditionally.  Although
wenzelm
parents: 20542
diff changeset
   710
  this is logically vacuous, it allows to treat terms and proofs
wenzelm
parents: 20542
diff changeset
   711
  uniformly, similar to a type-theoretic framework.
20502
08d227db6c74 updated;
wenzelm
parents: 20499
diff changeset
   712
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   713
  The \isa{TYPE} constructor is the canonical representative of
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   714
  the unspecified type \isa{{\isasymalpha}\ itself}; it essentially injects the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   715
  language of types into that of terms.  There is specific notation
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   716
  \isa{TYPE{\isacharparenleft}{\isasymtau}{\isacharparenright}} for \isa{TYPE\isactrlbsub {\isasymtau}\ itself\isactrlesub }.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   717
  Although being devoid of any particular meaning, the \isa{TYPE{\isacharparenleft}{\isasymtau}{\isacharparenright}} accounts for the type \isa{{\isasymtau}} within the term
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   718
  language.  In particular, \isa{TYPE{\isacharparenleft}{\isasymalpha}{\isacharparenright}} may be used as formal
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   719
  argument in primitive definitions, in order to circumvent hidden
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   720
  polymorphism (cf.\ \secref{sec:terms}).  For example, \isa{c\ TYPE{\isacharparenleft}{\isasymalpha}{\isacharparenright}\ {\isasymequiv}\ A{\isacharbrackleft}{\isasymalpha}{\isacharbrackright}} defines \isa{c\ {\isacharcolon}{\isacharcolon}\ {\isasymalpha}\ itself\ {\isasymRightarrow}\ prop} in terms of
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   721
  a proposition \isa{A} that depends on an additional type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   722
  argument, which is essentially a predicate on types.%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   723
\end{isamarkuptext}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   724
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   725
%
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   726
\isadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   727
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   728
\endisadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   729
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   730
\isatagmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   731
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   732
\begin{isamarkuptext}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   733
\begin{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   734
  \indexml{Conjunction.intr}\verb|Conjunction.intr: thm -> thm -> thm| \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   735
  \indexml{Conjunction.elim}\verb|Conjunction.elim: thm -> thm * thm| \\
26854
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   736
  \indexml{Drule.mk\_term}\verb|Drule.mk_term: cterm -> thm| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   737
  \indexml{Drule.dest\_term}\verb|Drule.dest_term: thm -> cterm| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   738
  \indexml{Logic.mk\_type}\verb|Logic.mk_type: typ -> term| \\
9b4aec46ad78 improved treatment of "_" thanks to underscore.sty;
wenzelm
parents: 24972
diff changeset
   739
  \indexml{Logic.dest\_type}\verb|Logic.dest_type: term -> typ| \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   740
  \end{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   741
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   742
  \begin{description}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   743
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   744
  \item \verb|Conjunction.intr| derives \isa{A\ {\isacharampersand}\ B} from \isa{A} and \isa{B}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   745
20543
wenzelm
parents: 20542
diff changeset
   746
  \item \verb|Conjunction.elim| derives \isa{A} and \isa{B}
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   747
  from \isa{A\ {\isacharampersand}\ B}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   748
20543
wenzelm
parents: 20542
diff changeset
   749
  \item \verb|Drule.mk_term| derives \isa{TERM\ t}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   750
20543
wenzelm
parents: 20542
diff changeset
   751
  \item \verb|Drule.dest_term| recovers term \isa{t} from \isa{TERM\ t}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   752
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   753
  \item \verb|Logic.mk_type|~\isa{{\isasymtau}} produces the term \isa{TYPE{\isacharparenleft}{\isasymtau}{\isacharparenright}}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   754
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   755
  \item \verb|Logic.dest_type|~\isa{TYPE{\isacharparenleft}{\isasymtau}{\isacharparenright}} recovers the type
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   756
  \isa{{\isasymtau}}.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   757
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   758
  \end{description}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   759
\end{isamarkuptext}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   760
\isamarkuptrue%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   761
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   762
\endisatagmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   763
{\isafoldmlref}%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   764
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   765
\isadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   766
%
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   767
\endisadelimmlref
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   768
%
28786
de95d007eaed updated generated files;
wenzelm
parents: 28291
diff changeset
   769
\isamarkupsection{Object-level rules \label{sec:obj-rules}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   770
}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   771
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   772
%
20929
wenzelm
parents: 20547
diff changeset
   773
\isadelimFIXME
wenzelm
parents: 20547
diff changeset
   774
%
wenzelm
parents: 20547
diff changeset
   775
\endisadelimFIXME
wenzelm
parents: 20547
diff changeset
   776
%
wenzelm
parents: 20547
diff changeset
   777
\isatagFIXME
wenzelm
parents: 20547
diff changeset
   778
%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   779
\begin{isamarkuptext}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   780
FIXME
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   781
20491
wenzelm
parents: 20481
diff changeset
   782
  A \emph{rule} is any Pure theorem in HHF normal form; there is a
wenzelm
parents: 20481
diff changeset
   783
  separate calculus for rule composition, which is modeled after
wenzelm
parents: 20481
diff changeset
   784
  Gentzen's Natural Deduction \cite{Gentzen:1935}, but allows
wenzelm
parents: 20481
diff changeset
   785
  rules to be nested arbitrarily, similar to \cite{extensions91}.
wenzelm
parents: 20481
diff changeset
   786
wenzelm
parents: 20481
diff changeset
   787
  Normally, all theorems accessible to the user are proper rules.
wenzelm
parents: 20481
diff changeset
   788
  Low-level inferences are occasional required internally, but the
wenzelm
parents: 20481
diff changeset
   789
  result should be always presented in canonical form.  The higher
wenzelm
parents: 20481
diff changeset
   790
  interfaces of Isabelle/Isar will always produce proper rules.  It is
wenzelm
parents: 20481
diff changeset
   791
  important to maintain this invariant in add-on applications!
wenzelm
parents: 20481
diff changeset
   792
wenzelm
parents: 20481
diff changeset
   793
  There are two main principles of rule composition: \isa{resolution} (i.e.\ backchaining of rules) and \isa{by{\isacharminus}assumption} (i.e.\ closing a branch); both principles are
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   794
  combined in the variants of \isa{elim{\isacharminus}resolution} and \isa{dest{\isacharminus}resolution}.  Raw \isa{composition} is occasionally
20491
wenzelm
parents: 20481
diff changeset
   795
  useful as well, also it is strictly speaking outside of the proper
wenzelm
parents: 20481
diff changeset
   796
  rule calculus.
wenzelm
parents: 20481
diff changeset
   797
wenzelm
parents: 20481
diff changeset
   798
  Rules are treated modulo general higher-order unification, which is
wenzelm
parents: 20481
diff changeset
   799
  unification modulo the equational theory of \isa{{\isasymalpha}{\isasymbeta}{\isasymeta}}-conversion
wenzelm
parents: 20481
diff changeset
   800
  on \isa{{\isasymlambda}}-terms.  Moreover, propositions are understood modulo
wenzelm
parents: 20481
diff changeset
   801
  the (derived) equivalence \isa{{\isacharparenleft}A\ {\isasymLongrightarrow}\ {\isacharparenleft}{\isasymAnd}x{\isachardot}\ B\ x{\isacharparenright}{\isacharparenright}\ {\isasymequiv}\ {\isacharparenleft}{\isasymAnd}x{\isachardot}\ A\ {\isasymLongrightarrow}\ B\ x{\isacharparenright}}.
wenzelm
parents: 20481
diff changeset
   802
wenzelm
parents: 20481
diff changeset
   803
  This means that any operations within the rule calculus may be
wenzelm
parents: 20481
diff changeset
   804
  subject to spontaneous \isa{{\isasymalpha}{\isasymbeta}{\isasymeta}}-HHF conversions.  It is common
wenzelm
parents: 20481
diff changeset
   805
  practice not to contract or expand unnecessarily.  Some mechanisms
wenzelm
parents: 20481
diff changeset
   806
  prefer an one form, others the opposite, so there is a potential
wenzelm
parents: 20481
diff changeset
   807
  danger to produce some oscillation!
wenzelm
parents: 20481
diff changeset
   808
wenzelm
parents: 20481
diff changeset
   809
  Only few operations really work \emph{modulo} HHF conversion, but
wenzelm
parents: 20481
diff changeset
   810
  expect a normal form: quantifiers \isa{{\isasymAnd}} before implications
wenzelm
parents: 20481
diff changeset
   811
  \isa{{\isasymLongrightarrow}} at each level of nesting.
wenzelm
parents: 20481
diff changeset
   812
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   813
\glossary{Hereditary Harrop Formula}{The set of propositions in HHF
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   814
format is defined inductively as \isa{H\ {\isacharequal}\ {\isacharparenleft}{\isasymAnd}x\isactrlsup {\isacharasterisk}{\isachardot}\ H\isactrlsup {\isacharasterisk}\ {\isasymLongrightarrow}\ A{\isacharparenright}}, for variables \isa{x} and atomic propositions \isa{A}.
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   815
Any proposition may be put into HHF form by normalizing with the rule
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   816
\isa{{\isacharparenleft}A\ {\isasymLongrightarrow}\ {\isacharparenleft}{\isasymAnd}x{\isachardot}\ B\ x{\isacharparenright}{\isacharparenright}\ {\isasymequiv}\ {\isacharparenleft}{\isasymAnd}x{\isachardot}\ A\ {\isasymLongrightarrow}\ B\ x{\isacharparenright}}.  In Isabelle, the outermost
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   817
quantifier prefix is represented via \seeglossary{schematic
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   818
variables}, such that the top-level structure is merely that of a
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   819
\seeglossary{Horn Clause}}.
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   820
20499
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   821
\glossary{HHF}{See \seeglossary{Hereditary Harrop Formula}.}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   822
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   823
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   824
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   825
  \infer[\isa{{\isacharparenleft}assumption{\isacharparenright}}]{\isa{C{\isasymvartheta}}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   826
  {\isa{{\isacharparenleft}{\isasymAnd}\isactrlvec x{\isachardot}\ \isactrlvec H\ \isactrlvec x\ {\isasymLongrightarrow}\ A\ \isactrlvec x{\isacharparenright}\ {\isasymLongrightarrow}\ C} & \isa{A{\isasymvartheta}\ {\isacharequal}\ H\isactrlsub i{\isasymvartheta}}~~\text{(for some~\isa{i})}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   827
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   828
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   829
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   830
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   831
  \infer[\isa{{\isacharparenleft}compose{\isacharparenright}}]{\isa{\isactrlvec A{\isasymvartheta}\ {\isasymLongrightarrow}\ C{\isasymvartheta}}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   832
  {\isa{\isactrlvec A\ {\isasymLongrightarrow}\ B} & \isa{B{\isacharprime}\ {\isasymLongrightarrow}\ C} & \isa{B{\isasymvartheta}\ {\isacharequal}\ B{\isacharprime}{\isasymvartheta}}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   833
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   834
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   835
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   836
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   837
  \infer[\isa{{\isacharparenleft}{\isasymAnd}{\isacharunderscore}lift{\isacharparenright}}]{\isa{{\isacharparenleft}{\isasymAnd}\isactrlvec x{\isachardot}\ \isactrlvec A\ {\isacharparenleft}{\isacharquery}\isactrlvec a\ \isactrlvec x{\isacharparenright}{\isacharparenright}\ {\isasymLongrightarrow}\ {\isacharparenleft}{\isasymAnd}\isactrlvec x{\isachardot}\ B\ {\isacharparenleft}{\isacharquery}\isactrlvec a\ \isactrlvec x{\isacharparenright}{\isacharparenright}}}{\isa{\isactrlvec A\ {\isacharquery}\isactrlvec a\ {\isasymLongrightarrow}\ B\ {\isacharquery}\isactrlvec a}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   838
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   839
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   840
  \infer[\isa{{\isacharparenleft}{\isasymLongrightarrow}{\isacharunderscore}lift{\isacharparenright}}]{\isa{{\isacharparenleft}\isactrlvec H\ {\isasymLongrightarrow}\ \isactrlvec A{\isacharparenright}\ {\isasymLongrightarrow}\ {\isacharparenleft}\isactrlvec H\ {\isasymLongrightarrow}\ B{\isacharparenright}}}{\isa{\isactrlvec A\ {\isasymLongrightarrow}\ B}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   841
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   842
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   843
  The \isa{resolve} scheme is now acquired from \isa{{\isasymAnd}{\isacharunderscore}lift},
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   844
  \isa{{\isasymLongrightarrow}{\isacharunderscore}lift}, and \isa{compose}.
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   845
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   846
  \[
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   847
  \infer[\isa{{\isacharparenleft}resolution{\isacharparenright}}]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   848
  {\isa{{\isacharparenleft}{\isasymAnd}\isactrlvec x{\isachardot}\ \isactrlvec H\ \isactrlvec x\ {\isasymLongrightarrow}\ \isactrlvec A\ {\isacharparenleft}{\isacharquery}\isactrlvec a\ \isactrlvec x{\isacharparenright}{\isacharparenright}{\isasymvartheta}\ {\isasymLongrightarrow}\ C{\isasymvartheta}}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   849
  {\begin{tabular}{l}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   850
    \isa{\isactrlvec A\ {\isacharquery}\isactrlvec a\ {\isasymLongrightarrow}\ B\ {\isacharquery}\isactrlvec a} \\
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   851
    \isa{{\isacharparenleft}{\isasymAnd}\isactrlvec x{\isachardot}\ \isactrlvec H\ \isactrlvec x\ {\isasymLongrightarrow}\ B{\isacharprime}\ \isactrlvec x{\isacharparenright}\ {\isasymLongrightarrow}\ C} \\
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   852
    \isa{{\isacharparenleft}{\isasymlambda}\isactrlvec x{\isachardot}\ B\ {\isacharparenleft}{\isacharquery}\isactrlvec a\ \isactrlvec x{\isacharparenright}{\isacharparenright}{\isasymvartheta}\ {\isacharequal}\ B{\isacharprime}{\isasymvartheta}} \\
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   853
   \end{tabular}}
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   854
  \]
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   855
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   856
18845f9dbd09 updated;
wenzelm
parents: 20494
diff changeset
   857
  FIXME \isa{elim{\isacharunderscore}resolution}, \isa{dest{\isacharunderscore}resolution}%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   858
\end{isamarkuptext}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   859
\isamarkuptrue%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   860
%
20929
wenzelm
parents: 20547
diff changeset
   861
\endisatagFIXME
wenzelm
parents: 20547
diff changeset
   862
{\isafoldFIXME}%
wenzelm
parents: 20547
diff changeset
   863
%
wenzelm
parents: 20547
diff changeset
   864
\isadelimFIXME
wenzelm
parents: 20547
diff changeset
   865
%
wenzelm
parents: 20547
diff changeset
   866
\endisadelimFIXME
wenzelm
parents: 20547
diff changeset
   867
%
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   868
\isadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   869
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   870
\endisadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   871
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   872
\isatagtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   873
\isacommand{end}\isamarkupfalse%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   874
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   875
\endisatagtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   876
{\isafoldtheory}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   877
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   878
\isadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   879
%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   880
\endisadelimtheory
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   881
\isanewline
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   882
\end{isabellebody}%
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   883
%%% Local Variables:
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   884
%%% mode: latex
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   885
%%% TeX-master: "root"
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   886
%%% End: