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