doc-src/IsarImplementation/Thy/Logic.thy
author wenzelm
Wed, 14 Apr 2010 11:24:31 +0200
changeset 36134 c210a8fda4c5
parent 35927 343d5b0df29a
child 36166 da7b40aa2215
permissions -rw-r--r--
updated Thm.add_axiom/add_def;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29755
d66b34e46bdf observe usual theory naming conventions;
wenzelm
parents: 29615
diff changeset
     1
theory Logic
d66b34e46bdf observe usual theory naming conventions;
wenzelm
parents: 29615
diff changeset
     2
imports Base
d66b34e46bdf observe usual theory naming conventions;
wenzelm
parents: 29615
diff changeset
     3
begin
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     4
20470
c839b38a1f32 more on variables;
wenzelm
parents: 20451
diff changeset
     5
chapter {* Primitive logic \label{ch:logic} *}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
     6
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
     7
text {*
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
     8
  The logical foundations of Isabelle/Isar are that of the Pure logic,
29774
wenzelm
parents: 29771
diff changeset
     9
  which has been introduced as a Natural Deduction framework in
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    10
  \cite{paulson700}.  This is essentially the same logic as ``@{text
20493
wenzelm
parents: 20491
diff changeset
    11
  "\<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
    12
  \cite{Barendregt-Geuvers:2001}, although there are some key
20491
wenzelm
parents: 20480
diff changeset
    13
  differences in the specific treatment of simple types in
wenzelm
parents: 20480
diff changeset
    14
  Isabelle/Pure.
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    15
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    16
  Following type-theoretic parlance, the Pure logic consists of three
20543
wenzelm
parents: 20542
diff changeset
    17
  levels of @{text "\<lambda>"}-calculus with corresponding arrows, @{text
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    18
  "\<Rightarrow>"} for syntactic function space (terms depending on terms), @{text
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    19
  "\<And>"} for universal quantification (proofs depending on terms), and
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    20
  @{text "\<Longrightarrow>"} for implication (proofs depending on proofs).
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    21
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    22
  Derivations are relative to a logical theory, which declares type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    23
  constructors, constants, and axioms.  Theory declarations support
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    24
  schematic polymorphism, which is strictly speaking outside the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    25
  logic.\footnote{This is the deeper logical reason, why the theory
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
    26
  context @{text "\<Theta>"} is separate from the proof context @{text "\<Gamma>"}
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    27
  of the core calculus: type constructors, term constants, and facts
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    28
  (proof constants) may involve arbitrary type schemes, but the type
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    29
  of a locally fixed term parameter is also fixed!}
20480
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
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    32
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    33
section {* Types \label{sec:types} *}
20437
wenzelm
parents: 18537
diff changeset
    34
wenzelm
parents: 18537
diff changeset
    35
text {*
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    36
  The language of types is an uninterpreted order-sorted first-order
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    37
  algebra; types are qualified by ordered type classes.
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    38
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    39
  \medskip A \emph{type class} is an abstract syntactic entity
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    40
  declared in the theory context.  The \emph{subclass relation} @{text
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
    41
  "c\<^isub>1 \<subseteq> c\<^isub>2"} is specified by stating an acyclic
20491
wenzelm
parents: 20480
diff changeset
    42
  generating relation; the transitive closure is maintained
wenzelm
parents: 20480
diff changeset
    43
  internally.  The resulting relation is an ordering: reflexive,
wenzelm
parents: 20480
diff changeset
    44
  transitive, and antisymmetric.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
    45
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    46
  A \emph{sort} is a list of type classes written as @{text "s = {c\<^isub>1,
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    47
  \<dots>, c\<^isub>m}"}, it represents symbolic intersection.  Notationally, the
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    48
  curly braces are omitted for singleton intersections, i.e.\ any
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    49
  class @{text "c"} may be read as a sort @{text "{c}"}.  The ordering
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    50
  on type classes is extended to sorts according to the meaning of
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    51
  intersections: @{text "{c\<^isub>1, \<dots> c\<^isub>m} \<subseteq> {d\<^isub>1, \<dots>, d\<^isub>n}"} iff @{text
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    52
  "\<forall>j. \<exists>i. c\<^isub>i \<subseteq> d\<^isub>j"}.  The empty intersection @{text "{}"} refers to
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    53
  the universal sort, which is the largest element wrt.\ the sort
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    54
  order.  Thus @{text "{}"} represents the ``full sort'', not the
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    55
  empty one!  The intersection of all (finitely many) classes declared
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    56
  in the current theory is the least element wrt.\ the sort ordering.
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
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    66
  of type variables: basic name, index, and sort constraint.  The core
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    67
  logic handles type variables with the same name but different sorts
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    68
  as different, although the type-inference layer (which is outside
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    69
  the core) rejects anything like that.
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
  
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    81
  The logical category \emph{type} is defined inductively over type
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
    82
  variables and type 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}
34921
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   120
  @{index_ML_type class: string} \\
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   121
  @{index_ML_type sort: "class list"} \\
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   122
  @{index_ML_type arity: "string * sort list * sort"} \\
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"} \\
30355
8066d80cd51e use binding type;
wenzelm
parents: 30288
diff changeset
   130
  @{index_ML Sign.add_types: "(binding * 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: "
30355
8066d80cd51e use binding type;
wenzelm
parents: 30288
diff changeset
   132
  (binding * string list * typ * mixfix) list -> theory -> theory"} \\
8066d80cd51e use binding type;
wenzelm
parents: 30288
diff changeset
   133
  @{index_ML Sign.primitive_class: "binding * class list -> theory -> theory"} \\
20480
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
34921
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   140
  \item @{ML_type class} represents type classes.
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
   141
34921
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   142
  \item @{ML_type sort} represents sorts, i.e.\ finite intersections
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   143
  of classes.  The empty list @{ML "[]: sort"} refers to the empty
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   144
  class intersection, i.e.\ the ``full sort''.
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   145
34921
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   146
  \item @{ML_type arity} represents type arities.  A triple @{text
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   147
  "(\<kappa>, \<^vec>s, s) : arity"} represents @{text "\<kappa> :: (\<^vec>s)s"} as
008126f730a0 formal markup of type aliases;
wenzelm
parents: 33174
diff changeset
   148
  described above.
20480
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
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   190
section {* Terms \label{sec:terms} *}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   191
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   192
text {*
20491
wenzelm
parents: 20480
diff changeset
   193
  The language of terms is that of simply-typed @{text "\<lambda>"}-calculus
20520
wenzelm
parents: 20519
diff changeset
   194
  with de-Bruijn indices for bound variables (cf.\ \cite{debruijn72}
29761
2b658e50683a minor tuning and typographic fixes;
wenzelm
parents: 29758
diff changeset
   195
  or \cite{paulson-ml2}), with the types being determined by the
2b658e50683a minor tuning and typographic fixes;
wenzelm
parents: 29758
diff changeset
   196
  corresponding binders.  In contrast, free variables and constants
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   197
  have an explicit name and type in each occurrence.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   198
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   199
  \medskip A \emph{bound variable} is a natural number @{text "b"},
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   200
  which accounts for the number of intermediate binders between the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   201
  variable occurrence in the body and its binding position.  For
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   202
  example, the de-Bruijn term @{text "\<lambda>\<^bsub>bool\<^esub>. \<lambda>\<^bsub>bool\<^esub>. 1 \<and> 0"} would
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   203
  correspond to @{text "\<lambda>x\<^bsub>bool\<^esub>. \<lambda>y\<^bsub>bool\<^esub>. x \<and> y"} in a named
20543
wenzelm
parents: 20542
diff changeset
   204
  representation.  Note that a bound variable may be represented by
wenzelm
parents: 20542
diff changeset
   205
  different de-Bruijn indices at different occurrences, depending on
wenzelm
parents: 20542
diff changeset
   206
  the nesting of abstractions.
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   207
20543
wenzelm
parents: 20542
diff changeset
   208
  A \emph{loose variable} is a bound variable that is outside the
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   209
  scope of local binders.  The types (and names) for loose variables
20543
wenzelm
parents: 20542
diff changeset
   210
  can be managed as a separate context, that is maintained as a stack
wenzelm
parents: 20542
diff changeset
   211
  of hypothetical binders.  The core logic operates on closed terms,
wenzelm
parents: 20542
diff changeset
   212
  without any loose variables.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   213
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   214
  A \emph{fixed variable} is a pair of a basic name and a type, e.g.\
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   215
  @{text "(x, \<tau>)"} which is usually printed @{text "x\<^isub>\<tau>"} here.  A
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   216
  \emph{schematic variable} is a pair of an indexname and a type,
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   217
  e.g.\ @{text "((x, 0), \<tau>)"} which is likewise printed as @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   218
  "?x\<^isub>\<tau>"}.
20491
wenzelm
parents: 20480
diff changeset
   219
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   220
  \medskip A \emph{constant} is a pair of a basic name and a type,
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   221
  e.g.\ @{text "(c, \<tau>)"} which is usually printed as @{text "c\<^isub>\<tau>"}
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   222
  here.  Constants are declared in the context as polymorphic families
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   223
  @{text "c :: \<sigma>"}, meaning that all substitution instances @{text
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   224
  "c\<^isub>\<tau>"} for @{text "\<tau> = \<sigma>\<vartheta>"} are valid.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   225
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   226
  The vector of \emph{type arguments} of constant @{text "c\<^isub>\<tau>"} wrt.\
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   227
  the declaration @{text "c :: \<sigma>"} is defined as the codomain of the
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   228
  matcher @{text "\<vartheta> = {?\<alpha>\<^isub>1 \<mapsto> \<tau>\<^isub>1, \<dots>, ?\<alpha>\<^isub>n \<mapsto> \<tau>\<^isub>n}"} presented in
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   229
  canonical order @{text "(\<tau>\<^isub>1, \<dots>, \<tau>\<^isub>n)"}, corresponding to the
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   230
  left-to-right occurrences of the @{text "\<alpha>\<^isub>i"} in @{text "\<sigma>"}.
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   231
  Within a given theory context, there is a one-to-one correspondence
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   232
  between any constant @{text "c\<^isub>\<tau>"} and the application @{text "c(\<tau>\<^isub>1,
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   233
  \<dots>, \<tau>\<^isub>n)"} of its type arguments.  For example, with @{text "plus :: \<alpha>
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   234
  \<Rightarrow> \<alpha> \<Rightarrow> \<alpha>"}, the instance @{text "plus\<^bsub>nat \<Rightarrow> nat \<Rightarrow> nat\<^esub>"} corresponds to
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   235
  @{text "plus(nat)"}.
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
   236
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   237
  Constant declarations @{text "c :: \<sigma>"} may contain sort constraints
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   238
  for type variables in @{text "\<sigma>"}.  These are observed by
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   239
  type-inference as expected, but \emph{ignored} by the core logic.
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   240
  This means the primitive logic is able to reason with instances of
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   241
  polymorphic constants that the user-level type-checker would reject
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   242
  due to violation of type class restrictions.
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
   243
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   244
  \medskip An \emph{atomic} term is either a variable or constant.
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   245
  The logical category \emph{term} is defined inductively over atomic
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   246
  terms, with abstraction and application as follows: @{text "t = b |
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   247
  x\<^isub>\<tau> | ?x\<^isub>\<tau> | c\<^isub>\<tau> | \<lambda>\<^isub>\<tau>. t | t\<^isub>1 t\<^isub>2"}.  Parsing and printing takes care of
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   248
  converting between an external representation with named bound
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   249
  variables.  Subsequently, we shall use the latter notation instead
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   250
  of internal de-Bruijn representation.
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   251
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   252
  The inductive relation @{text "t :: \<tau>"} assigns a (unique) type to a
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   253
  term according to the structure of atomic terms, abstractions, and
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   254
  applicatins:
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   255
  \[
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   256
  \infer{@{text "a\<^isub>\<tau> :: \<tau>"}}{}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   257
  \qquad
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   258
  \infer{@{text "(\<lambda>x\<^sub>\<tau>. t) :: \<tau> \<Rightarrow> \<sigma>"}}{@{text "t :: \<sigma>"}}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   259
  \qquad
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   260
  \infer{@{text "t u :: \<sigma>"}}{@{text "t :: \<tau> \<Rightarrow> \<sigma>"} & @{text "u :: \<tau>"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   261
  \]
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   262
  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
   263
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   264
  Typing information can be omitted: type-inference is able to
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   265
  reconstruct the most general type of a raw term, while assigning
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   266
  most general types to all of its variables and constants.
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   267
  Type-inference depends on a context of type constraints for fixed
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   268
  variables, and declarations for polymorphic constants.
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   269
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   270
  The identity of atomic terms consists both of the name and the type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   271
  component.  This means that different variables @{text
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   272
  "x\<^bsub>\<tau>\<^isub>1\<^esub>"} and @{text "x\<^bsub>\<tau>\<^isub>2\<^esub>"} may become the same after
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   273
  type instantiation.  Type-inference rejects variables of the same
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   274
  name, but different types.  In contrast, mixed instances of
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   275
  polymorphic constants occur routinely.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   276
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   277
  \medskip The \emph{hidden polymorphism} of a term @{text "t :: \<sigma>"}
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   278
  is the set of type variables occurring in @{text "t"}, but not in
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   279
  its type @{text "\<sigma>"}.  This means that the term implicitly depends
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   280
  on type arguments that are not accounted in the result type, i.e.\
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   281
  there are different type instances @{text "t\<vartheta> :: \<sigma>"} and
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   282
  @{text "t\<vartheta>' :: \<sigma>"} with the same type.  This slightly
20543
wenzelm
parents: 20542
diff changeset
   283
  pathological situation notoriously demands additional care.
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   284
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   285
  \medskip A \emph{term abbreviation} is a syntactic definition @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   286
  "c\<^isub>\<sigma> \<equiv> t"} of a closed term @{text "t"} of type @{text "\<sigma>"},
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   287
  without any hidden polymorphism.  A term abbreviation looks like a
20543
wenzelm
parents: 20542
diff changeset
   288
  constant in the syntax, but is expanded before entering the logical
wenzelm
parents: 20542
diff changeset
   289
  core.  Abbreviations are usually reverted when printing terms, using
wenzelm
parents: 20542
diff changeset
   290
  @{text "t \<rightarrow> c\<^isub>\<sigma>"} as rules for higher-order rewriting.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   291
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   292
  \medskip Canonical operations on @{text "\<lambda>"}-terms include @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   293
  "\<alpha>\<beta>\<eta>"}-conversion: @{text "\<alpha>"}-conversion refers to capture-free
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   294
  renaming of bound variables; @{text "\<beta>"}-conversion contracts an
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   295
  abstraction applied to an argument term, substituting the argument
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   296
  in the body: @{text "(\<lambda>x. b)a"} becomes @{text "b[a/x]"}; @{text
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   297
  "\<eta>"}-conversion contracts vacuous application-abstraction: @{text
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   298
  "\<lambda>x. f x"} becomes @{text "f"}, provided that the bound variable
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   299
  does not occur in @{text "f"}.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   300
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   301
  Terms are normally treated modulo @{text "\<alpha>"}-conversion, which is
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   302
  implicit in the de-Bruijn representation.  Names for bound variables
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   303
  in abstractions are maintained separately as (meaningless) comments,
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   304
  mostly for parsing and printing.  Full @{text "\<alpha>\<beta>\<eta>"}-conversion is
28784
9495aec512e2 renamed "Rules" to "Object-level rules";
wenzelm
parents: 28674
diff changeset
   305
  commonplace in various standard operations (\secref{sec:obj-rules})
9495aec512e2 renamed "Rules" to "Object-level rules";
wenzelm
parents: 28674
diff changeset
   306
  that are based on higher-order unification and matching.
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   307
*}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   308
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   309
text %mlref {*
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   310
  \begin{mldecls}
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   311
  @{index_ML_type term} \\
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   312
  @{index_ML "op aconv": "term * term -> bool"} \\
20547
wenzelm
parents: 20543
diff changeset
   313
  @{index_ML map_types: "(typ -> typ) -> term -> term"} \\
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   314
  @{index_ML fold_types: "(typ -> 'a -> 'a) -> term -> 'a -> 'a"} \\
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   315
  @{index_ML map_aterms: "(term -> term) -> term -> term"} \\
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   316
  @{index_ML fold_aterms: "(term -> 'a -> 'a) -> term -> 'a -> 'a"} \\
20547
wenzelm
parents: 20543
diff changeset
   317
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   318
  \begin{mldecls}
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   319
  @{index_ML fastype_of: "term -> typ"} \\
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   320
  @{index_ML lambda: "term -> term -> term"} \\
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   321
  @{index_ML betapply: "term * term -> term"} \\
33174
1f2051f41335 adjusted to changes in corresponding ML code
haftmann
parents: 32833
diff changeset
   322
  @{index_ML Sign.declare_const: "(binding * typ) * mixfix ->
24972
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   323
  theory -> term * theory"} \\
33174
1f2051f41335 adjusted to changes in corresponding ML code
haftmann
parents: 32833
diff changeset
   324
  @{index_ML Sign.add_abbrev: "string -> binding * term ->
24972
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   325
  theory -> (term * term) * theory"} \\
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   326
  @{index_ML Sign.const_typargs: "theory -> string * typ -> typ list"} \\
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   327
  @{index_ML Sign.const_instance: "theory -> string * typ list -> typ"} \\
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   328
  \end{mldecls}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   329
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   330
  \begin{description}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   331
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   332
  \item @{ML_type term} represents de-Bruijn terms, with comments in
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   333
  abstractions, and explicitly named free variables and constants;
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   334
  this is a datatype with constructors @{ML Bound}, @{ML Free}, @{ML
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   335
  Var}, @{ML Const}, @{ML Abs}, @{ML "op $"}.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   336
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   337
  \item @{text "t"}~@{ML aconv}~@{text "u"} checks @{text
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   338
  "\<alpha>"}-equivalence of two terms.  This is the basic equality relation
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   339
  on type @{ML_type term}; raw datatype equality should only be used
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   340
  for operations related to parsing or printing!
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   341
20547
wenzelm
parents: 20543
diff changeset
   342
  \item @{ML map_types}~@{text "f t"} applies the mapping @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   343
  "f"} to all types occurring in @{text "t"}.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   344
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   345
  \item @{ML fold_types}~@{text "f t"} iterates the operation @{text
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   346
  "f"} over all occurrences of types in @{text "t"}; the term
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   347
  structure is traversed from left to right.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   348
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   349
  \item @{ML map_aterms}~@{text "f t"} applies the mapping @{text "f"}
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   350
  to all atomic terms (@{ML Bound}, @{ML Free}, @{ML Var}, @{ML
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   351
  Const}) occurring in @{text "t"}.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   352
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   353
  \item @{ML fold_aterms}~@{text "f t"} iterates the operation @{text
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   354
  "f"} over all occurrences of atomic terms (@{ML Bound}, @{ML Free},
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   355
  @{ML Var}, @{ML Const}) in @{text "t"}; the term structure is
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   356
  traversed from left to right.
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   357
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   358
  \item @{ML fastype_of}~@{text "t"} determines the type of a
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   359
  well-typed term.  This operation is relatively slow, despite the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   360
  omission of any sanity checks.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   361
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   362
  \item @{ML lambda}~@{text "a b"} produces an abstraction @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   363
  "\<lambda>a. b"}, where occurrences of the atomic term @{text "a"} in the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   364
  body @{text "b"} are replaced by bound variables.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   365
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   366
  \item @{ML betapply}~@{text "(t, u)"} produces an application @{text
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   367
  "t u"}, with topmost @{text "\<beta>"}-conversion if @{text "t"} is an
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   368
  abstraction.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   369
33174
1f2051f41335 adjusted to changes in corresponding ML code
haftmann
parents: 32833
diff changeset
   370
  \item @{ML Sign.declare_const}~@{text "((c, \<sigma>), mx)"}
24972
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   371
  declares a new constant @{text "c :: \<sigma>"} with optional mixfix
acafb18a47dc replaced Sign.add_consts_i by Sign.declare_const;
wenzelm
parents: 24828
diff changeset
   372
  syntax.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   373
33174
1f2051f41335 adjusted to changes in corresponding ML code
haftmann
parents: 32833
diff changeset
   374
  \item @{ML Sign.add_abbrev}~@{text "print_mode (c, t)"}
21827
0b1d07f79c1e updated;
wenzelm
parents: 21324
diff changeset
   375
  introduces a new term abbreviation @{text "c \<equiv> t"}.
20519
d7ad1217c24a more on terms;
wenzelm
parents: 20514
diff changeset
   376
20520
wenzelm
parents: 20519
diff changeset
   377
  \item @{ML Sign.const_typargs}~@{text "thy (c, \<tau>)"} and @{ML
wenzelm
parents: 20519
diff changeset
   378
  Sign.const_instance}~@{text "thy (c, [\<tau>\<^isub>1, \<dots>, \<tau>\<^isub>n])"}
20543
wenzelm
parents: 20542
diff changeset
   379
  convert between two representations of polymorphic constants: full
wenzelm
parents: 20542
diff changeset
   380
  type instance vs.\ compact type arguments form.
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   381
20514
5ede702cd2ca more on terms;
wenzelm
parents: 20501
diff changeset
   382
  \end{description}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   383
*}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   384
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   385
20451
27ea2ba48fa3 misc cleanup;
wenzelm
parents: 20450
diff changeset
   386
section {* Theorems \label{sec:thms} *}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   387
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   388
text {*
20543
wenzelm
parents: 20542
diff changeset
   389
  A \emph{proposition} is a well-typed term of type @{text "prop"}, a
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   390
  \emph{theorem} is a proven proposition (depending on a context of
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   391
  hypotheses and the background theory).  Primitive inferences include
29774
wenzelm
parents: 29771
diff changeset
   392
  plain Natural Deduction rules for the primary connectives @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   393
  "\<And>"} and @{text "\<Longrightarrow>"} of the framework.  There is also a builtin
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   394
  notion of equality/equivalence @{text "\<equiv>"}.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   395
*}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   396
29758
7a3b5bbed313 removed rudiments of glossary;
wenzelm
parents: 29755
diff changeset
   397
26872
336dfd860744 fixed some labels;
wenzelm
parents: 24972
diff changeset
   398
subsection {* Primitive connectives and rules \label{sec:prim-rules} *}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   399
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   400
text {*
20543
wenzelm
parents: 20542
diff changeset
   401
  The theory @{text "Pure"} contains constant declarations for the
wenzelm
parents: 20542
diff changeset
   402
  primitive connectives @{text "\<And>"}, @{text "\<Longrightarrow>"}, and @{text "\<equiv>"} of
wenzelm
parents: 20542
diff changeset
   403
  the logical framework, see \figref{fig:pure-connectives}.  The
wenzelm
parents: 20542
diff changeset
   404
  derivability judgment @{text "A\<^isub>1, \<dots>, A\<^isub>n \<turnstile> B"} is
wenzelm
parents: 20542
diff changeset
   405
  defined inductively by the primitive inferences given in
wenzelm
parents: 20542
diff changeset
   406
  \figref{fig:prim-rules}, with the global restriction that the
wenzelm
parents: 20542
diff changeset
   407
  hypotheses must \emph{not} contain any schematic variables.  The
wenzelm
parents: 20542
diff changeset
   408
  builtin equality is conceptually axiomatized as shown in
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   409
  \figref{fig:pure-equality}, although the implementation works
20543
wenzelm
parents: 20542
diff changeset
   410
  directly with derived inferences.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   411
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   412
  \begin{figure}[htb]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   413
  \begin{center}
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   414
  \begin{tabular}{ll}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   415
  @{text "all :: (\<alpha> \<Rightarrow> prop) \<Rightarrow> prop"} & universal quantification (binder @{text "\<And>"}) \\
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   416
  @{text "\<Longrightarrow> :: prop \<Rightarrow> prop \<Rightarrow> prop"} & implication (right associative infix) \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   417
  @{text "\<equiv> :: \<alpha> \<Rightarrow> \<alpha> \<Rightarrow> prop"} & equality relation (infix) \\
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   418
  \end{tabular}
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   419
  \caption{Primitive connectives of Pure}\label{fig:pure-connectives}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   420
  \end{center}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   421
  \end{figure}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   422
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   423
  \begin{figure}[htb]
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   424
  \begin{center}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   425
  \[
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   426
  \infer[@{text "(axiom)"}]{@{text "\<turnstile> A"}}{@{text "A \<in> \<Theta>"}}
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   427
  \qquad
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   428
  \infer[@{text "(assume)"}]{@{text "A \<turnstile> A"}}{}
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   429
  \]
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   430
  \[
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   431
  \infer[@{text "(\<And>\<dash>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
   432
  \qquad
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   433
  \infer[@{text "(\<And>\<dash>elim)"}]{@{text "\<Gamma> \<turnstile> b[a]"}}{@{text "\<Gamma> \<turnstile> \<And>x. b[x]"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   434
  \]
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   435
  \[
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   436
  \infer[@{text "(\<Longrightarrow>\<dash>intro)"}]{@{text "\<Gamma> - A \<turnstile> A \<Longrightarrow> B"}}{@{text "\<Gamma> \<turnstile> B"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   437
  \qquad
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   438
  \infer[@{text "(\<Longrightarrow>\<dash>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"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   439
  \]
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   440
  \caption{Primitive inferences of Pure}\label{fig:prim-rules}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   441
  \end{center}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   442
  \end{figure}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   443
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   444
  \begin{figure}[htb]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   445
  \begin{center}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   446
  \begin{tabular}{ll}
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   447
  @{text "\<turnstile> (\<lambda>x. b[x]) a \<equiv> b[a]"} & @{text "\<beta>"}-conversion \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   448
  @{text "\<turnstile> x \<equiv> x"} & reflexivity \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   449
  @{text "\<turnstile> x \<equiv> y \<Longrightarrow> P x \<Longrightarrow> P y"} & substitution \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   450
  @{text "\<turnstile> (\<And>x. f x \<equiv> g x) \<Longrightarrow> f \<equiv> g"} & extensionality \\
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   451
  @{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
   452
  \end{tabular}
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   453
  \caption{Conceptual axiomatization of Pure equality}\label{fig:pure-equality}
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   454
  \end{center}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   455
  \end{figure}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   456
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   457
  The introduction and elimination rules for @{text "\<And>"} and @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   458
  "\<Longrightarrow>"} are analogous to formation of dependently typed @{text
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   459
  "\<lambda>"}-terms representing the underlying proof objects.  Proof terms
20543
wenzelm
parents: 20542
diff changeset
   460
  are irrelevant in the Pure logic, though; they cannot occur within
wenzelm
parents: 20542
diff changeset
   461
  propositions.  The system provides a runtime option to record
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   462
  explicit proof terms for primitive inferences.  Thus all three
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   463
  levels of @{text "\<lambda>"}-calculus become explicit: @{text "\<Rightarrow>"} for
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   464
  terms, and @{text "\<And>/\<Longrightarrow>"} for proofs (cf.\
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   465
  \cite{Berghofer-Nipkow:2000:TPHOL}).
20491
wenzelm
parents: 20480
diff changeset
   466
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   467
  Observe that locally fixed parameters (as in @{text
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   468
  "\<And>\<dash>intro"}) need not be recorded in the hypotheses, because
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   469
  the simple syntactic types of Pure are always inhabitable.
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   470
  ``Assumptions'' @{text "x :: \<tau>"} for type-membership are only
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   471
  present as long as some @{text "x\<^isub>\<tau>"} occurs in the statement
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   472
  body.\footnote{This is the key difference to ``@{text "\<lambda>HOL"}'' in
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   473
  the PTS framework \cite{Barendregt-Geuvers:2001}, where hypotheses
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   474
  @{text "x : A"} are treated uniformly for propositions and types.}
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   475
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   476
  \medskip The axiomatization of a theory is implicitly closed by
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   477
  forming all instances of type and term variables: @{text "\<turnstile>
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   478
  A\<vartheta>"} holds for any substitution instance of an axiom
20543
wenzelm
parents: 20542
diff changeset
   479
  @{text "\<turnstile> A"}.  By pushing substitutions through derivations
wenzelm
parents: 20542
diff changeset
   480
  inductively, we also get admissible @{text "generalize"} and @{text
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   481
  "instantiate"} rules as shown in \figref{fig:subst-rules}.
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   482
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   483
  \begin{figure}[htb]
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   484
  \begin{center}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   485
  \[
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   486
  \infer{@{text "\<Gamma> \<turnstile> B[?\<alpha>]"}}{@{text "\<Gamma> \<turnstile> B[\<alpha>]"} & @{text "\<alpha> \<notin> \<Gamma>"}}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   487
  \quad
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   488
  \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
   489
  \]
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   490
  \[
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   491
  \infer{@{text "\<Gamma> \<turnstile> B[\<tau>]"}}{@{text "\<Gamma> \<turnstile> B[?\<alpha>]"}}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   492
  \quad
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   493
  \infer[\quad@{text "(instantiate)"}]{@{text "\<Gamma> \<turnstile> B[t]"}}{@{text "\<Gamma> \<turnstile> B[?x]"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   494
  \]
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   495
  \caption{Admissible substitution rules}\label{fig:subst-rules}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   496
  \end{center}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   497
  \end{figure}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   498
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   499
  Note that @{text "instantiate"} does not require an explicit
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   500
  side-condition, because @{text "\<Gamma>"} may never contain schematic
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   501
  variables.
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   502
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   503
  In principle, variables could be substituted in hypotheses as well,
20543
wenzelm
parents: 20542
diff changeset
   504
  but this would disrupt the monotonicity of reasoning: deriving
wenzelm
parents: 20542
diff changeset
   505
  @{text "\<Gamma>\<vartheta> \<turnstile> B\<vartheta>"} from @{text "\<Gamma> \<turnstile> B"} is
wenzelm
parents: 20542
diff changeset
   506
  correct, but @{text "\<Gamma>\<vartheta> \<supseteq> \<Gamma>"} does not necessarily hold:
wenzelm
parents: 20542
diff changeset
   507
  the result belongs to a different proof context.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   508
20543
wenzelm
parents: 20542
diff changeset
   509
  \medskip An \emph{oracle} is a function that produces axioms on the
wenzelm
parents: 20542
diff changeset
   510
  fly.  Logically, this is an instance of the @{text "axiom"} rule
wenzelm
parents: 20542
diff changeset
   511
  (\figref{fig:prim-rules}), but there is an operational difference.
wenzelm
parents: 20542
diff changeset
   512
  The system always records oracle invocations within derivations of
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   513
  theorems by a unique tag.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   514
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   515
  Axiomatizations should be limited to the bare minimum, typically as
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   516
  part of the initial logical basis of an object-logic formalization.
20543
wenzelm
parents: 20542
diff changeset
   517
  Later on, theories are usually developed in a strictly definitional
wenzelm
parents: 20542
diff changeset
   518
  fashion, by stating only certain equalities over new constants.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   519
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   520
  A \emph{simple definition} consists of a constant declaration @{text
20543
wenzelm
parents: 20542
diff changeset
   521
  "c :: \<sigma>"} together with an axiom @{text "\<turnstile> c \<equiv> t"}, where @{text "t
wenzelm
parents: 20542
diff changeset
   522
  :: \<sigma>"} is a closed term without any hidden polymorphism.  The RHS
wenzelm
parents: 20542
diff changeset
   523
  may depend on further defined constants, but not @{text "c"} itself.
wenzelm
parents: 20542
diff changeset
   524
  Definitions of functions may be presented as @{text "c \<^vec>x \<equiv>
wenzelm
parents: 20542
diff changeset
   525
  t"} instead of the puristic @{text "c \<equiv> \<lambda>\<^vec>x. t"}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   526
20543
wenzelm
parents: 20542
diff changeset
   527
  An \emph{overloaded definition} consists of a collection of axioms
wenzelm
parents: 20542
diff changeset
   528
  for the same constant, with zero or one equations @{text
wenzelm
parents: 20542
diff changeset
   529
  "c((\<^vec>\<alpha>)\<kappa>) \<equiv> t"} for each type constructor @{text "\<kappa>"} (for
wenzelm
parents: 20542
diff changeset
   530
  distinct variables @{text "\<^vec>\<alpha>"}).  The RHS may mention
wenzelm
parents: 20542
diff changeset
   531
  previously defined constants as above, or arbitrary constants @{text
wenzelm
parents: 20542
diff changeset
   532
  "d(\<alpha>\<^isub>i)"} for some @{text "\<alpha>\<^isub>i"} projected from @{text
wenzelm
parents: 20542
diff changeset
   533
  "\<^vec>\<alpha>"}.  Thus overloaded definitions essentially work by
wenzelm
parents: 20542
diff changeset
   534
  primitive recursion over the syntactic structure of a single type
wenzelm
parents: 20542
diff changeset
   535
  argument.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   536
*}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   537
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   538
text %mlref {*
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   539
  \begin{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   540
  @{index_ML_type ctyp} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   541
  @{index_ML_type cterm} \\
20547
wenzelm
parents: 20543
diff changeset
   542
  @{index_ML Thm.ctyp_of: "theory -> typ -> ctyp"} \\
wenzelm
parents: 20543
diff changeset
   543
  @{index_ML Thm.cterm_of: "theory -> term -> cterm"} \\
wenzelm
parents: 20543
diff changeset
   544
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   545
  \begin{mldecls}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   546
  @{index_ML_type thm} \\
32833
f3716d1a2e48 explicitly Unsynchronized;
wenzelm
parents: 30552
diff changeset
   547
  @{index_ML proofs: "int Unsynchronized.ref"} \\
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   548
  @{index_ML Thm.assume: "cterm -> thm"} \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   549
  @{index_ML Thm.forall_intr: "cterm -> thm -> thm"} \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   550
  @{index_ML Thm.forall_elim: "cterm -> thm -> thm"} \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   551
  @{index_ML Thm.implies_intr: "cterm -> thm -> thm"} \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   552
  @{index_ML Thm.implies_elim: "thm -> thm -> thm"} \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   553
  @{index_ML Thm.generalize: "string list * string list -> int -> thm -> thm"} \\
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   554
  @{index_ML Thm.instantiate: "(ctyp * ctyp) list * (cterm * cterm) list -> thm -> thm"} \\
36134
c210a8fda4c5 updated Thm.add_axiom/add_def;
wenzelm
parents: 35927
diff changeset
   555
  @{index_ML Thm.add_axiom: "binding * term -> theory -> (string * thm) * theory"} \\
30288
a32700e45ab3 Thm.add_oracle interface: replaced old bstring by binding;
wenzelm
parents: 30272
diff changeset
   556
  @{index_ML Thm.add_oracle: "binding * ('a -> cterm) -> theory
28290
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28110
diff changeset
   557
  -> (string * ('a -> thm)) * theory"} \\
36134
c210a8fda4c5 updated Thm.add_axiom/add_def;
wenzelm
parents: 35927
diff changeset
   558
  @{index_ML Thm.add_def: "bool -> bool -> binding * term -> theory -> (string * thm) * theory"} \\
20547
wenzelm
parents: 20543
diff changeset
   559
  \end{mldecls}
wenzelm
parents: 20543
diff changeset
   560
  \begin{mldecls}
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   561
  @{index_ML Theory.add_deps: "string -> string * typ -> (string * typ) list -> theory -> theory"} \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   562
  \end{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   563
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   564
  \begin{description}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   565
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   566
  \item @{ML_type ctyp} and @{ML_type cterm} represent certified types
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   567
  and terms, respectively.  These are abstract datatypes that
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   568
  guarantee that its values have passed the full well-formedness (and
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   569
  well-typedness) checks, relative to the declarations of type
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   570
  constructors, constants etc. in the theory.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   571
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   572
  \item @{ML Thm.ctyp_of}~@{text "thy \<tau>"} and @{ML
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   573
  Thm.cterm_of}~@{text "thy t"} explicitly checks types and terms,
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   574
  respectively.  This also involves some basic normalizations, such
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   575
  expansion of type and term abbreviations from the theory context.
20547
wenzelm
parents: 20543
diff changeset
   576
wenzelm
parents: 20543
diff changeset
   577
  Re-certification is relatively slow and should be avoided in tight
wenzelm
parents: 20543
diff changeset
   578
  reasoning loops.  There are separate operations to decompose
wenzelm
parents: 20543
diff changeset
   579
  certified entities (including actual theorems).
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   580
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   581
  \item @{ML_type thm} represents proven propositions.  This is an
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   582
  abstract datatype that guarantees that its values have been
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   583
  constructed by basic principles of the @{ML_struct Thm} module.
20543
wenzelm
parents: 20542
diff changeset
   584
  Every @{ML thm} value contains a sliding back-reference to the
wenzelm
parents: 20542
diff changeset
   585
  enclosing theory, cf.\ \secref{sec:context-theory}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   586
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   587
  \item @{ML proofs} specifies the detail of proof recording within
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   588
  @{ML_type thm} values: @{ML 0} records only the names of oracles,
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   589
  @{ML 1} records oracle names and propositions, @{ML 2} additionally
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   590
  records full proof terms.  Officially named theorems that contribute
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   591
  to a result are recorded in any case.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   592
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   593
  \item @{ML Thm.assume}, @{ML Thm.forall_intr}, @{ML
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   594
  Thm.forall_elim}, @{ML Thm.implies_intr}, and @{ML Thm.implies_elim}
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   595
  correspond to the primitive inferences of \figref{fig:prim-rules}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   596
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   597
  \item @{ML Thm.generalize}~@{text "(\<^vec>\<alpha>, \<^vec>x)"}
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   598
  corresponds to the @{text "generalize"} rules of
20543
wenzelm
parents: 20542
diff changeset
   599
  \figref{fig:subst-rules}.  Here collections of type and term
wenzelm
parents: 20542
diff changeset
   600
  variables are generalized simultaneously, specified by the given
wenzelm
parents: 20542
diff changeset
   601
  basic names.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   602
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   603
  \item @{ML Thm.instantiate}~@{text "(\<^vec>\<alpha>\<^isub>s,
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   604
  \<^vec>x\<^isub>\<tau>)"} corresponds to the @{text "instantiate"} rules
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   605
  of \figref{fig:subst-rules}.  Type variables are substituted before
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   606
  term variables.  Note that the types in @{text "\<^vec>x\<^isub>\<tau>"}
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   607
  refer to the instantiated versions.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   608
35927
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   609
  \item @{ML Thm.add_axiom}~@{text "(name, A) thy"} declares an
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   610
  arbitrary proposition as axiom, and retrieves it as a theorem from
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   611
  the resulting theory, cf.\ @{text "axiom"} in
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   612
  \figref{fig:prim-rules}.  Note that the low-level representation in
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   613
  the axiom table may differ slightly from the returned theorem.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   614
30288
a32700e45ab3 Thm.add_oracle interface: replaced old bstring by binding;
wenzelm
parents: 30272
diff changeset
   615
  \item @{ML Thm.add_oracle}~@{text "(binding, oracle)"} produces a named
28290
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28110
diff changeset
   616
  oracle rule, essentially generating arbitrary axioms on the fly,
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28110
diff changeset
   617
  cf.\ @{text "axiom"} in \figref{fig:prim-rules}.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   618
35927
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   619
  \item @{ML Thm.add_def}~@{text "unchecked overloaded (name, c
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   620
  \<^vec>x \<equiv> t)"} states a definitional axiom for an existing constant
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   621
  @{text "c"}.  Dependencies are recorded via @{ML Theory.add_deps},
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   622
  unless the @{text "unchecked"} option is set.  Note that the
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   623
  low-level representation in the axiom table may differ slightly from
343d5b0df29a updated Thm.add_axiom/add_def;
wenzelm
parents: 34929
diff changeset
   624
  the returned theorem.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   625
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   626
  \item @{ML Theory.add_deps}~@{text "name c\<^isub>\<tau>
20543
wenzelm
parents: 20542
diff changeset
   627
  \<^vec>d\<^isub>\<sigma>"} declares dependencies of a named specification
wenzelm
parents: 20542
diff changeset
   628
  for constant @{text "c\<^isub>\<tau>"}, relative to existing
wenzelm
parents: 20542
diff changeset
   629
  specifications for constants @{text "\<^vec>d\<^isub>\<sigma>"}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   630
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   631
  \end{description}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   632
*}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   633
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   634
20543
wenzelm
parents: 20542
diff changeset
   635
subsection {* Auxiliary definitions *}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   636
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   637
text {*
20543
wenzelm
parents: 20542
diff changeset
   638
  Theory @{text "Pure"} provides a few auxiliary definitions, see
wenzelm
parents: 20542
diff changeset
   639
  \figref{fig:pure-aux}.  These special constants are normally not
wenzelm
parents: 20542
diff changeset
   640
  exposed to the user, but appear in internal encodings.
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   641
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   642
  \begin{figure}[htb]
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   643
  \begin{center}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   644
  \begin{tabular}{ll}
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   645
  @{text "conjunction :: prop \<Rightarrow> prop \<Rightarrow> prop"} & (infix @{text "&&&"}) \\
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   646
  @{text "\<turnstile> A &&& B \<equiv> (\<And>C. (A \<Longrightarrow> B \<Longrightarrow> C) \<Longrightarrow> C)"} \\[1ex]
20543
wenzelm
parents: 20542
diff changeset
   647
  @{text "prop :: prop \<Rightarrow> prop"} & (prefix @{text "#"}, suppressed) \\
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   648
  @{text "#A \<equiv> A"} \\[1ex]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   649
  @{text "term :: \<alpha> \<Rightarrow> prop"} & (prefix @{text "TERM"}) \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   650
  @{text "term x \<equiv> (\<And>A. A \<Longrightarrow> A)"} \\[1ex]
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   651
  @{text "TYPE :: \<alpha> itself"} & (prefix @{text "TYPE"}) \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   652
  @{text "(unspecified)"} \\
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   653
  \end{tabular}
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   654
  \caption{Definitions of auxiliary connectives}\label{fig:pure-aux}
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   655
  \end{center}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   656
  \end{figure}
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   657
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   658
  The introduction @{text "A \<Longrightarrow> B \<Longrightarrow> A &&& B"}, and eliminations
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   659
  (projections) @{text "A &&& B \<Longrightarrow> A"} and @{text "A &&& B \<Longrightarrow> B"} are
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   660
  available as derived rules.  Conjunction allows to treat
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   661
  simultaneous assumptions and conclusions uniformly, e.g.\ consider
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   662
  @{text "A \<Longrightarrow> B \<Longrightarrow> C &&& D"}.  In particular, the goal mechanism
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   663
  represents multiple claims as explicit conjunction internally, but
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   664
  this is refined (via backwards introduction) into separate sub-goals
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   665
  before the user commences the proof; the final result is projected
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   666
  into a list of theorems using eliminations (cf.\
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   667
  \secref{sec:tactical-goals}).
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   668
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   669
  The @{text "prop"} marker (@{text "#"}) makes arbitrarily complex
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   670
  propositions appear as atomic, without changing the meaning: @{text
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   671
  "\<Gamma> \<turnstile> A"} and @{text "\<Gamma> \<turnstile> #A"} are interchangeable.  See
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   672
  \secref{sec:tactical-goals} for specific operations.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   673
20543
wenzelm
parents: 20542
diff changeset
   674
  The @{text "term"} marker turns any well-typed term into a derivable
wenzelm
parents: 20542
diff changeset
   675
  proposition: @{text "\<turnstile> TERM t"} holds unconditionally.  Although
wenzelm
parents: 20542
diff changeset
   676
  this is logically vacuous, it allows to treat terms and proofs
wenzelm
parents: 20542
diff changeset
   677
  uniformly, similar to a type-theoretic framework.
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   678
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   679
  The @{text "TYPE"} constructor is the canonical representative of
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   680
  the unspecified type @{text "\<alpha> itself"}; it essentially injects the
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   681
  language of types into that of terms.  There is specific notation
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   682
  @{text "TYPE(\<tau>)"} for @{text "TYPE\<^bsub>\<tau>
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   683
 itself\<^esub>"}.
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   684
  Although being devoid of any particular meaning, the term @{text
20537
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   685
  "TYPE(\<tau>)"} accounts for the type @{text "\<tau>"} within the term
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   686
  language.  In particular, @{text "TYPE(\<alpha>)"} may be used as formal
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   687
  argument in primitive definitions, in order to circumvent hidden
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   688
  polymorphism (cf.\ \secref{sec:terms}).  For example, @{text "c
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   689
  TYPE(\<alpha>) \<equiv> A[\<alpha>]"} defines @{text "c :: \<alpha> itself \<Rightarrow> prop"} in terms of
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   690
  a proposition @{text "A"} that depends on an additional type
b6b49903db7e *** empty log message ***
wenzelm
parents: 20521
diff changeset
   691
  argument, which is essentially a predicate on types.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   692
*}
20501
de0b523b0d62 more rules;
wenzelm
parents: 20498
diff changeset
   693
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   694
text %mlref {*
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   695
  \begin{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   696
  @{index_ML Conjunction.intr: "thm -> thm -> thm"} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   697
  @{index_ML Conjunction.elim: "thm -> thm * thm"} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   698
  @{index_ML Drule.mk_term: "cterm -> thm"} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   699
  @{index_ML Drule.dest_term: "thm -> cterm"} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   700
  @{index_ML Logic.mk_type: "typ -> term"} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   701
  @{index_ML Logic.dest_type: "term -> typ"} \\
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   702
  \end{mldecls}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   703
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   704
  \begin{description}
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   705
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   706
  \item @{ML Conjunction.intr} derives @{text "A &&& B"} from @{text
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   707
  "A"} and @{text "B"}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   708
20543
wenzelm
parents: 20542
diff changeset
   709
  \item @{ML Conjunction.elim} derives @{text "A"} and @{text "B"}
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   710
  from @{text "A &&& B"}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   711
20543
wenzelm
parents: 20542
diff changeset
   712
  \item @{ML Drule.mk_term} derives @{text "TERM t"}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   713
20543
wenzelm
parents: 20542
diff changeset
   714
  \item @{ML Drule.dest_term} recovers term @{text "t"} from @{text
wenzelm
parents: 20542
diff changeset
   715
  "TERM t"}.
20542
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   716
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   717
  \item @{ML Logic.mk_type}~@{text "\<tau>"} produces the term @{text
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   718
  "TYPE(\<tau>)"}.
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   719
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   720
  \item @{ML Logic.dest_type}~@{text "TYPE(\<tau>)"} recovers the type
a54ca4e90874 more on theorems;
wenzelm
parents: 20537
diff changeset
   721
  @{text "\<tau>"}.
20521
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   722
189811b39869 more on theorems;
wenzelm
parents: 20520
diff changeset
   723
  \end{description}
20491
wenzelm
parents: 20480
diff changeset
   724
*}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   725
20480
4e0522d38968 more on types and type classes;
wenzelm
parents: 20477
diff changeset
   726
28784
9495aec512e2 renamed "Rules" to "Object-level rules";
wenzelm
parents: 28674
diff changeset
   727
section {* Object-level rules \label{sec:obj-rules} *}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   728
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   729
text {*
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   730
  The primitive inferences covered so far mostly serve foundational
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   731
  purposes.  User-level reasoning usually works via object-level rules
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   732
  that are represented as theorems of Pure.  Composition of rules
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   733
  involves \emph{backchaining}, \emph{higher-order unification} modulo
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   734
  @{text "\<alpha>\<beta>\<eta>"}-conversion of @{text "\<lambda>"}-terms, and so-called
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   735
  \emph{lifting} of rules into a context of @{text "\<And>"} and @{text
29774
wenzelm
parents: 29771
diff changeset
   736
  "\<Longrightarrow>"} connectives.  Thus the full power of higher-order Natural
wenzelm
parents: 29771
diff changeset
   737
  Deduction in Isabelle/Pure becomes readily available.
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   738
*}
20491
wenzelm
parents: 20480
diff changeset
   739
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   740
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   741
subsection {* Hereditary Harrop Formulae *}
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   742
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   743
text {*
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   744
  The idea of object-level rules is to model Natural Deduction
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   745
  inferences in the style of Gentzen \cite{Gentzen:1935}, but we allow
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   746
  arbitrary nesting similar to \cite{extensions91}.  The most basic
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   747
  rule format is that of a \emph{Horn Clause}:
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   748
  \[
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   749
  \infer{@{text "A"}}{@{text "A\<^sub>1"} & @{text "\<dots>"} & @{text "A\<^sub>n"}}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   750
  \]
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   751
  where @{text "A, A\<^sub>1, \<dots>, A\<^sub>n"} are atomic propositions
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   752
  of the framework, usually of the form @{text "Trueprop B"}, where
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   753
  @{text "B"} is a (compound) object-level statement.  This
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   754
  object-level inference corresponds to an iterated implication in
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   755
  Pure like this:
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   756
  \[
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   757
  @{text "A\<^sub>1 \<Longrightarrow> \<dots> A\<^sub>n \<Longrightarrow> A"}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   758
  \]
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   759
  As an example consider conjunction introduction: @{text "A \<Longrightarrow> B \<Longrightarrow> A \<and>
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   760
  B"}.  Any parameters occurring in such rule statements are
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   761
  conceptionally treated as arbitrary:
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   762
  \[
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   763
  @{text "\<And>x\<^sub>1 \<dots> x\<^sub>m. A\<^sub>1 x\<^sub>1 \<dots> x\<^sub>m \<Longrightarrow> \<dots> A\<^sub>n x\<^sub>1 \<dots> x\<^sub>m \<Longrightarrow> A x\<^sub>1 \<dots> x\<^sub>m"}
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   764
  \]
20491
wenzelm
parents: 20480
diff changeset
   765
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   766
  Nesting of rules means that the positions of @{text "A\<^sub>i"} may
29770
wenzelm
parents: 29769
diff changeset
   767
  again hold compound rules, not just atomic propositions.
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   768
  Propositions of this format are called \emph{Hereditary Harrop
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   769
  Formulae} in the literature \cite{Miller:1991}.  Here we give an
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   770
  inductive characterization as follows:
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   771
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   772
  \medskip
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   773
  \begin{tabular}{ll}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   774
  @{text "\<^bold>x"} & set of variables \\
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   775
  @{text "\<^bold>A"} & set of atomic propositions \\
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   776
  @{text "\<^bold>H  =  \<And>\<^bold>x\<^sup>*. \<^bold>H\<^sup>* \<Longrightarrow> \<^bold>A"} & set of Hereditary Harrop Formulas \\
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   777
  \end{tabular}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   778
  \medskip
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   779
29770
wenzelm
parents: 29769
diff changeset
   780
  \noindent Thus we essentially impose nesting levels on propositions
wenzelm
parents: 29769
diff changeset
   781
  formed from @{text "\<And>"} and @{text "\<Longrightarrow>"}.  At each level there is a
wenzelm
parents: 29769
diff changeset
   782
  prefix of parameters and compound premises, concluding an atomic
wenzelm
parents: 29769
diff changeset
   783
  proposition.  Typical examples are @{text "\<longrightarrow>"}-introduction @{text
wenzelm
parents: 29769
diff changeset
   784
  "(A \<Longrightarrow> B) \<Longrightarrow> A \<longrightarrow> B"} or mathematical induction @{text "P 0 \<Longrightarrow> (\<And>n. P n
wenzelm
parents: 29769
diff changeset
   785
  \<Longrightarrow> P (Suc n)) \<Longrightarrow> P n"}.  Even deeper nesting occurs in well-founded
wenzelm
parents: 29769
diff changeset
   786
  induction @{text "(\<And>x. (\<And>y. y \<prec> x \<Longrightarrow> P y) \<Longrightarrow> P x) \<Longrightarrow> P x"}, but this
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   787
  already marks the limit of rule complexity that is usually seen in
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   788
  practice.
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   789
29770
wenzelm
parents: 29769
diff changeset
   790
  \medskip Regular user-level inferences in Isabelle/Pure always
wenzelm
parents: 29769
diff changeset
   791
  maintain the following canonical form of results:
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   792
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   793
  \begin{itemize}
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   794
29774
wenzelm
parents: 29771
diff changeset
   795
  \item Normalization by @{text "(A \<Longrightarrow> (\<And>x. B x)) \<equiv> (\<And>x. A \<Longrightarrow> B x)"},
wenzelm
parents: 29771
diff changeset
   796
  which is a theorem of Pure, means that quantifiers are pushed in
wenzelm
parents: 29771
diff changeset
   797
  front of implication at each level of nesting.  The normal form is a
wenzelm
parents: 29771
diff changeset
   798
  Hereditary Harrop Formula.
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   799
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   800
  \item The outermost prefix of parameters is represented via
29770
wenzelm
parents: 29769
diff changeset
   801
  schematic variables: instead of @{text "\<And>\<^vec>x. \<^vec>H \<^vec>x
29774
wenzelm
parents: 29771
diff changeset
   802
  \<Longrightarrow> A \<^vec>x"} we have @{text "\<^vec>H ?\<^vec>x \<Longrightarrow> A ?\<^vec>x"}.
wenzelm
parents: 29771
diff changeset
   803
  Note that this representation looses information about the order of
wenzelm
parents: 29771
diff changeset
   804
  parameters, and vacuous quantifiers vanish automatically.
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   805
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   806
  \end{itemize}
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   807
*}
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   808
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   809
text %mlref {*
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   810
  \begin{mldecls}
30552
58db56278478 provide Simplifier.norm_hhf(_protect) as regular simplifier operation;
wenzelm
parents: 30355
diff changeset
   811
  @{index_ML Simplifier.norm_hhf: "thm -> thm"} \\
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   812
  \end{mldecls}
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   813
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   814
  \begin{description}
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   815
30552
58db56278478 provide Simplifier.norm_hhf(_protect) as regular simplifier operation;
wenzelm
parents: 30355
diff changeset
   816
  \item @{ML Simplifier.norm_hhf}~@{text thm} normalizes the given
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   817
  theorem according to the canonical form specified above.  This is
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   818
  occasionally helpful to repair some low-level tools that do not
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   819
  handle Hereditary Harrop Formulae properly.
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   820
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   821
  \end{description}
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   822
*}
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   823
29769
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   824
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   825
subsection {* Rule composition *}
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   826
03634a9e91ae improved section on "Hereditary Harrop Formulae";
wenzelm
parents: 29768
diff changeset
   827
text {*
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   828
  The rule calculus of Isabelle/Pure provides two main inferences:
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   829
  @{inference resolution} (i.e.\ back-chaining of rules) and
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   830
  @{inference assumption} (i.e.\ closing a branch), both modulo
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   831
  higher-order unification.  There are also combined variants, notably
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   832
  @{inference elim_resolution} and @{inference dest_resolution}.
20491
wenzelm
parents: 20480
diff changeset
   833
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   834
  To understand the all-important @{inference resolution} principle,
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   835
  we first consider raw @{inference_def composition} (modulo
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   836
  higher-order unification with substitution @{text "\<vartheta>"}):
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   837
  \[
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   838
  \infer[(@{inference_def composition})]{@{text "\<^vec>A\<vartheta> \<Longrightarrow> C\<vartheta>"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   839
  {@{text "\<^vec>A \<Longrightarrow> B"} & @{text "B' \<Longrightarrow> C"} & @{text "B\<vartheta> = B'\<vartheta>"}}
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   840
  \]
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   841
  Here the conclusion of the first rule is unified with the premise of
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   842
  the second; the resulting rule instance inherits the premises of the
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   843
  first and conclusion of the second.  Note that @{text "C"} can again
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   844
  consist of iterated implications.  We can also permute the premises
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   845
  of the second rule back-and-forth in order to compose with @{text
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   846
  "B'"} in any position (subsequently we shall always refer to
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   847
  position 1 w.l.o.g.).
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   848
29774
wenzelm
parents: 29771
diff changeset
   849
  In @{inference composition} the internal structure of the common
wenzelm
parents: 29771
diff changeset
   850
  part @{text "B"} and @{text "B'"} is not taken into account.  For
wenzelm
parents: 29771
diff changeset
   851
  proper @{inference resolution} we require @{text "B"} to be atomic,
wenzelm
parents: 29771
diff changeset
   852
  and explicitly observe the structure @{text "\<And>\<^vec>x. \<^vec>H
wenzelm
parents: 29771
diff changeset
   853
  \<^vec>x \<Longrightarrow> B' \<^vec>x"} of the premise of the second rule.  The
wenzelm
parents: 29771
diff changeset
   854
  idea is to adapt the first rule by ``lifting'' it into this context,
wenzelm
parents: 29771
diff changeset
   855
  by means of iterated application of the following inferences:
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   856
  \[
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   857
  \infer[(@{inference_def imp_lift})]{@{text "(\<^vec>H \<Longrightarrow> \<^vec>A) \<Longrightarrow> (\<^vec>H \<Longrightarrow> B)"}}{@{text "\<^vec>A \<Longrightarrow> B"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   858
  \]
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   859
  \[
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   860
  \infer[(@{inference_def all_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"}}
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   861
  \]
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   862
  By combining raw composition with lifting, we get full @{inference
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   863
  resolution} as follows:
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   864
  \[
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   865
  \infer[(@{inference_def resolution})]
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   866
  {@{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
   867
  {\begin{tabular}{l}
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   868
    @{text "\<^vec>A ?\<^vec>a \<Longrightarrow> B ?\<^vec>a"} \\
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   869
    @{text "(\<And>\<^vec>x. \<^vec>H \<^vec>x \<Longrightarrow> B' \<^vec>x) \<Longrightarrow> C"} \\
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   870
    @{text "(\<lambda>\<^vec>x. B (?\<^vec>a \<^vec>x))\<vartheta> = B'\<vartheta>"} \\
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   871
   \end{tabular}}
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   872
  \]
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   873
29774
wenzelm
parents: 29771
diff changeset
   874
  Continued resolution of rules allows to back-chain a problem towards
wenzelm
parents: 29771
diff changeset
   875
  more and sub-problems.  Branches are closed either by resolving with
wenzelm
parents: 29771
diff changeset
   876
  a rule of 0 premises, or by producing a ``short-circuit'' within a
wenzelm
parents: 29771
diff changeset
   877
  solved situation (again modulo unification):
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   878
  \[
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   879
  \infer[(@{inference_def assumption})]{@{text "C\<vartheta>"}}
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   880
  {@{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})}}
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   881
  \]
20498
825a8d2335ce more rules;
wenzelm
parents: 20494
diff changeset
   882
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   883
  FIXME @{inference_def elim_resolution}, @{inference_def dest_resolution}
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   884
*}
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   885
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   886
text %mlref {*
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   887
  \begin{mldecls}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   888
  @{index_ML "op RS": "thm * thm -> thm"} \\
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   889
  @{index_ML "op OF": "thm * thm list -> thm"} \\
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   890
  \end{mldecls}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   891
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   892
  \begin{description}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   893
34929
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   894
  \item @{text "rule\<^sub>1 RS rule\<^sub>2"} resolves @{text "rule\<^sub>1"} with @{text
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   895
  "rule\<^sub>2"} according to the @{inference resolution} principle
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   896
  explained above.  Note that the corresponding rule attribute in the
9700a87f1cc2 misc tuning and clarification;
wenzelm
parents: 34921
diff changeset
   897
  Isar language is called @{attribute THEN}.
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   898
29771
aa1d3b5d1b5e improved section "Rule composition";
wenzelm
parents: 29770
diff changeset
   899
  \item @{text "rule OF rules"} resolves a list of rules with the
29774
wenzelm
parents: 29771
diff changeset
   900
  first rule, addressing its premises @{text "1, \<dots>, length rules"}
wenzelm
parents: 29771
diff changeset
   901
  (operating from last to first).  This means the newly emerging
wenzelm
parents: 29771
diff changeset
   902
  premises are all concatenated, without interfering.  Also note that
wenzelm
parents: 29771
diff changeset
   903
  compared to @{text "RS"}, the rule argument order is swapped: @{text
wenzelm
parents: 29771
diff changeset
   904
  "rule\<^sub>1 RS rule\<^sub>2 = rule\<^sub>2 OF [rule\<^sub>1]"}.
29768
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   905
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   906
  \end{description}
64a50ff3f308 more on object-level rules;
wenzelm
parents: 29761
diff changeset
   907
*}
30272
2d612824e642 regenerated document;
wenzelm
parents: 30270
diff changeset
   908
18537
2681f9e34390 "The Isabelle/Isar Implementation" manual;
wenzelm
parents:
diff changeset
   909
end