doc-src/IsarRef/Thy/Proof.thy
author wenzelm
Sun, 15 Feb 2009 18:11:35 +0100
changeset 30067 831f29b1a02e
parent 30049 0cfd533b4e37
child 30070 37785fa3826d
permissions -rw-r--r--
tuned;
wenzelm@26869
     1
theory Proof
wenzelm@26869
     2
imports Main
wenzelm@26869
     3
begin
wenzelm@26869
     4
wenzelm@26869
     5
chapter {* Proofs *}
wenzelm@26869
     6
wenzelm@26870
     7
text {*
wenzelm@26870
     8
  Proof commands perform transitions of Isar/VM machine
wenzelm@26870
     9
  configurations, which are block-structured, consisting of a stack of
wenzelm@26870
    10
  nodes with three main components: logical proof context, current
wenzelm@30067
    11
  facts, and open goals.  Isar/VM transitions are typed according to
wenzelm@30067
    12
  the following three different modes of operation:
wenzelm@26870
    13
wenzelm@28760
    14
  \begin{description}
wenzelm@26870
    15
wenzelm@28760
    16
  \item @{text "proof(prove)"} means that a new goal has just been
wenzelm@26870
    17
  stated that is now to be \emph{proven}; the next command may refine
wenzelm@26870
    18
  it by some proof method, and enter a sub-proof to establish the
wenzelm@26870
    19
  actual result.
wenzelm@26870
    20
wenzelm@28760
    21
  \item @{text "proof(state)"} is like a nested theory mode: the
wenzelm@26870
    22
  context may be augmented by \emph{stating} additional assumptions,
wenzelm@26870
    23
  intermediate results etc.
wenzelm@26870
    24
wenzelm@28760
    25
  \item @{text "proof(chain)"} is intermediate between @{text
wenzelm@26870
    26
  "proof(state)"} and @{text "proof(prove)"}: existing facts (i.e.\
wenzelm@26870
    27
  the contents of the special ``@{fact_ref this}'' register) have been
wenzelm@26870
    28
  just picked up in order to be used when refining the goal claimed
wenzelm@26870
    29
  next.
wenzelm@26870
    30
wenzelm@28760
    31
  \end{description}
wenzelm@26870
    32
wenzelm@30067
    33
  The proof mode indicator may be understood as an instruction to the
wenzelm@30067
    34
  writer, telling what kind of operation may be performed next.  The
wenzelm@30067
    35
  corresponding typings of proof commands restricts the shape of
wenzelm@30067
    36
  well-formed proof texts to particular command sequences.  So dynamic
wenzelm@30067
    37
  arrangements of commands eventually turn out as static texts of a
wenzelm@30067
    38
  certain structure.
wenzelm@30067
    39
wenzelm@30067
    40
  \Appref{ap:refcard} gives a simplified grammar of the (extensible)
wenzelm@30067
    41
  language emerging that way from the different types of proof
wenzelm@30067
    42
  commands.  The main ideas of the overall Isar framework are
wenzelm@30067
    43
  explained in \chref{ch:isar-framework}.
wenzelm@26870
    44
*}
wenzelm@26870
    45
wenzelm@26870
    46
wenzelm@28755
    47
section {* Proof structure *}
wenzelm@28755
    48
wenzelm@28755
    49
subsection {* Blocks *}
wenzelm@28755
    50
wenzelm@28755
    51
text {*
wenzelm@28755
    52
  \begin{matharray}{rcl}
wenzelm@28761
    53
    @{command_def "next"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
    54
    @{command_def "{"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
    55
    @{command_def "}"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28755
    56
  \end{matharray}
wenzelm@28755
    57
wenzelm@28755
    58
  While Isar is inherently block-structured, opening and closing
wenzelm@28755
    59
  blocks is mostly handled rather casually, with little explicit
wenzelm@28755
    60
  user-intervention.  Any local goal statement automatically opens
wenzelm@28755
    61
  \emph{two} internal blocks, which are closed again when concluding
wenzelm@28755
    62
  the sub-proof (by @{command "qed"} etc.).  Sections of different
wenzelm@28755
    63
  context within a sub-proof may be switched via @{command "next"},
wenzelm@28755
    64
  which is just a single block-close followed by block-open again.
wenzelm@28755
    65
  The effect of @{command "next"} is to reset the local proof context;
wenzelm@28755
    66
  there is no goal focus involved here!
wenzelm@28755
    67
wenzelm@28755
    68
  For slightly more advanced applications, there are explicit block
wenzelm@28755
    69
  parentheses as well.  These typically achieve a stronger forward
wenzelm@28755
    70
  style of reasoning.
wenzelm@28755
    71
wenzelm@28760
    72
  \begin{description}
wenzelm@28755
    73
wenzelm@28760
    74
  \item @{command "next"} switches to a fresh block within a
wenzelm@28755
    75
  sub-proof, resetting the local context to the initial one.
wenzelm@28755
    76
wenzelm@28760
    77
  \item @{command "{"} and @{command "}"} explicitly open and close
wenzelm@28755
    78
  blocks.  Any current facts pass through ``@{command "{"}''
wenzelm@28755
    79
  unchanged, while ``@{command "}"}'' causes any result to be
wenzelm@28755
    80
  \emph{exported} into the enclosing context.  Thus fixed variables
wenzelm@28755
    81
  are generalized, assumptions discharged, and local definitions
wenzelm@28755
    82
  unfolded (cf.\ \secref{sec:proof-context}).  There is no difference
wenzelm@28755
    83
  of @{command "assume"} and @{command "presume"} in this mode of
wenzelm@28755
    84
  forward reasoning --- in contrast to plain backward reasoning with
wenzelm@28755
    85
  the result exported at @{command "show"} time.
wenzelm@28755
    86
wenzelm@28760
    87
  \end{description}
wenzelm@28755
    88
*}
wenzelm@28755
    89
wenzelm@28755
    90
wenzelm@28755
    91
subsection {* Omitting proofs *}
wenzelm@28755
    92
wenzelm@28755
    93
text {*
wenzelm@28755
    94
  \begin{matharray}{rcl}
wenzelm@28761
    95
    @{command_def "oops"} & : & @{text "proof \<rightarrow> local_theory | theory"} \\
wenzelm@28755
    96
  \end{matharray}
wenzelm@28755
    97
wenzelm@28755
    98
  The @{command "oops"} command discontinues the current proof
wenzelm@28755
    99
  attempt, while considering the partial proof text as properly
wenzelm@28755
   100
  processed.  This is conceptually quite different from ``faking''
wenzelm@28755
   101
  actual proofs via @{command_ref "sorry"} (see
wenzelm@28755
   102
  \secref{sec:proof-steps}): @{command "oops"} does not observe the
wenzelm@28755
   103
  proof structure at all, but goes back right to the theory level.
wenzelm@28755
   104
  Furthermore, @{command "oops"} does not produce any result theorem
wenzelm@28755
   105
  --- there is no intended claim to be able to complete the proof
wenzelm@28755
   106
  anyhow.
wenzelm@28755
   107
wenzelm@28755
   108
  A typical application of @{command "oops"} is to explain Isar proofs
wenzelm@28755
   109
  \emph{within} the system itself, in conjunction with the document
wenzelm@28838
   110
  preparation tools of Isabelle described in \chref{ch:document-prep}.
wenzelm@28755
   111
  Thus partial or even wrong proof attempts can be discussed in a
wenzelm@28755
   112
  logically sound manner.  Note that the Isabelle {\LaTeX} macros can
wenzelm@28755
   113
  be easily adapted to print something like ``@{text "\<dots>"}'' instead of
wenzelm@28755
   114
  the keyword ``@{command "oops"}''.
wenzelm@28755
   115
wenzelm@28755
   116
  \medskip The @{command "oops"} command is undo-able, unlike
wenzelm@28755
   117
  @{command_ref "kill"} (see \secref{sec:history}).  The effect is to
wenzelm@28755
   118
  get back to the theory just before the opening of the proof.
wenzelm@28755
   119
*}
wenzelm@28755
   120
wenzelm@28755
   121
wenzelm@28754
   122
section {* Statements *}
wenzelm@28754
   123
wenzelm@28754
   124
subsection {* Context elements \label{sec:proof-context} *}
wenzelm@26870
   125
wenzelm@26870
   126
text {*
wenzelm@26870
   127
  \begin{matharray}{rcl}
wenzelm@28761
   128
    @{command_def "fix"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
   129
    @{command_def "assume"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
   130
    @{command_def "presume"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
   131
    @{command_def "def"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@26870
   132
  \end{matharray}
wenzelm@26870
   133
wenzelm@26870
   134
  The logical proof context consists of fixed variables and
wenzelm@26870
   135
  assumptions.  The former closely correspond to Skolem constants, or
wenzelm@26870
   136
  meta-level universal quantification as provided by the Isabelle/Pure
wenzelm@26870
   137
  logical framework.  Introducing some \emph{arbitrary, but fixed}
wenzelm@26870
   138
  variable via ``@{command "fix"}~@{text x}'' results in a local value
wenzelm@26870
   139
  that may be used in the subsequent proof as any other variable or
wenzelm@26870
   140
  constant.  Furthermore, any result @{text "\<turnstile> \<phi>[x]"} exported from
wenzelm@26870
   141
  the context will be universally closed wrt.\ @{text x} at the
wenzelm@26870
   142
  outermost level: @{text "\<turnstile> \<And>x. \<phi>[x]"} (this is expressed in normal
wenzelm@26870
   143
  form using Isabelle's meta-variables).
wenzelm@26870
   144
wenzelm@26870
   145
  Similarly, introducing some assumption @{text \<chi>} has two effects.
wenzelm@26870
   146
  On the one hand, a local theorem is created that may be used as a
wenzelm@26870
   147
  fact in subsequent proof steps.  On the other hand, any result
wenzelm@26870
   148
  @{text "\<chi> \<turnstile> \<phi>"} exported from the context becomes conditional wrt.\
wenzelm@26870
   149
  the assumption: @{text "\<turnstile> \<chi> \<Longrightarrow> \<phi>"}.  Thus, solving an enclosing goal
wenzelm@26870
   150
  using such a result would basically introduce a new subgoal stemming
wenzelm@26870
   151
  from the assumption.  How this situation is handled depends on the
wenzelm@26870
   152
  version of assumption command used: while @{command "assume"}
wenzelm@26870
   153
  insists on solving the subgoal by unification with some premise of
wenzelm@26870
   154
  the goal, @{command "presume"} leaves the subgoal unchanged in order
wenzelm@26870
   155
  to be proved later by the user.
wenzelm@26870
   156
wenzelm@26870
   157
  Local definitions, introduced by ``@{command "def"}~@{text "x \<equiv>
wenzelm@26870
   158
  t"}'', are achieved by combining ``@{command "fix"}~@{text x}'' with
wenzelm@26870
   159
  another version of assumption that causes any hypothetical equation
wenzelm@26870
   160
  @{text "x \<equiv> t"} to be eliminated by the reflexivity rule.  Thus,
wenzelm@26870
   161
  exporting some result @{text "x \<equiv> t \<turnstile> \<phi>[x]"} yields @{text "\<turnstile>
wenzelm@26870
   162
  \<phi>[t]"}.
wenzelm@26870
   163
wenzelm@26870
   164
  \begin{rail}
wenzelm@26870
   165
    'fix' (vars + 'and')
wenzelm@26870
   166
    ;
wenzelm@26870
   167
    ('assume' | 'presume') (props + 'and')
wenzelm@26870
   168
    ;
wenzelm@26870
   169
    'def' (def + 'and')
wenzelm@26870
   170
    ;
wenzelm@26870
   171
    def: thmdecl? \\ name ('==' | equiv) term termpat?
wenzelm@26870
   172
    ;
wenzelm@26870
   173
  \end{rail}
wenzelm@26870
   174
wenzelm@28760
   175
  \begin{description}
wenzelm@26870
   176
  
wenzelm@28760
   177
  \item @{command "fix"}~@{text x} introduces a local variable @{text
wenzelm@28760
   178
  x} that is \emph{arbitrary, but fixed.}
wenzelm@26870
   179
  
wenzelm@28760
   180
  \item @{command "assume"}~@{text "a: \<phi>"} and @{command
wenzelm@28760
   181
  "presume"}~@{text "a: \<phi>"} introduce a local fact @{text "\<phi> \<turnstile> \<phi>"} by
wenzelm@26870
   182
  assumption.  Subsequent results applied to an enclosing goal (e.g.\
wenzelm@26870
   183
  by @{command_ref "show"}) are handled as follows: @{command
wenzelm@26870
   184
  "assume"} expects to be able to unify with existing premises in the
wenzelm@26870
   185
  goal, while @{command "presume"} leaves @{text \<phi>} as new subgoals.
wenzelm@26870
   186
  
wenzelm@26870
   187
  Several lists of assumptions may be given (separated by
wenzelm@26870
   188
  @{keyword_ref "and"}; the resulting list of current facts consists
wenzelm@26870
   189
  of all of these concatenated.
wenzelm@26870
   190
  
wenzelm@28760
   191
  \item @{command "def"}~@{text "x \<equiv> t"} introduces a local
wenzelm@26870
   192
  (non-polymorphic) definition.  In results exported from the context,
wenzelm@26870
   193
  @{text x} is replaced by @{text t}.  Basically, ``@{command
wenzelm@26870
   194
  "def"}~@{text "x \<equiv> t"}'' abbreviates ``@{command "fix"}~@{text
wenzelm@26870
   195
  x}~@{command "assume"}~@{text "x \<equiv> t"}'', with the resulting
wenzelm@26870
   196
  hypothetical equation solved by reflexivity.
wenzelm@26870
   197
  
wenzelm@26870
   198
  The default name for the definitional equation is @{text x_def}.
wenzelm@26870
   199
  Several simultaneous definitions may be given at the same time.
wenzelm@26870
   200
wenzelm@28760
   201
  \end{description}
wenzelm@26870
   202
wenzelm@26870
   203
  The special name @{fact_ref prems} refers to all assumptions of the
wenzelm@26870
   204
  current context as a list of theorems.  This feature should be used
wenzelm@26870
   205
  with great care!  It is better avoided in final proof texts.
wenzelm@26870
   206
*}
wenzelm@26870
   207
wenzelm@26870
   208
wenzelm@28754
   209
subsection {* Term abbreviations \label{sec:term-abbrev} *}
wenzelm@28754
   210
wenzelm@28754
   211
text {*
wenzelm@28754
   212
  \begin{matharray}{rcl}
wenzelm@28761
   213
    @{command_def "let"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28754
   214
    @{keyword_def "is"} & : & syntax \\
wenzelm@28754
   215
  \end{matharray}
wenzelm@28754
   216
wenzelm@28754
   217
  Abbreviations may be either bound by explicit @{command
wenzelm@28754
   218
  "let"}~@{text "p \<equiv> t"} statements, or by annotating assumptions or
wenzelm@28754
   219
  goal statements with a list of patterns ``@{text "(\<IS> p\<^sub>1 \<dots>
wenzelm@28754
   220
  p\<^sub>n)"}''.  In both cases, higher-order matching is invoked to
wenzelm@28754
   221
  bind extra-logical term variables, which may be either named
wenzelm@28754
   222
  schematic variables of the form @{text ?x}, or nameless dummies
wenzelm@28754
   223
  ``@{variable _}'' (underscore). Note that in the @{command "let"}
wenzelm@28754
   224
  form the patterns occur on the left-hand side, while the @{keyword
wenzelm@28754
   225
  "is"} patterns are in postfix position.
wenzelm@28754
   226
wenzelm@28754
   227
  Polymorphism of term bindings is handled in Hindley-Milner style,
wenzelm@28754
   228
  similar to ML.  Type variables referring to local assumptions or
wenzelm@28754
   229
  open goal statements are \emph{fixed}, while those of finished
wenzelm@28754
   230
  results or bound by @{command "let"} may occur in \emph{arbitrary}
wenzelm@28754
   231
  instances later.  Even though actual polymorphism should be rarely
wenzelm@28754
   232
  used in practice, this mechanism is essential to achieve proper
wenzelm@28754
   233
  incremental type-inference, as the user proceeds to build up the
wenzelm@28754
   234
  Isar proof text from left to right.
wenzelm@28754
   235
wenzelm@28754
   236
  \medskip Term abbreviations are quite different from local
wenzelm@28754
   237
  definitions as introduced via @{command "def"} (see
wenzelm@28754
   238
  \secref{sec:proof-context}).  The latter are visible within the
wenzelm@28754
   239
  logic as actual equations, while abbreviations disappear during the
wenzelm@28754
   240
  input process just after type checking.  Also note that @{command
wenzelm@28754
   241
  "def"} does not support polymorphism.
wenzelm@28754
   242
wenzelm@28754
   243
  \begin{rail}
wenzelm@28754
   244
    'let' ((term + 'and') '=' term + 'and')
wenzelm@28754
   245
    ;  
wenzelm@28754
   246
  \end{rail}
wenzelm@28754
   247
wenzelm@28754
   248
  The syntax of @{keyword "is"} patterns follows \railnonterm{termpat}
wenzelm@28754
   249
  or \railnonterm{proppat} (see \secref{sec:term-decls}).
wenzelm@28754
   250
wenzelm@28760
   251
  \begin{description}
wenzelm@28754
   252
wenzelm@28760
   253
  \item @{command "let"}~@{text "p\<^sub>1 = t\<^sub>1 \<AND> \<dots> p\<^sub>n = t\<^sub>n"} binds any
wenzelm@28760
   254
  text variables in patterns @{text "p\<^sub>1, \<dots>, p\<^sub>n"} by simultaneous
wenzelm@28760
   255
  higher-order matching against terms @{text "t\<^sub>1, \<dots>, t\<^sub>n"}.
wenzelm@28754
   256
wenzelm@28760
   257
  \item @{text "(\<IS> p\<^sub>1 \<dots> p\<^sub>n)"} resembles @{command "let"}, but
wenzelm@28760
   258
  matches @{text "p\<^sub>1, \<dots>, p\<^sub>n"} against the preceding statement.  Also
wenzelm@28760
   259
  note that @{keyword "is"} is not a separate command, but part of
wenzelm@28760
   260
  others (such as @{command "assume"}, @{command "have"} etc.).
wenzelm@28754
   261
wenzelm@28760
   262
  \end{description}
wenzelm@28754
   263
wenzelm@28754
   264
  Some \emph{implicit} term abbreviations\index{term abbreviations}
wenzelm@28754
   265
  for goals and facts are available as well.  For any open goal,
wenzelm@28754
   266
  @{variable_ref thesis} refers to its object-level statement,
wenzelm@28754
   267
  abstracted over any meta-level parameters (if present).  Likewise,
wenzelm@28754
   268
  @{variable_ref this} is bound for fact statements resulting from
wenzelm@28754
   269
  assumptions or finished goals.  In case @{variable this} refers to
wenzelm@28754
   270
  an object-logic statement that is an application @{text "f t"}, then
wenzelm@28754
   271
  @{text t} is bound to the special text variable ``@{variable "\<dots>"}''
wenzelm@28754
   272
  (three dots).  The canonical application of this convenience are
wenzelm@28754
   273
  calculational proofs (see \secref{sec:calculation}).
wenzelm@28754
   274
*}
wenzelm@28754
   275
wenzelm@28754
   276
wenzelm@28754
   277
subsection {* Facts and forward chaining *}
wenzelm@26870
   278
wenzelm@26870
   279
text {*
wenzelm@26870
   280
  \begin{matharray}{rcl}
wenzelm@28761
   281
    @{command_def "note"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
   282
    @{command_def "then"} & : & @{text "proof(state) \<rightarrow> proof(chain)"} \\
wenzelm@28761
   283
    @{command_def "from"} & : & @{text "proof(state) \<rightarrow> proof(chain)"} \\
wenzelm@28761
   284
    @{command_def "with"} & : & @{text "proof(state) \<rightarrow> proof(chain)"} \\
wenzelm@28761
   285
    @{command_def "using"} & : & @{text "proof(prove) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   286
    @{command_def "unfolding"} & : & @{text "proof(prove) \<rightarrow> proof(prove)"} \\
wenzelm@26870
   287
  \end{matharray}
wenzelm@26870
   288
wenzelm@26870
   289
  New facts are established either by assumption or proof of local
wenzelm@26870
   290
  statements.  Any fact will usually be involved in further proofs,
wenzelm@26870
   291
  either as explicit arguments of proof methods, or when forward
wenzelm@26870
   292
  chaining towards the next goal via @{command "then"} (and variants);
wenzelm@26870
   293
  @{command "from"} and @{command "with"} are composite forms
wenzelm@26870
   294
  involving @{command "note"}.  The @{command "using"} elements
wenzelm@26870
   295
  augments the collection of used facts \emph{after} a goal has been
wenzelm@26870
   296
  stated.  Note that the special theorem name @{fact_ref this} refers
wenzelm@26870
   297
  to the most recently established facts, but only \emph{before}
wenzelm@26870
   298
  issuing a follow-up claim.
wenzelm@26870
   299
wenzelm@26870
   300
  \begin{rail}
wenzelm@26870
   301
    'note' (thmdef? thmrefs + 'and')
wenzelm@26870
   302
    ;
wenzelm@26870
   303
    ('from' | 'with' | 'using' | 'unfolding') (thmrefs + 'and')
wenzelm@26870
   304
    ;
wenzelm@26870
   305
  \end{rail}
wenzelm@26870
   306
wenzelm@28760
   307
  \begin{description}
wenzelm@26870
   308
wenzelm@28760
   309
  \item @{command "note"}~@{text "a = b\<^sub>1 \<dots> b\<^sub>n"} recalls existing facts
wenzelm@28760
   310
  @{text "b\<^sub>1, \<dots>, b\<^sub>n"}, binding the result as @{text a}.  Note that
wenzelm@28760
   311
  attributes may be involved as well, both on the left and right hand
wenzelm@28760
   312
  sides.
wenzelm@26870
   313
wenzelm@28760
   314
  \item @{command "then"} indicates forward chaining by the current
wenzelm@26870
   315
  facts in order to establish the goal to be claimed next.  The
wenzelm@26870
   316
  initial proof method invoked to refine that will be offered the
wenzelm@26870
   317
  facts to do ``anything appropriate'' (see also
wenzelm@26870
   318
  \secref{sec:proof-steps}).  For example, method @{method_ref rule}
wenzelm@26870
   319
  (see \secref{sec:pure-meth-att}) would typically do an elimination
wenzelm@26870
   320
  rather than an introduction.  Automatic methods usually insert the
wenzelm@26870
   321
  facts into the goal state before operation.  This provides a simple
wenzelm@26870
   322
  scheme to control relevance of facts in automated proof search.
wenzelm@26870
   323
  
wenzelm@28760
   324
  \item @{command "from"}~@{text b} abbreviates ``@{command
wenzelm@26870
   325
  "note"}~@{text b}~@{command "then"}''; thus @{command "then"} is
wenzelm@26870
   326
  equivalent to ``@{command "from"}~@{text this}''.
wenzelm@26870
   327
  
wenzelm@28760
   328
  \item @{command "with"}~@{text "b\<^sub>1 \<dots> b\<^sub>n"} abbreviates ``@{command
wenzelm@28760
   329
  "from"}~@{text "b\<^sub>1 \<dots> b\<^sub>n \<AND> this"}''; thus the forward chaining
wenzelm@28760
   330
  is from earlier facts together with the current ones.
wenzelm@26870
   331
  
wenzelm@28760
   332
  \item @{command "using"}~@{text "b\<^sub>1 \<dots> b\<^sub>n"} augments the facts being
wenzelm@28760
   333
  currently indicated for use by a subsequent refinement step (such as
wenzelm@28760
   334
  @{command_ref "apply"} or @{command_ref "proof"}).
wenzelm@26870
   335
  
wenzelm@28760
   336
  \item @{command "unfolding"}~@{text "b\<^sub>1 \<dots> b\<^sub>n"} is structurally
wenzelm@28760
   337
  similar to @{command "using"}, but unfolds definitional equations
wenzelm@28760
   338
  @{text "b\<^sub>1, \<dots> b\<^sub>n"} throughout the goal state and facts.
wenzelm@26870
   339
wenzelm@28760
   340
  \end{description}
wenzelm@26870
   341
wenzelm@26870
   342
  Forward chaining with an empty list of theorems is the same as not
wenzelm@26870
   343
  chaining at all.  Thus ``@{command "from"}~@{text nothing}'' has no
wenzelm@26870
   344
  effect apart from entering @{text "prove(chain)"} mode, since
wenzelm@26870
   345
  @{fact_ref nothing} is bound to the empty list of theorems.
wenzelm@26870
   346
wenzelm@26870
   347
  Basic proof methods (such as @{method_ref rule}) expect multiple
wenzelm@26870
   348
  facts to be given in their proper order, corresponding to a prefix
wenzelm@26870
   349
  of the premises of the rule involved.  Note that positions may be
wenzelm@26870
   350
  easily skipped using something like @{command "from"}~@{text "_
wenzelm@26870
   351
  \<AND> a \<AND> b"}, for example.  This involves the trivial rule
wenzelm@26870
   352
  @{text "PROP \<psi> \<Longrightarrow> PROP \<psi>"}, which is bound in Isabelle/Pure as
wenzelm@26870
   353
  ``@{fact_ref "_"}'' (underscore).
wenzelm@26870
   354
wenzelm@26870
   355
  Automated methods (such as @{method simp} or @{method auto}) just
wenzelm@26870
   356
  insert any given facts before their usual operation.  Depending on
wenzelm@26870
   357
  the kind of procedure involved, the order of facts is less
wenzelm@26870
   358
  significant here.
wenzelm@26870
   359
*}
wenzelm@26870
   360
wenzelm@26870
   361
wenzelm@28754
   362
subsection {* Goals \label{sec:goals} *}
wenzelm@26870
   363
wenzelm@26870
   364
text {*
wenzelm@26870
   365
  \begin{matharray}{rcl}
wenzelm@28761
   366
    @{command_def "lemma"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
wenzelm@28761
   367
    @{command_def "theorem"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
wenzelm@28761
   368
    @{command_def "corollary"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
wenzelm@28761
   369
    @{command_def "have"} & : & @{text "proof(state) | proof(chain) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   370
    @{command_def "show"} & : & @{text "proof(state) | proof(chain) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   371
    @{command_def "hence"} & : & @{text "proof(state) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   372
    @{command_def "thus"} & : & @{text "proof(state) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   373
    @{command_def "print_statement"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
wenzelm@26870
   374
  \end{matharray}
wenzelm@26870
   375
wenzelm@26870
   376
  From a theory context, proof mode is entered by an initial goal
wenzelm@26870
   377
  command such as @{command "lemma"}, @{command "theorem"}, or
wenzelm@26870
   378
  @{command "corollary"}.  Within a proof, new claims may be
wenzelm@26870
   379
  introduced locally as well; four variants are available here to
wenzelm@26870
   380
  indicate whether forward chaining of facts should be performed
wenzelm@26870
   381
  initially (via @{command_ref "then"}), and whether the final result
wenzelm@26870
   382
  is meant to solve some pending goal.
wenzelm@26870
   383
wenzelm@26870
   384
  Goals may consist of multiple statements, resulting in a list of
wenzelm@26870
   385
  facts eventually.  A pending multi-goal is internally represented as
wenzelm@28856
   386
  a meta-level conjunction (@{text "&&&"}), which is usually
wenzelm@26870
   387
  split into the corresponding number of sub-goals prior to an initial
wenzelm@26870
   388
  method application, via @{command_ref "proof"}
wenzelm@26870
   389
  (\secref{sec:proof-steps}) or @{command_ref "apply"}
wenzelm@26870
   390
  (\secref{sec:tactic-commands}).  The @{method_ref induct} method
wenzelm@26870
   391
  covered in \secref{sec:cases-induct} acts on multiple claims
wenzelm@26870
   392
  simultaneously.
wenzelm@26870
   393
wenzelm@26870
   394
  Claims at the theory level may be either in short or long form.  A
wenzelm@26870
   395
  short goal merely consists of several simultaneous propositions
wenzelm@26870
   396
  (often just one).  A long goal includes an explicit context
wenzelm@26870
   397
  specification for the subsequent conclusion, involving local
wenzelm@26870
   398
  parameters and assumptions.  Here the role of each part of the
wenzelm@26870
   399
  statement is explicitly marked by separate keywords (see also
wenzelm@26870
   400
  \secref{sec:locale}); the local assumptions being introduced here
wenzelm@26870
   401
  are available as @{fact_ref assms} in the proof.  Moreover, there
wenzelm@26870
   402
  are two kinds of conclusions: @{element_def "shows"} states several
wenzelm@26870
   403
  simultaneous propositions (essentially a big conjunction), while
wenzelm@26870
   404
  @{element_def "obtains"} claims several simultaneous simultaneous
wenzelm@26870
   405
  contexts of (essentially a big disjunction of eliminated parameters
wenzelm@26870
   406
  and assumptions, cf.\ \secref{sec:obtain}).
wenzelm@26870
   407
wenzelm@26870
   408
  \begin{rail}
wenzelm@26870
   409
    ('lemma' | 'theorem' | 'corollary') target? (goal | longgoal)
wenzelm@26870
   410
    ;
wenzelm@26870
   411
    ('have' | 'show' | 'hence' | 'thus') goal
wenzelm@26870
   412
    ;
wenzelm@26870
   413
    'print\_statement' modes? thmrefs
wenzelm@26870
   414
    ;
wenzelm@26870
   415
  
wenzelm@26870
   416
    goal: (props + 'and')
wenzelm@26870
   417
    ;
wenzelm@26870
   418
    longgoal: thmdecl? (contextelem *) conclusion
wenzelm@26870
   419
    ;
wenzelm@26870
   420
    conclusion: 'shows' goal | 'obtains' (parname? case + '|')
wenzelm@26870
   421
    ;
wenzelm@26870
   422
    case: (vars + 'and') 'where' (props + 'and')
wenzelm@26870
   423
    ;
wenzelm@26870
   424
  \end{rail}
wenzelm@26870
   425
wenzelm@28760
   426
  \begin{description}
wenzelm@26870
   427
  
wenzelm@28760
   428
  \item @{command "lemma"}~@{text "a: \<phi>"} enters proof mode with
wenzelm@26870
   429
  @{text \<phi>} as main goal, eventually resulting in some fact @{text "\<turnstile>
wenzelm@26870
   430
  \<phi>"} to be put back into the target context.  An additional
wenzelm@26870
   431
  \railnonterm{context} specification may build up an initial proof
wenzelm@26870
   432
  context for the subsequent claim; this includes local definitions
wenzelm@26870
   433
  and syntax as well, see the definition of @{syntax contextelem} in
wenzelm@26870
   434
  \secref{sec:locale}.
wenzelm@26870
   435
  
wenzelm@28760
   436
  \item @{command "theorem"}~@{text "a: \<phi>"} and @{command
wenzelm@28760
   437
  "corollary"}~@{text "a: \<phi>"} are essentially the same as @{command
wenzelm@26870
   438
  "lemma"}~@{text "a: \<phi>"}, but the facts are internally marked as
wenzelm@26870
   439
  being of a different kind.  This discrimination acts like a formal
wenzelm@26870
   440
  comment.
wenzelm@26870
   441
  
wenzelm@28760
   442
  \item @{command "have"}~@{text "a: \<phi>"} claims a local goal,
wenzelm@26870
   443
  eventually resulting in a fact within the current logical context.
wenzelm@26870
   444
  This operation is completely independent of any pending sub-goals of
wenzelm@26870
   445
  an enclosing goal statements, so @{command "have"} may be freely
wenzelm@26870
   446
  used for experimental exploration of potential results within a
wenzelm@26870
   447
  proof body.
wenzelm@26870
   448
  
wenzelm@28760
   449
  \item @{command "show"}~@{text "a: \<phi>"} is like @{command
wenzelm@26870
   450
  "have"}~@{text "a: \<phi>"} plus a second stage to refine some pending
wenzelm@26870
   451
  sub-goal for each one of the finished result, after having been
wenzelm@26870
   452
  exported into the corresponding context (at the head of the
wenzelm@26870
   453
  sub-proof of this @{command "show"} command).
wenzelm@26870
   454
  
wenzelm@26870
   455
  To accommodate interactive debugging, resulting rules are printed
wenzelm@26870
   456
  before being applied internally.  Even more, interactive execution
wenzelm@26870
   457
  of @{command "show"} predicts potential failure and displays the
wenzelm@26870
   458
  resulting error as a warning beforehand.  Watch out for the
wenzelm@26870
   459
  following message:
wenzelm@26870
   460
wenzelm@26870
   461
  %FIXME proper antiquitation
wenzelm@26870
   462
  \begin{ttbox}
wenzelm@26870
   463
  Problem! Local statement will fail to solve any pending goal
wenzelm@26870
   464
  \end{ttbox}
wenzelm@26870
   465
  
wenzelm@28760
   466
  \item @{command "hence"} abbreviates ``@{command "then"}~@{command
wenzelm@26870
   467
  "have"}'', i.e.\ claims a local goal to be proven by forward
wenzelm@26870
   468
  chaining the current facts.  Note that @{command "hence"} is also
wenzelm@26870
   469
  equivalent to ``@{command "from"}~@{text this}~@{command "have"}''.
wenzelm@26870
   470
  
wenzelm@28760
   471
  \item @{command "thus"} abbreviates ``@{command "then"}~@{command
wenzelm@26870
   472
  "show"}''.  Note that @{command "thus"} is also equivalent to
wenzelm@26870
   473
  ``@{command "from"}~@{text this}~@{command "show"}''.
wenzelm@26870
   474
  
wenzelm@28760
   475
  \item @{command "print_statement"}~@{text a} prints facts from the
wenzelm@26870
   476
  current theory or proof context in long statement form, according to
wenzelm@26870
   477
  the syntax for @{command "lemma"} given above.
wenzelm@26870
   478
wenzelm@28760
   479
  \end{description}
wenzelm@26870
   480
wenzelm@26870
   481
  Any goal statement causes some term abbreviations (such as
wenzelm@26870
   482
  @{variable_ref "?thesis"}) to be bound automatically, see also
wenzelm@26922
   483
  \secref{sec:term-abbrev}.
wenzelm@26870
   484
wenzelm@26870
   485
  The optional case names of @{element_ref "obtains"} have a twofold
wenzelm@26870
   486
  meaning: (1) during the of this claim they refer to the the local
wenzelm@26870
   487
  context introductions, (2) the resulting rule is annotated
wenzelm@26870
   488
  accordingly to support symbolic case splits when used with the
wenzelm@27116
   489
  @{method_ref cases} method (cf.\ \secref{sec:cases-induct}).
wenzelm@26870
   490
wenzelm@26870
   491
  \medskip
wenzelm@26870
   492
wenzelm@26870
   493
  \begin{warn}
wenzelm@26870
   494
    Isabelle/Isar suffers theory-level goal statements to contain
wenzelm@26870
   495
    \emph{unbound schematic variables}, although this does not conform
wenzelm@26870
   496
    to the aim of human-readable proof documents!  The main problem
wenzelm@26870
   497
    with schematic goals is that the actual outcome is usually hard to
wenzelm@26870
   498
    predict, depending on the behavior of the proof methods applied
wenzelm@26870
   499
    during the course of reasoning.  Note that most semi-automated
wenzelm@26870
   500
    methods heavily depend on several kinds of implicit rule
wenzelm@26870
   501
    declarations within the current theory context.  As this would
wenzelm@26870
   502
    also result in non-compositional checking of sub-proofs,
wenzelm@26870
   503
    \emph{local goals} are not allowed to be schematic at all.
wenzelm@26870
   504
    Nevertheless, schematic goals do have their use in Prolog-style
wenzelm@26870
   505
    interactive synthesis of proven results, usually by stepwise
wenzelm@26870
   506
    refinement via emulation of traditional Isabelle tactic scripts
wenzelm@26870
   507
    (see also \secref{sec:tactic-commands}).  In any case, users
wenzelm@26870
   508
    should know what they are doing.
wenzelm@26870
   509
  \end{warn}
wenzelm@26870
   510
*}
wenzelm@26870
   511
wenzelm@26870
   512
wenzelm@28754
   513
section {* Refinement steps *}
wenzelm@28754
   514
wenzelm@28754
   515
subsection {* Proof method expressions \label{sec:proof-meth} *}
wenzelm@28754
   516
wenzelm@28754
   517
text {*
wenzelm@28754
   518
  Proof methods are either basic ones, or expressions composed of
wenzelm@28754
   519
  methods via ``@{verbatim ","}'' (sequential composition),
wenzelm@28754
   520
  ``@{verbatim "|"}'' (alternative choices), ``@{verbatim "?"}'' 
wenzelm@28754
   521
  (try), ``@{verbatim "+"}'' (repeat at least once), ``@{verbatim
wenzelm@28754
   522
  "["}@{text n}@{verbatim "]"}'' (restriction to first @{text n}
wenzelm@28754
   523
  sub-goals, with default @{text "n = 1"}).  In practice, proof
wenzelm@28754
   524
  methods are usually just a comma separated list of
wenzelm@28754
   525
  \railqtok{nameref}~\railnonterm{args} specifications.  Note that
wenzelm@28754
   526
  parentheses may be dropped for single method specifications (with no
wenzelm@28754
   527
  arguments).
wenzelm@28754
   528
wenzelm@28754
   529
  \indexouternonterm{method}
wenzelm@28754
   530
  \begin{rail}
wenzelm@28754
   531
    method: (nameref | '(' methods ')') (() | '?' | '+' | '[' nat? ']')
wenzelm@28754
   532
    ;
wenzelm@28754
   533
    methods: (nameref args | method) + (',' | '|')
wenzelm@28754
   534
    ;
wenzelm@28754
   535
  \end{rail}
wenzelm@28754
   536
wenzelm@28754
   537
  Proper Isar proof methods do \emph{not} admit arbitrary goal
wenzelm@28754
   538
  addressing, but refer either to the first sub-goal or all sub-goals
wenzelm@28754
   539
  uniformly.  The goal restriction operator ``@{text "[n]"}''
wenzelm@28754
   540
  evaluates a method expression within a sandbox consisting of the
wenzelm@28754
   541
  first @{text n} sub-goals (which need to exist).  For example, the
wenzelm@28754
   542
  method ``@{text "simp_all[3]"}'' simplifies the first three
wenzelm@28754
   543
  sub-goals, while ``@{text "(rule foo, simp_all)[]"}'' simplifies all
wenzelm@28754
   544
  new goals that emerge from applying rule @{text "foo"} to the
wenzelm@28754
   545
  originally first one.
wenzelm@28754
   546
wenzelm@28754
   547
  Improper methods, notably tactic emulations, offer a separate
wenzelm@28754
   548
  low-level goal addressing scheme as explicit argument to the
wenzelm@28754
   549
  individual tactic being involved.  Here ``@{text "[!]"}'' refers to
wenzelm@28754
   550
  all goals, and ``@{text "[n-]"}'' to all goals starting from @{text
wenzelm@28754
   551
  "n"}.
wenzelm@28754
   552
wenzelm@28754
   553
  \indexouternonterm{goalspec}
wenzelm@28754
   554
  \begin{rail}
wenzelm@28754
   555
    goalspec: '[' (nat '-' nat | nat '-' | nat | '!' ) ']'
wenzelm@28754
   556
    ;
wenzelm@28754
   557
  \end{rail}
wenzelm@28754
   558
*}
wenzelm@28754
   559
wenzelm@28754
   560
wenzelm@28754
   561
subsection {* Initial and terminal proof steps \label{sec:proof-steps} *}
wenzelm@26870
   562
wenzelm@26870
   563
text {*
wenzelm@26870
   564
  \begin{matharray}{rcl}
wenzelm@28761
   565
    @{command_def "proof"} & : & @{text "proof(prove) \<rightarrow> proof(state)"} \\
wenzelm@28761
   566
    @{command_def "qed"} & : & @{text "proof(state) \<rightarrow> proof(state) | local_theory | theory"} \\
wenzelm@28761
   567
    @{command_def "by"} & : & @{text "proof(prove) \<rightarrow> proof(state) | local_theory | theory"} \\
wenzelm@28761
   568
    @{command_def ".."} & : & @{text "proof(prove) \<rightarrow> proof(state) | local_theory | theory"} \\
wenzelm@28761
   569
    @{command_def "."} & : & @{text "proof(prove) \<rightarrow> proof(state) | local_theory | theory"} \\
wenzelm@28761
   570
    @{command_def "sorry"} & : & @{text "proof(prove) \<rightarrow> proof(state) | local_theory | theory"} \\
wenzelm@26870
   571
  \end{matharray}
wenzelm@26870
   572
wenzelm@26870
   573
  Arbitrary goal refinement via tactics is considered harmful.
wenzelm@26870
   574
  Structured proof composition in Isar admits proof methods to be
wenzelm@26870
   575
  invoked in two places only.
wenzelm@26870
   576
wenzelm@26870
   577
  \begin{enumerate}
wenzelm@26870
   578
wenzelm@26870
   579
  \item An \emph{initial} refinement step @{command_ref
wenzelm@26870
   580
  "proof"}~@{text "m\<^sub>1"} reduces a newly stated goal to a number
wenzelm@26870
   581
  of sub-goals that are to be solved later.  Facts are passed to
wenzelm@26870
   582
  @{text "m\<^sub>1"} for forward chaining, if so indicated by @{text
wenzelm@26870
   583
  "proof(chain)"} mode.
wenzelm@26870
   584
  
wenzelm@26870
   585
  \item A \emph{terminal} conclusion step @{command_ref "qed"}~@{text
wenzelm@26870
   586
  "m\<^sub>2"} is intended to solve remaining goals.  No facts are
wenzelm@26870
   587
  passed to @{text "m\<^sub>2"}.
wenzelm@26870
   588
wenzelm@26870
   589
  \end{enumerate}
wenzelm@26870
   590
wenzelm@26870
   591
  The only other (proper) way to affect pending goals in a proof body
wenzelm@26870
   592
  is by @{command_ref "show"}, which involves an explicit statement of
wenzelm@26870
   593
  what is to be solved eventually.  Thus we avoid the fundamental
wenzelm@26870
   594
  problem of unstructured tactic scripts that consist of numerous
wenzelm@26870
   595
  consecutive goal transformations, with invisible effects.
wenzelm@26870
   596
wenzelm@26870
   597
  \medskip As a general rule of thumb for good proof style, initial
wenzelm@26870
   598
  proof methods should either solve the goal completely, or constitute
wenzelm@26870
   599
  some well-understood reduction to new sub-goals.  Arbitrary
wenzelm@26870
   600
  automatic proof tools that are prone leave a large number of badly
wenzelm@26870
   601
  structured sub-goals are no help in continuing the proof document in
wenzelm@26870
   602
  an intelligible manner.
wenzelm@26870
   603
wenzelm@26870
   604
  Unless given explicitly by the user, the default initial method is
wenzelm@26870
   605
  ``@{method_ref rule}'', which applies a single standard elimination
wenzelm@26870
   606
  or introduction rule according to the topmost symbol involved.
wenzelm@26870
   607
  There is no separate default terminal method.  Any remaining goals
wenzelm@26870
   608
  are always solved by assumption in the very last step.
wenzelm@26870
   609
wenzelm@26870
   610
  \begin{rail}
wenzelm@26870
   611
    'proof' method?
wenzelm@26870
   612
    ;
wenzelm@26870
   613
    'qed' method?
wenzelm@26870
   614
    ;
wenzelm@26870
   615
    'by' method method?
wenzelm@26870
   616
    ;
wenzelm@26870
   617
    ('.' | '..' | 'sorry')
wenzelm@26870
   618
    ;
wenzelm@26870
   619
  \end{rail}
wenzelm@26870
   620
wenzelm@28760
   621
  \begin{description}
wenzelm@26870
   622
  
wenzelm@28760
   623
  \item @{command "proof"}~@{text "m\<^sub>1"} refines the goal by proof
wenzelm@28760
   624
  method @{text "m\<^sub>1"}; facts for forward chaining are passed if so
wenzelm@28760
   625
  indicated by @{text "proof(chain)"} mode.
wenzelm@26870
   626
  
wenzelm@28760
   627
  \item @{command "qed"}~@{text "m\<^sub>2"} refines any remaining goals by
wenzelm@28760
   628
  proof method @{text "m\<^sub>2"} and concludes the sub-proof by assumption.
wenzelm@28760
   629
  If the goal had been @{text "show"} (or @{text "thus"}), some
wenzelm@28760
   630
  pending sub-goal is solved as well by the rule resulting from the
wenzelm@28760
   631
  result \emph{exported} into the enclosing goal context.  Thus @{text
wenzelm@28760
   632
  "qed"} may fail for two reasons: either @{text "m\<^sub>2"} fails, or the
wenzelm@28760
   633
  resulting rule does not fit to any pending goal\footnote{This
wenzelm@28760
   634
  includes any additional ``strong'' assumptions as introduced by
wenzelm@28760
   635
  @{command "assume"}.} of the enclosing context.  Debugging such a
wenzelm@28760
   636
  situation might involve temporarily changing @{command "show"} into
wenzelm@28760
   637
  @{command "have"}, or weakening the local context by replacing
wenzelm@28760
   638
  occurrences of @{command "assume"} by @{command "presume"}.
wenzelm@26870
   639
  
wenzelm@28760
   640
  \item @{command "by"}~@{text "m\<^sub>1 m\<^sub>2"} is a \emph{terminal
wenzelm@28760
   641
  proof}\index{proof!terminal}; it abbreviates @{command
wenzelm@28760
   642
  "proof"}~@{text "m\<^sub>1"}~@{text "qed"}~@{text "m\<^sub>2"}, but with
wenzelm@28760
   643
  backtracking across both methods.  Debugging an unsuccessful
wenzelm@28760
   644
  @{command "by"}~@{text "m\<^sub>1 m\<^sub>2"} command can be done by expanding its
wenzelm@28760
   645
  definition; in many cases @{command "proof"}~@{text "m\<^sub>1"} (or even
wenzelm@28760
   646
  @{text "apply"}~@{text "m\<^sub>1"}) is already sufficient to see the
wenzelm@26870
   647
  problem.
wenzelm@26870
   648
wenzelm@28760
   649
  \item ``@{command ".."}'' is a \emph{default
wenzelm@26870
   650
  proof}\index{proof!default}; it abbreviates @{command "by"}~@{text
wenzelm@26870
   651
  "rule"}.
wenzelm@26870
   652
wenzelm@28760
   653
  \item ``@{command "."}'' is a \emph{trivial
wenzelm@26870
   654
  proof}\index{proof!trivial}; it abbreviates @{command "by"}~@{text
wenzelm@26870
   655
  "this"}.
wenzelm@26870
   656
  
wenzelm@28760
   657
  \item @{command "sorry"} is a \emph{fake proof}\index{proof!fake}
wenzelm@26870
   658
  pretending to solve the pending claim without further ado.  This
wenzelm@26870
   659
  only works in interactive development, or if the @{ML
wenzelm@26870
   660
  quick_and_dirty} flag is enabled (in ML).  Facts emerging from fake
wenzelm@26870
   661
  proofs are not the real thing.  Internally, each theorem container
wenzelm@26870
   662
  is tainted by an oracle invocation, which is indicated as ``@{text
wenzelm@26870
   663
  "[!]"}'' in the printed result.
wenzelm@26870
   664
  
wenzelm@26870
   665
  The most important application of @{command "sorry"} is to support
wenzelm@26870
   666
  experimentation and top-down proof development.
wenzelm@26870
   667
wenzelm@28760
   668
  \end{description}
wenzelm@26870
   669
*}
wenzelm@26870
   670
wenzelm@26870
   671
wenzelm@28754
   672
subsection {* Fundamental methods and attributes \label{sec:pure-meth-att} *}
wenzelm@26870
   673
wenzelm@26870
   674
text {*
wenzelm@26870
   675
  The following proof methods and attributes refer to basic logical
wenzelm@26870
   676
  operations of Isar.  Further methods and attributes are provided by
wenzelm@26870
   677
  several generic and object-logic specific tools and packages (see
wenzelm@26870
   678
  \chref{ch:gen-tools} and \chref{ch:hol}).
wenzelm@26870
   679
wenzelm@26870
   680
  \begin{matharray}{rcl}
wenzelm@28761
   681
    @{method_def "-"} & : & @{text method} \\
wenzelm@28761
   682
    @{method_def "fact"} & : & @{text method} \\
wenzelm@28761
   683
    @{method_def "assumption"} & : & @{text method} \\
wenzelm@28761
   684
    @{method_def "this"} & : & @{text method} \\
wenzelm@28761
   685
    @{method_def "rule"} & : & @{text method} \\
wenzelm@28761
   686
    @{method_def "iprover"} & : & @{text method} \\[0.5ex]
wenzelm@28761
   687
    @{attribute_def (Pure) "intro"} & : & @{text attribute} \\
wenzelm@28761
   688
    @{attribute_def (Pure) "elim"} & : & @{text attribute} \\
wenzelm@28761
   689
    @{attribute_def (Pure) "dest"} & : & @{text attribute} \\
wenzelm@28761
   690
    @{attribute_def "rule"} & : & @{text attribute} \\[0.5ex]
wenzelm@28761
   691
    @{attribute_def "OF"} & : & @{text attribute} \\
wenzelm@28761
   692
    @{attribute_def "of"} & : & @{text attribute} \\
wenzelm@28761
   693
    @{attribute_def "where"} & : & @{text attribute} \\
wenzelm@26870
   694
  \end{matharray}
wenzelm@26870
   695
wenzelm@26870
   696
  \begin{rail}
wenzelm@26870
   697
    'fact' thmrefs?
wenzelm@26870
   698
    ;
wenzelm@26870
   699
    'rule' thmrefs?
wenzelm@26870
   700
    ;
wenzelm@26870
   701
    'iprover' ('!' ?) (rulemod *)
wenzelm@26870
   702
    ;
wenzelm@26870
   703
    rulemod: ('intro' | 'elim' | 'dest') ((('!' | () | '?') nat?) | 'del') ':' thmrefs
wenzelm@26870
   704
    ;
wenzelm@26870
   705
    ('intro' | 'elim' | 'dest') ('!' | () | '?') nat?
wenzelm@26870
   706
    ;
wenzelm@26870
   707
    'rule' 'del'
wenzelm@26870
   708
    ;
wenzelm@26870
   709
    'OF' thmrefs
wenzelm@26870
   710
    ;
wenzelm@26870
   711
    'of' insts ('concl' ':' insts)?
wenzelm@26870
   712
    ;
wenzelm@26870
   713
    'where' ((name | var | typefree | typevar) '=' (type | term) * 'and')
wenzelm@26870
   714
    ;
wenzelm@26870
   715
  \end{rail}
wenzelm@26870
   716
wenzelm@28760
   717
  \begin{description}
wenzelm@26870
   718
  
wenzelm@28760
   719
  \item ``@{method "-"}'' (minus) does nothing but insert the forward
wenzelm@28760
   720
  chaining facts as premises into the goal.  Note that command
wenzelm@26870
   721
  @{command_ref "proof"} without any method actually performs a single
wenzelm@26870
   722
  reduction step using the @{method_ref rule} method; thus a plain
wenzelm@26870
   723
  \emph{do-nothing} proof step would be ``@{command "proof"}~@{text
wenzelm@26870
   724
  "-"}'' rather than @{command "proof"} alone.
wenzelm@26870
   725
  
wenzelm@28760
   726
  \item @{method "fact"}~@{text "a\<^sub>1 \<dots> a\<^sub>n"} composes some fact from
wenzelm@28760
   727
  @{text "a\<^sub>1, \<dots>, a\<^sub>n"} (or implicitly from the current proof context)
wenzelm@28760
   728
  modulo unification of schematic type and term variables.  The rule
wenzelm@28760
   729
  structure is not taken into account, i.e.\ meta-level implication is
wenzelm@28760
   730
  considered atomic.  This is the same principle underlying literal
wenzelm@28760
   731
  facts (cf.\ \secref{sec:syn-att}): ``@{command "have"}~@{text
wenzelm@28760
   732
  "\<phi>"}~@{command "by"}~@{text fact}'' is equivalent to ``@{command
wenzelm@28760
   733
  "note"}~@{verbatim "`"}@{text \<phi>}@{verbatim "`"}'' provided that
wenzelm@28760
   734
  @{text "\<turnstile> \<phi>"} is an instance of some known @{text "\<turnstile> \<phi>"} in the
wenzelm@28760
   735
  proof context.
wenzelm@26870
   736
  
wenzelm@28760
   737
  \item @{method assumption} solves some goal by a single assumption
wenzelm@26870
   738
  step.  All given facts are guaranteed to participate in the
wenzelm@26870
   739
  refinement; this means there may be only 0 or 1 in the first place.
wenzelm@26870
   740
  Recall that @{command "qed"} (\secref{sec:proof-steps}) already
wenzelm@26870
   741
  concludes any remaining sub-goals by assumption, so structured
wenzelm@26870
   742
  proofs usually need not quote the @{method assumption} method at
wenzelm@26870
   743
  all.
wenzelm@26870
   744
  
wenzelm@28760
   745
  \item @{method this} applies all of the current facts directly as
wenzelm@26870
   746
  rules.  Recall that ``@{command "."}'' (dot) abbreviates ``@{command
wenzelm@26870
   747
  "by"}~@{text this}''.
wenzelm@26870
   748
  
wenzelm@28760
   749
  \item @{method rule}~@{text "a\<^sub>1 \<dots> a\<^sub>n"} applies some rule given as
wenzelm@28760
   750
  argument in backward manner; facts are used to reduce the rule
wenzelm@28760
   751
  before applying it to the goal.  Thus @{method rule} without facts
wenzelm@28760
   752
  is plain introduction, while with facts it becomes elimination.
wenzelm@26870
   753
  
wenzelm@26870
   754
  When no arguments are given, the @{method rule} method tries to pick
wenzelm@26870
   755
  appropriate rules automatically, as declared in the current context
wenzelm@26901
   756
  using the @{attribute (Pure) intro}, @{attribute (Pure) elim},
wenzelm@26901
   757
  @{attribute (Pure) dest} attributes (see below).  This is the
wenzelm@26901
   758
  default behavior of @{command "proof"} and ``@{command ".."}'' 
wenzelm@26901
   759
  (double-dot) steps (see \secref{sec:proof-steps}).
wenzelm@26870
   760
  
wenzelm@28760
   761
  \item @{method iprover} performs intuitionistic proof search,
wenzelm@26870
   762
  depending on specifically declared rules from the context, or given
wenzelm@26870
   763
  as explicit arguments.  Chained facts are inserted into the goal
wenzelm@28760
   764
  before commencing proof search; ``@{method iprover}@{text "!"}''
wenzelm@26870
   765
  means to include the current @{fact prems} as well.
wenzelm@26870
   766
  
wenzelm@26901
   767
  Rules need to be classified as @{attribute (Pure) intro},
wenzelm@26901
   768
  @{attribute (Pure) elim}, or @{attribute (Pure) dest}; here the
wenzelm@26901
   769
  ``@{text "!"}'' indicator refers to ``safe'' rules, which may be
wenzelm@26901
   770
  applied aggressively (without considering back-tracking later).
wenzelm@26901
   771
  Rules declared with ``@{text "?"}'' are ignored in proof search (the
wenzelm@26901
   772
  single-step @{method rule} method still observes these).  An
wenzelm@26901
   773
  explicit weight annotation may be given as well; otherwise the
wenzelm@26901
   774
  number of rule premises will be taken into account here.
wenzelm@26870
   775
  
wenzelm@28760
   776
  \item @{attribute (Pure) intro}, @{attribute (Pure) elim}, and
wenzelm@28760
   777
  @{attribute (Pure) dest} declare introduction, elimination, and
wenzelm@26901
   778
  destruct rules, to be used with the @{method rule} and @{method
wenzelm@26901
   779
  iprover} methods.  Note that the latter will ignore rules declared
wenzelm@26901
   780
  with ``@{text "?"}'', while ``@{text "!"}''  are used most
wenzelm@26901
   781
  aggressively.
wenzelm@26870
   782
  
wenzelm@26870
   783
  The classical reasoner (see \secref{sec:classical}) introduces its
wenzelm@26870
   784
  own variants of these attributes; use qualified names to access the
wenzelm@26901
   785
  present versions of Isabelle/Pure, i.e.\ @{attribute (Pure)
wenzelm@26901
   786
  "Pure.intro"}.
wenzelm@26870
   787
  
wenzelm@28760
   788
  \item @{attribute rule}~@{text del} undeclares introduction,
wenzelm@26870
   789
  elimination, or destruct rules.
wenzelm@26870
   790
  
wenzelm@28760
   791
  \item @{attribute OF}~@{text "a\<^sub>1 \<dots> a\<^sub>n"} applies some theorem to all
wenzelm@28760
   792
  of the given rules @{text "a\<^sub>1, \<dots>, a\<^sub>n"} (in parallel).  This
wenzelm@28760
   793
  corresponds to the @{ML [source=false] "op MRS"} operation in ML,
wenzelm@28760
   794
  but note the reversed order.  Positions may be effectively skipped
wenzelm@28760
   795
  by including ``@{text _}'' (underscore) as argument.
wenzelm@26870
   796
  
wenzelm@28760
   797
  \item @{attribute of}~@{text "t\<^sub>1 \<dots> t\<^sub>n"} performs positional
wenzelm@28760
   798
  instantiation of term variables.  The terms @{text "t\<^sub>1, \<dots>, t\<^sub>n"} are
wenzelm@28760
   799
  substituted for any schematic variables occurring in a theorem from
wenzelm@28760
   800
  left to right; ``@{text _}'' (underscore) indicates to skip a
wenzelm@28760
   801
  position.  Arguments following a ``@{text "concl:"}'' specification
wenzelm@28760
   802
  refer to positions of the conclusion of a rule.
wenzelm@26870
   803
  
wenzelm@28760
   804
  \item @{attribute "where"}~@{text "x\<^sub>1 = t\<^sub>1 \<AND> \<dots> x\<^sub>n = t\<^sub>n"}
wenzelm@28760
   805
  performs named instantiation of schematic type and term variables
wenzelm@28760
   806
  occurring in a theorem.  Schematic variables have to be specified on
wenzelm@28760
   807
  the left-hand side (e.g.\ @{text "?x1.3"}).  The question mark may
wenzelm@28760
   808
  be omitted if the variable name is a plain identifier without index.
wenzelm@28760
   809
  As type instantiations are inferred from term instantiations,
wenzelm@28760
   810
  explicit type instantiations are seldom necessary.
wenzelm@26870
   811
wenzelm@28760
   812
  \end{description}
wenzelm@26870
   813
*}
wenzelm@26870
   814
wenzelm@26870
   815
wenzelm@28754
   816
subsection {* Emulating tactic scripts \label{sec:tactic-commands} *}
wenzelm@26870
   817
wenzelm@26870
   818
text {*
wenzelm@26870
   819
  The Isar provides separate commands to accommodate tactic-style
wenzelm@26870
   820
  proof scripts within the same system.  While being outside the
wenzelm@26870
   821
  orthodox Isar proof language, these might come in handy for
wenzelm@26870
   822
  interactive exploration and debugging, or even actual tactical proof
wenzelm@26870
   823
  within new-style theories (to benefit from document preparation, for
wenzelm@26870
   824
  example).  See also \secref{sec:tactics} for actual tactics, that
wenzelm@26870
   825
  have been encapsulated as proof methods.  Proper proof methods may
wenzelm@26870
   826
  be used in scripts, too.
wenzelm@26870
   827
wenzelm@26870
   828
  \begin{matharray}{rcl}
wenzelm@28761
   829
    @{command_def "apply"}@{text "\<^sup>*"} & : & @{text "proof(prove) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   830
    @{command_def "apply_end"}@{text "\<^sup>*"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
   831
    @{command_def "done"}@{text "\<^sup>*"} & : & @{text "proof(prove) \<rightarrow> proof(state) | local_theory | theory"} \\
wenzelm@28761
   832
    @{command_def "defer"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow> proof"} \\
wenzelm@28761
   833
    @{command_def "prefer"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow> proof"} \\
wenzelm@28761
   834
    @{command_def "back"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow> proof"} \\
wenzelm@26870
   835
  \end{matharray}
wenzelm@26870
   836
wenzelm@26870
   837
  \begin{rail}
wenzelm@26870
   838
    ( 'apply' | 'apply\_end' ) method
wenzelm@26870
   839
    ;
wenzelm@26870
   840
    'defer' nat?
wenzelm@26870
   841
    ;
wenzelm@26870
   842
    'prefer' nat
wenzelm@26870
   843
    ;
wenzelm@26870
   844
  \end{rail}
wenzelm@26870
   845
wenzelm@28760
   846
  \begin{description}
wenzelm@26870
   847
wenzelm@28760
   848
  \item @{command "apply"}~@{text m} applies proof method @{text m} in
wenzelm@28760
   849
  initial position, but unlike @{command "proof"} it retains ``@{text
wenzelm@28760
   850
  "proof(prove)"}'' mode.  Thus consecutive method applications may be
wenzelm@28760
   851
  given just as in tactic scripts.
wenzelm@26870
   852
  
wenzelm@26870
   853
  Facts are passed to @{text m} as indicated by the goal's
wenzelm@26870
   854
  forward-chain mode, and are \emph{consumed} afterwards.  Thus any
wenzelm@26870
   855
  further @{command "apply"} command would always work in a purely
wenzelm@26870
   856
  backward manner.
wenzelm@26870
   857
  
wenzelm@28760
   858
  \item @{command "apply_end"}~@{text "m"} applies proof method @{text
wenzelm@28760
   859
  m} as if in terminal position.  Basically, this simulates a
wenzelm@26870
   860
  multi-step tactic script for @{command "qed"}, but may be given
wenzelm@26870
   861
  anywhere within the proof body.
wenzelm@26870
   862
  
wenzelm@26894
   863
  No facts are passed to @{text m} here.  Furthermore, the static
wenzelm@26870
   864
  context is that of the enclosing goal (as for actual @{command
wenzelm@26870
   865
  "qed"}).  Thus the proof method may not refer to any assumptions
wenzelm@26870
   866
  introduced in the current body, for example.
wenzelm@26870
   867
  
wenzelm@28760
   868
  \item @{command "done"} completes a proof script, provided that the
wenzelm@28760
   869
  current goal state is solved completely.  Note that actual
wenzelm@26870
   870
  structured proof commands (e.g.\ ``@{command "."}'' or @{command
wenzelm@26870
   871
  "sorry"}) may be used to conclude proof scripts as well.
wenzelm@26870
   872
wenzelm@28760
   873
  \item @{command "defer"}~@{text n} and @{command "prefer"}~@{text n}
wenzelm@28760
   874
  shuffle the list of pending goals: @{command "defer"} puts off
wenzelm@26870
   875
  sub-goal @{text n} to the end of the list (@{text "n = 1"} by
wenzelm@26870
   876
  default), while @{command "prefer"} brings sub-goal @{text n} to the
wenzelm@26870
   877
  front.
wenzelm@26870
   878
  
wenzelm@28760
   879
  \item @{command "back"} does back-tracking over the result sequence
wenzelm@28760
   880
  of the latest proof command.  Basically, any proof command may
wenzelm@28760
   881
  return multiple results.
wenzelm@26870
   882
  
wenzelm@28760
   883
  \end{description}
wenzelm@26870
   884
wenzelm@26870
   885
  Any proper Isar proof method may be used with tactic script commands
wenzelm@26870
   886
  such as @{command "apply"}.  A few additional emulations of actual
wenzelm@26870
   887
  tactics are provided as well; these would be never used in actual
wenzelm@26870
   888
  structured proofs, of course.
wenzelm@26870
   889
*}
wenzelm@26870
   890
wenzelm@26870
   891
wenzelm@28757
   892
subsection {* Defining proof methods *}
wenzelm@28757
   893
wenzelm@28757
   894
text {*
wenzelm@28757
   895
  \begin{matharray}{rcl}
wenzelm@28761
   896
    @{command_def "method_setup"} & : & @{text "theory \<rightarrow> theory"} \\
wenzelm@28757
   897
  \end{matharray}
wenzelm@28757
   898
wenzelm@28757
   899
  \begin{rail}
wenzelm@28757
   900
    'method\_setup' name '=' text text
wenzelm@28757
   901
    ;
wenzelm@28757
   902
  \end{rail}
wenzelm@28757
   903
wenzelm@28760
   904
  \begin{description}
wenzelm@28757
   905
wenzelm@28760
   906
  \item @{command "method_setup"}~@{text "name = text description"}
wenzelm@28757
   907
  defines a proof method in the current theory.  The given @{text
wenzelm@28757
   908
  "text"} has to be an ML expression of type @{ML_type [source=false]
wenzelm@28757
   909
  "Args.src -> Proof.context -> Proof.method"}.  Parsing concrete
wenzelm@28757
   910
  method syntax from @{ML_type Args.src} input can be quite tedious in
wenzelm@28757
   911
  general.  The following simple examples are for methods without any
wenzelm@28757
   912
  explicit arguments, or a list of theorems, respectively.
wenzelm@28757
   913
wenzelm@28757
   914
%FIXME proper antiquotations
wenzelm@28757
   915
{\footnotesize
wenzelm@28757
   916
\begin{verbatim}
wenzelm@28757
   917
 Method.no_args (Method.METHOD (fn facts => foobar_tac))
wenzelm@28757
   918
 Method.thms_args (fn thms => Method.METHOD (fn facts => foobar_tac))
wenzelm@28757
   919
 Method.ctxt_args (fn ctxt => Method.METHOD (fn facts => foobar_tac))
wenzelm@28757
   920
 Method.thms_ctxt_args (fn thms => fn ctxt =>
wenzelm@28757
   921
    Method.METHOD (fn facts => foobar_tac))
wenzelm@28757
   922
\end{verbatim}
wenzelm@28757
   923
}
wenzelm@28757
   924
wenzelm@28757
   925
  Note that mere tactic emulations may ignore the @{text facts}
wenzelm@28757
   926
  parameter above.  Proper proof methods would do something
wenzelm@28757
   927
  appropriate with the list of current facts, though.  Single-rule
wenzelm@28757
   928
  methods usually do strict forward-chaining (e.g.\ by using @{ML
wenzelm@28757
   929
  Drule.multi_resolves}), while automatic ones just insert the facts
wenzelm@28757
   930
  using @{ML Method.insert_tac} before applying the main tactic.
wenzelm@28757
   931
wenzelm@28760
   932
  \end{description}
wenzelm@28757
   933
*}
wenzelm@28757
   934
wenzelm@28757
   935
wenzelm@26870
   936
section {* Generalized elimination \label{sec:obtain} *}
wenzelm@26870
   937
wenzelm@26870
   938
text {*
wenzelm@26870
   939
  \begin{matharray}{rcl}
wenzelm@28761
   940
    @{command_def "obtain"} & : & @{text "proof(state) | proof(chain) \<rightarrow> proof(prove)"} \\
wenzelm@28761
   941
    @{command_def "guess"}@{text "\<^sup>*"} & : & @{text "proof(state) | proof(chain) \<rightarrow> proof(prove)"} \\
wenzelm@26870
   942
  \end{matharray}
wenzelm@26870
   943
wenzelm@26870
   944
  Generalized elimination means that additional elements with certain
wenzelm@26870
   945
  properties may be introduced in the current context, by virtue of a
wenzelm@26870
   946
  locally proven ``soundness statement''.  Technically speaking, the
wenzelm@26870
   947
  @{command "obtain"} language element is like a declaration of
wenzelm@26870
   948
  @{command "fix"} and @{command "assume"} (see also see
wenzelm@26870
   949
  \secref{sec:proof-context}), together with a soundness proof of its
wenzelm@26870
   950
  additional claim.  According to the nature of existential reasoning,
wenzelm@26870
   951
  assumptions get eliminated from any result exported from the context
wenzelm@26870
   952
  later, provided that the corresponding parameters do \emph{not}
wenzelm@26870
   953
  occur in the conclusion.
wenzelm@26870
   954
wenzelm@26870
   955
  \begin{rail}
wenzelm@26870
   956
    'obtain' parname? (vars + 'and') 'where' (props + 'and')
wenzelm@26870
   957
    ;
wenzelm@26870
   958
    'guess' (vars + 'and')
wenzelm@26870
   959
    ;
wenzelm@26870
   960
  \end{rail}
wenzelm@26870
   961
wenzelm@26870
   962
  The derived Isar command @{command "obtain"} is defined as follows
wenzelm@26870
   963
  (where @{text "b\<^sub>1, \<dots>, b\<^sub>k"} shall refer to (optional)
wenzelm@26870
   964
  facts indicated for forward chaining).
wenzelm@26870
   965
  \begin{matharray}{l}
wenzelm@26870
   966
    @{text "\<langle>using b\<^sub>1 \<dots> b\<^sub>k\<rangle>"}~~@{command "obtain"}~@{text "x\<^sub>1 \<dots> x\<^sub>m \<WHERE> a: \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n  \<langle>proof\<rangle> \<equiv>"} \\[1ex]
wenzelm@26870
   967
    \quad @{command "have"}~@{text "\<And>thesis. (\<And>x\<^sub>1 \<dots> x\<^sub>m. \<phi>\<^sub>1 \<Longrightarrow> \<dots> \<phi>\<^sub>n \<Longrightarrow> thesis) \<Longrightarrow> thesis"} \\
wenzelm@30049
   968
    \quad @{command "proof"}~@{method succeed} \\
wenzelm@26870
   969
    \qquad @{command "fix"}~@{text thesis} \\
wenzelm@26870
   970
    \qquad @{command "assume"}~@{text "that [Pure.intro?]: \<And>x\<^sub>1 \<dots> x\<^sub>m. \<phi>\<^sub>1 \<Longrightarrow> \<dots> \<phi>\<^sub>n \<Longrightarrow> thesis"} \\
wenzelm@26870
   971
    \qquad @{command "then"}~@{command "show"}~@{text thesis} \\
wenzelm@26870
   972
    \quad\qquad @{command "apply"}~@{text -} \\
wenzelm@26870
   973
    \quad\qquad @{command "using"}~@{text "b\<^sub>1 \<dots> b\<^sub>k  \<langle>proof\<rangle>"} \\
wenzelm@26870
   974
    \quad @{command "qed"} \\
wenzelm@26870
   975
    \quad @{command "fix"}~@{text "x\<^sub>1 \<dots> x\<^sub>m"}~@{command "assume"}@{text "\<^sup>* a: \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n"} \\
wenzelm@26870
   976
  \end{matharray}
wenzelm@26870
   977
wenzelm@26870
   978
  Typically, the soundness proof is relatively straight-forward, often
wenzelm@26870
   979
  just by canonical automated tools such as ``@{command "by"}~@{text
wenzelm@26870
   980
  simp}'' or ``@{command "by"}~@{text blast}''.  Accordingly, the
wenzelm@26870
   981
  ``@{text that}'' reduction above is declared as simplification and
wenzelm@26870
   982
  introduction rule.
wenzelm@26870
   983
wenzelm@26870
   984
  In a sense, @{command "obtain"} represents at the level of Isar
wenzelm@26870
   985
  proofs what would be meta-logical existential quantifiers and
wenzelm@26870
   986
  conjunctions.  This concept has a broad range of useful
wenzelm@26870
   987
  applications, ranging from plain elimination (or introduction) of
wenzelm@26870
   988
  object-level existential and conjunctions, to elimination over
wenzelm@26870
   989
  results of symbolic evaluation of recursive definitions, for
wenzelm@26870
   990
  example.  Also note that @{command "obtain"} without parameters acts
wenzelm@26870
   991
  much like @{command "have"}, where the result is treated as a
wenzelm@26870
   992
  genuine assumption.
wenzelm@26870
   993
wenzelm@26870
   994
  An alternative name to be used instead of ``@{text that}'' above may
wenzelm@26870
   995
  be given in parentheses.
wenzelm@26870
   996
wenzelm@26870
   997
  \medskip The improper variant @{command "guess"} is similar to
wenzelm@26870
   998
  @{command "obtain"}, but derives the obtained statement from the
wenzelm@26870
   999
  course of reasoning!  The proof starts with a fixed goal @{text
wenzelm@26870
  1000
  thesis}.  The subsequent proof may refine this to anything of the
wenzelm@26870
  1001
  form like @{text "\<And>x\<^sub>1 \<dots> x\<^sub>m. \<phi>\<^sub>1 \<Longrightarrow> \<dots>
wenzelm@26870
  1002
  \<phi>\<^sub>n \<Longrightarrow> thesis"}, but must not introduce new subgoals.  The
wenzelm@26870
  1003
  final goal state is then used as reduction rule for the obtain
wenzelm@26870
  1004
  scheme described above.  Obtained parameters @{text "x\<^sub>1, \<dots>,
wenzelm@26870
  1005
  x\<^sub>m"} are marked as internal by default, which prevents the
wenzelm@26870
  1006
  proof context from being polluted by ad-hoc variables.  The variable
wenzelm@26870
  1007
  names and type constraints given as arguments for @{command "guess"}
wenzelm@26870
  1008
  specify a prefix of obtained parameters explicitly in the text.
wenzelm@26870
  1009
wenzelm@26870
  1010
  It is important to note that the facts introduced by @{command
wenzelm@26870
  1011
  "obtain"} and @{command "guess"} may not be polymorphic: any
wenzelm@26870
  1012
  type-variables occurring here are fixed in the present context!
wenzelm@26870
  1013
*}
wenzelm@26870
  1014
wenzelm@26870
  1015
wenzelm@26870
  1016
section {* Calculational reasoning \label{sec:calculation} *}
wenzelm@26870
  1017
wenzelm@26870
  1018
text {*
wenzelm@26870
  1019
  \begin{matharray}{rcl}
wenzelm@28761
  1020
    @{command_def "also"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
  1021
    @{command_def "finally"} & : & @{text "proof(state) \<rightarrow> proof(chain)"} \\
wenzelm@28761
  1022
    @{command_def "moreover"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
  1023
    @{command_def "ultimately"} & : & @{text "proof(state) \<rightarrow> proof(chain)"} \\
wenzelm@28761
  1024
    @{command_def "print_trans_rules"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
wenzelm@28761
  1025
    @{attribute trans} & : & @{text attribute} \\
wenzelm@28761
  1026
    @{attribute sym} & : & @{text attribute} \\
wenzelm@28761
  1027
    @{attribute symmetric} & : & @{text attribute} \\
wenzelm@26870
  1028
  \end{matharray}
wenzelm@26870
  1029
wenzelm@26870
  1030
  Calculational proof is forward reasoning with implicit application
wenzelm@26870
  1031
  of transitivity rules (such those of @{text "="}, @{text "\<le>"},
wenzelm@26870
  1032
  @{text "<"}).  Isabelle/Isar maintains an auxiliary fact register
wenzelm@26870
  1033
  @{fact_ref calculation} for accumulating results obtained by
wenzelm@26870
  1034
  transitivity composed with the current result.  Command @{command
wenzelm@26870
  1035
  "also"} updates @{fact calculation} involving @{fact this}, while
wenzelm@26870
  1036
  @{command "finally"} exhibits the final @{fact calculation} by
wenzelm@26870
  1037
  forward chaining towards the next goal statement.  Both commands
wenzelm@26870
  1038
  require valid current facts, i.e.\ may occur only after commands
wenzelm@26870
  1039
  that produce theorems such as @{command "assume"}, @{command
wenzelm@26870
  1040
  "note"}, or some finished proof of @{command "have"}, @{command
wenzelm@26870
  1041
  "show"} etc.  The @{command "moreover"} and @{command "ultimately"}
wenzelm@26870
  1042
  commands are similar to @{command "also"} and @{command "finally"},
wenzelm@26870
  1043
  but only collect further results in @{fact calculation} without
wenzelm@26870
  1044
  applying any rules yet.
wenzelm@26870
  1045
wenzelm@26870
  1046
  Also note that the implicit term abbreviation ``@{text "\<dots>"}'' has
wenzelm@26870
  1047
  its canonical application with calculational proofs.  It refers to
wenzelm@26870
  1048
  the argument of the preceding statement. (The argument of a curried
wenzelm@26870
  1049
  infix expression happens to be its right-hand side.)
wenzelm@26870
  1050
wenzelm@26870
  1051
  Isabelle/Isar calculations are implicitly subject to block structure
wenzelm@26870
  1052
  in the sense that new threads of calculational reasoning are
wenzelm@26870
  1053
  commenced for any new block (as opened by a local goal, for
wenzelm@26870
  1054
  example).  This means that, apart from being able to nest
wenzelm@26870
  1055
  calculations, there is no separate \emph{begin-calculation} command
wenzelm@26870
  1056
  required.
wenzelm@26870
  1057
wenzelm@26870
  1058
  \medskip The Isar calculation proof commands may be defined as
wenzelm@26870
  1059
  follows:\footnote{We suppress internal bookkeeping such as proper
wenzelm@26870
  1060
  handling of block-structure.}
wenzelm@26870
  1061
wenzelm@26870
  1062
  \begin{matharray}{rcl}
wenzelm@26870
  1063
    @{command "also"}@{text "\<^sub>0"} & \equiv & @{command "note"}~@{text "calculation = this"} \\
wenzelm@26870
  1064
    @{command "also"}@{text "\<^sub>n\<^sub>+\<^sub>1"} & \equiv & @{command "note"}~@{text "calculation = trans [OF calculation this]"} \\[0.5ex]
wenzelm@26870
  1065
    @{command "finally"} & \equiv & @{command "also"}~@{command "from"}~@{text calculation} \\[0.5ex]
wenzelm@26870
  1066
    @{command "moreover"} & \equiv & @{command "note"}~@{text "calculation = calculation this"} \\
wenzelm@26870
  1067
    @{command "ultimately"} & \equiv & @{command "moreover"}~@{command "from"}~@{text calculation} \\
wenzelm@26870
  1068
  \end{matharray}
wenzelm@26870
  1069
wenzelm@26870
  1070
  \begin{rail}
wenzelm@26870
  1071
    ('also' | 'finally') ('(' thmrefs ')')?
wenzelm@26870
  1072
    ;
wenzelm@26870
  1073
    'trans' (() | 'add' | 'del')
wenzelm@26870
  1074
    ;
wenzelm@26870
  1075
  \end{rail}
wenzelm@26870
  1076
wenzelm@28760
  1077
  \begin{description}
wenzelm@26870
  1078
wenzelm@28760
  1079
  \item @{command "also"}~@{text "(a\<^sub>1 \<dots> a\<^sub>n)"} maintains the auxiliary
wenzelm@28760
  1080
  @{fact calculation} register as follows.  The first occurrence of
wenzelm@28760
  1081
  @{command "also"} in some calculational thread initializes @{fact
wenzelm@28760
  1082
  calculation} by @{fact this}. Any subsequent @{command "also"} on
wenzelm@28760
  1083
  the same level of block-structure updates @{fact calculation} by
wenzelm@28760
  1084
  some transitivity rule applied to @{fact calculation} and @{fact
wenzelm@28760
  1085
  this} (in that order).  Transitivity rules are picked from the
wenzelm@28760
  1086
  current context, unless alternative rules are given as explicit
wenzelm@28760
  1087
  arguments.
wenzelm@26870
  1088
wenzelm@28760
  1089
  \item @{command "finally"}~@{text "(a\<^sub>1 \<dots> a\<^sub>n)"} maintaining @{fact
wenzelm@28760
  1090
  calculation} in the same way as @{command "also"}, and concludes the
wenzelm@28760
  1091
  current calculational thread.  The final result is exhibited as fact
wenzelm@28760
  1092
  for forward chaining towards the next goal. Basically, @{command
wenzelm@28760
  1093
  "finally"} just abbreviates @{command "also"}~@{command
wenzelm@28760
  1094
  "from"}~@{fact calculation}.  Typical idioms for concluding
wenzelm@28760
  1095
  calculational proofs are ``@{command "finally"}~@{command
wenzelm@26870
  1096
  "show"}~@{text ?thesis}~@{command "."}'' and ``@{command
wenzelm@26870
  1097
  "finally"}~@{command "have"}~@{text \<phi>}~@{command "."}''.
wenzelm@26870
  1098
wenzelm@28760
  1099
  \item @{command "moreover"} and @{command "ultimately"} are
wenzelm@26870
  1100
  analogous to @{command "also"} and @{command "finally"}, but collect
wenzelm@26870
  1101
  results only, without applying rules.
wenzelm@26870
  1102
wenzelm@28760
  1103
  \item @{command "print_trans_rules"} prints the list of transitivity
wenzelm@28760
  1104
  rules (for calculational commands @{command "also"} and @{command
wenzelm@28760
  1105
  "finally"}) and symmetry rules (for the @{attribute symmetric}
wenzelm@28760
  1106
  operation and single step elimination patters) of the current
wenzelm@28760
  1107
  context.
wenzelm@26870
  1108
wenzelm@28760
  1109
  \item @{attribute trans} declares theorems as transitivity rules.
wenzelm@26870
  1110
wenzelm@28760
  1111
  \item @{attribute sym} declares symmetry rules, as well as
wenzelm@26894
  1112
  @{attribute "Pure.elim"}@{text "?"} rules.
wenzelm@26870
  1113
wenzelm@28760
  1114
  \item @{attribute symmetric} resolves a theorem with some rule
wenzelm@26870
  1115
  declared as @{attribute sym} in the current context.  For example,
wenzelm@26870
  1116
  ``@{command "assume"}~@{text "[symmetric]: x = y"}'' produces a
wenzelm@26870
  1117
  swapped fact derived from that assumption.
wenzelm@26870
  1118
wenzelm@26870
  1119
  In structured proof texts it is often more appropriate to use an
wenzelm@26870
  1120
  explicit single-step elimination proof, such as ``@{command
wenzelm@26870
  1121
  "assume"}~@{text "x = y"}~@{command "then"}~@{command "have"}~@{text
wenzelm@26870
  1122
  "y = x"}~@{command ".."}''.
wenzelm@26870
  1123
wenzelm@28760
  1124
  \end{description}
wenzelm@26870
  1125
*}
wenzelm@26870
  1126
wenzelm@28754
  1127
wenzelm@27040
  1128
section {* Proof by cases and induction \label{sec:cases-induct} *}
wenzelm@27040
  1129
wenzelm@27040
  1130
subsection {* Rule contexts *}
wenzelm@27040
  1131
wenzelm@27040
  1132
text {*
wenzelm@27040
  1133
  \begin{matharray}{rcl}
wenzelm@28761
  1134
    @{command_def "case"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
wenzelm@28761
  1135
    @{command_def "print_cases"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
wenzelm@28761
  1136
    @{attribute_def case_names} & : & @{text attribute} \\
wenzelm@28761
  1137
    @{attribute_def case_conclusion} & : & @{text attribute} \\
wenzelm@28761
  1138
    @{attribute_def params} & : & @{text attribute} \\
wenzelm@28761
  1139
    @{attribute_def consumes} & : & @{text attribute} \\
wenzelm@27040
  1140
  \end{matharray}
wenzelm@27040
  1141
wenzelm@27040
  1142
  The puristic way to build up Isar proof contexts is by explicit
wenzelm@27040
  1143
  language elements like @{command "fix"}, @{command "assume"},
wenzelm@27040
  1144
  @{command "let"} (see \secref{sec:proof-context}).  This is adequate
wenzelm@27040
  1145
  for plain natural deduction, but easily becomes unwieldy in concrete
wenzelm@27040
  1146
  verification tasks, which typically involve big induction rules with
wenzelm@27040
  1147
  several cases.
wenzelm@27040
  1148
wenzelm@27040
  1149
  The @{command "case"} command provides a shorthand to refer to a
wenzelm@27040
  1150
  local context symbolically: certain proof methods provide an
wenzelm@27040
  1151
  environment of named ``cases'' of the form @{text "c: x\<^sub>1, \<dots>,
wenzelm@27040
  1152
  x\<^sub>m, \<phi>\<^sub>1, \<dots>, \<phi>\<^sub>n"}; the effect of ``@{command
wenzelm@27040
  1153
  "case"}~@{text c}'' is then equivalent to ``@{command "fix"}~@{text
wenzelm@27040
  1154
  "x\<^sub>1 \<dots> x\<^sub>m"}~@{command "assume"}~@{text "c: \<phi>\<^sub>1 \<dots>
wenzelm@27040
  1155
  \<phi>\<^sub>n"}''.  Term bindings may be covered as well, notably
wenzelm@27040
  1156
  @{variable ?case} for the main conclusion.
wenzelm@27040
  1157
wenzelm@27040
  1158
  By default, the ``terminology'' @{text "x\<^sub>1, \<dots>, x\<^sub>m"} of
wenzelm@27040
  1159
  a case value is marked as hidden, i.e.\ there is no way to refer to
wenzelm@27040
  1160
  such parameters in the subsequent proof text.  After all, original
wenzelm@27040
  1161
  rule parameters stem from somewhere outside of the current proof
wenzelm@27040
  1162
  text.  By using the explicit form ``@{command "case"}~@{text "(c
wenzelm@27040
  1163
  y\<^sub>1 \<dots> y\<^sub>m)"}'' instead, the proof author is able to
wenzelm@27040
  1164
  chose local names that fit nicely into the current context.
wenzelm@27040
  1165
wenzelm@27040
  1166
  \medskip It is important to note that proper use of @{command
wenzelm@27040
  1167
  "case"} does not provide means to peek at the current goal state,
wenzelm@27040
  1168
  which is not directly observable in Isar!  Nonetheless, goal
wenzelm@27040
  1169
  refinement commands do provide named cases @{text "goal\<^sub>i"}
wenzelm@27040
  1170
  for each subgoal @{text "i = 1, \<dots>, n"} of the resulting goal state.
wenzelm@27040
  1171
  Using this extra feature requires great care, because some bits of
wenzelm@27040
  1172
  the internal tactical machinery intrude the proof text.  In
wenzelm@27040
  1173
  particular, parameter names stemming from the left-over of automated
wenzelm@27040
  1174
  reasoning tools are usually quite unpredictable.
wenzelm@27040
  1175
wenzelm@27040
  1176
  Under normal circumstances, the text of cases emerge from standard
wenzelm@27040
  1177
  elimination or induction rules, which in turn are derived from
wenzelm@27040
  1178
  previous theory specifications in a canonical way (say from
wenzelm@27040
  1179
  @{command "inductive"} definitions).
wenzelm@27040
  1180
wenzelm@27040
  1181
  \medskip Proper cases are only available if both the proof method
wenzelm@27040
  1182
  and the rules involved support this.  By using appropriate
wenzelm@27040
  1183
  attributes, case names, conclusions, and parameters may be also
wenzelm@27040
  1184
  declared by hand.  Thus variant versions of rules that have been
wenzelm@27040
  1185
  derived manually become ready to use in advanced case analysis
wenzelm@27040
  1186
  later.
wenzelm@27040
  1187
wenzelm@27040
  1188
  \begin{rail}
wenzelm@27040
  1189
    'case' (caseref | '(' caseref ((name | underscore) +) ')')
wenzelm@27040
  1190
    ;
wenzelm@27040
  1191
    caseref: nameref attributes?
wenzelm@27040
  1192
    ;
wenzelm@27040
  1193
wenzelm@27040
  1194
    'case\_names' (name +)
wenzelm@27040
  1195
    ;
wenzelm@27040
  1196
    'case\_conclusion' name (name *)
wenzelm@27040
  1197
    ;
wenzelm@27040
  1198
    'params' ((name *) + 'and')
wenzelm@27040
  1199
    ;
wenzelm@27040
  1200
    'consumes' nat?
wenzelm@27040
  1201
    ;
wenzelm@27040
  1202
  \end{rail}
wenzelm@27040
  1203
wenzelm@28760
  1204
  \begin{description}
wenzelm@27040
  1205
  
wenzelm@28760
  1206
  \item @{command "case"}~@{text "(c x\<^sub>1 \<dots> x\<^sub>m)"} invokes a named local
wenzelm@28760
  1207
  context @{text "c: x\<^sub>1, \<dots>, x\<^sub>m, \<phi>\<^sub>1, \<dots>, \<phi>\<^sub>m"}, as provided by an
wenzelm@28760
  1208
  appropriate proof method (such as @{method_ref cases} and
wenzelm@28760
  1209
  @{method_ref induct}).  The command ``@{command "case"}~@{text "(c
wenzelm@28760
  1210
  x\<^sub>1 \<dots> x\<^sub>m)"}'' abbreviates ``@{command "fix"}~@{text "x\<^sub>1 \<dots>
wenzelm@28760
  1211
  x\<^sub>m"}~@{command "assume"}~@{text "c: \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n"}''.
wenzelm@27040
  1212
wenzelm@28760
  1213
  \item @{command "print_cases"} prints all local contexts of the
wenzelm@27040
  1214
  current state, using Isar proof language notation.
wenzelm@27040
  1215
  
wenzelm@28760
  1216
  \item @{attribute case_names}~@{text "c\<^sub>1 \<dots> c\<^sub>k"} declares names for
wenzelm@28760
  1217
  the local contexts of premises of a theorem; @{text "c\<^sub>1, \<dots>, c\<^sub>k"}
wenzelm@28760
  1218
  refers to the \emph{suffix} of the list of premises.
wenzelm@27040
  1219
  
wenzelm@28760
  1220
  \item @{attribute case_conclusion}~@{text "c d\<^sub>1 \<dots> d\<^sub>k"} declares
wenzelm@28760
  1221
  names for the conclusions of a named premise @{text c}; here @{text
wenzelm@28760
  1222
  "d\<^sub>1, \<dots>, d\<^sub>k"} refers to the prefix of arguments of a logical formula
wenzelm@28760
  1223
  built by nesting a binary connective (e.g.\ @{text "\<or>"}).
wenzelm@27040
  1224
  
wenzelm@27040
  1225
  Note that proof methods such as @{method induct} and @{method
wenzelm@27040
  1226
  coinduct} already provide a default name for the conclusion as a
wenzelm@27040
  1227
  whole.  The need to name subformulas only arises with cases that
wenzelm@27040
  1228
  split into several sub-cases, as in common co-induction rules.
wenzelm@27040
  1229
wenzelm@28760
  1230
  \item @{attribute params}~@{text "p\<^sub>1 \<dots> p\<^sub>m \<AND> \<dots> q\<^sub>1 \<dots> q\<^sub>n"} renames
wenzelm@28760
  1231
  the innermost parameters of premises @{text "1, \<dots>, n"} of some
wenzelm@28760
  1232
  theorem.  An empty list of names may be given to skip positions,
wenzelm@28760
  1233
  leaving the present parameters unchanged.
wenzelm@27040
  1234
  
wenzelm@27040
  1235
  Note that the default usage of case rules does \emph{not} directly
wenzelm@27040
  1236
  expose parameters to the proof context.
wenzelm@27040
  1237
  
wenzelm@28760
  1238
  \item @{attribute consumes}~@{text n} declares the number of ``major
wenzelm@28760
  1239
  premises'' of a rule, i.e.\ the number of facts to be consumed when
wenzelm@28760
  1240
  it is applied by an appropriate proof method.  The default value of
wenzelm@28760
  1241
  @{attribute consumes} is @{text "n = 1"}, which is appropriate for
wenzelm@28760
  1242
  the usual kind of cases and induction rules for inductive sets (cf.\
wenzelm@28760
  1243
  \secref{sec:hol-inductive}).  Rules without any @{attribute
wenzelm@28760
  1244
  consumes} declaration given are treated as if @{attribute
wenzelm@28760
  1245
  consumes}~@{text 0} had been specified.
wenzelm@27040
  1246
  
wenzelm@27040
  1247
  Note that explicit @{attribute consumes} declarations are only
wenzelm@27040
  1248
  rarely needed; this is already taken care of automatically by the
wenzelm@27040
  1249
  higher-level @{attribute cases}, @{attribute induct}, and
wenzelm@27040
  1250
  @{attribute coinduct} declarations.
wenzelm@27040
  1251
wenzelm@28760
  1252
  \end{description}
wenzelm@27040
  1253
*}
wenzelm@27040
  1254
wenzelm@27040
  1255
wenzelm@27040
  1256
subsection {* Proof methods *}
wenzelm@27040
  1257
wenzelm@27040
  1258
text {*
wenzelm@27040
  1259
  \begin{matharray}{rcl}
wenzelm@28761
  1260
    @{method_def cases} & : & @{text method} \\
wenzelm@28761
  1261
    @{method_def induct} & : & @{text method} \\
wenzelm@28761
  1262
    @{method_def coinduct} & : & @{text method} \\
wenzelm@27040
  1263
  \end{matharray}
wenzelm@27040
  1264
wenzelm@27040
  1265
  The @{method cases}, @{method induct}, and @{method coinduct}
wenzelm@27040
  1266
  methods provide a uniform interface to common proof techniques over
wenzelm@27040
  1267
  datatypes, inductive predicates (or sets), recursive functions etc.
wenzelm@27040
  1268
  The corresponding rules may be specified and instantiated in a
wenzelm@27040
  1269
  casual manner.  Furthermore, these methods provide named local
wenzelm@27040
  1270
  contexts that may be invoked via the @{command "case"} proof command
wenzelm@27040
  1271
  within the subsequent proof text.  This accommodates compact proof
wenzelm@27040
  1272
  texts even when reasoning about large specifications.
wenzelm@27040
  1273
wenzelm@27040
  1274
  The @{method induct} method also provides some additional
wenzelm@27040
  1275
  infrastructure in order to be applicable to structure statements
wenzelm@27040
  1276
  (either using explicit meta-level connectives, or including facts
wenzelm@27040
  1277
  and parameters separately).  This avoids cumbersome encoding of
wenzelm@27040
  1278
  ``strengthened'' inductive statements within the object-logic.
wenzelm@27040
  1279
wenzelm@27040
  1280
  \begin{rail}
wenzelm@27040
  1281
    'cases' (insts * 'and') rule?
wenzelm@27040
  1282
    ;
wenzelm@27040
  1283
    'induct' (definsts * 'and') \\ arbitrary? taking? rule?
wenzelm@27040
  1284
    ;
wenzelm@27040
  1285
    'coinduct' insts taking rule?
wenzelm@27040
  1286
    ;
wenzelm@27040
  1287
wenzelm@27040
  1288
    rule: ('type' | 'pred' | 'set') ':' (nameref +) | 'rule' ':' (thmref +)
wenzelm@27040
  1289
    ;
wenzelm@27040
  1290
    definst: name ('==' | equiv) term | inst
wenzelm@27040
  1291
    ;
wenzelm@27040
  1292
    definsts: ( definst *)
wenzelm@27040
  1293
    ;
wenzelm@27040
  1294
    arbitrary: 'arbitrary' ':' ((term *) 'and' +)
wenzelm@27040
  1295
    ;
wenzelm@27040
  1296
    taking: 'taking' ':' insts
wenzelm@27040
  1297
    ;
wenzelm@27040
  1298
  \end{rail}
wenzelm@27040
  1299
wenzelm@28760
  1300
  \begin{description}
wenzelm@27040
  1301
wenzelm@28760
  1302
  \item @{method cases}~@{text "insts R"} applies method @{method
wenzelm@27040
  1303
  rule} with an appropriate case distinction theorem, instantiated to
wenzelm@27040
  1304
  the subjects @{text insts}.  Symbolic case names are bound according
wenzelm@27040
  1305
  to the rule's local contexts.
wenzelm@27040
  1306
wenzelm@27040
  1307
  The rule is determined as follows, according to the facts and
wenzelm@27040
  1308
  arguments passed to the @{method cases} method:
wenzelm@27040
  1309
wenzelm@27040
  1310
  \medskip
wenzelm@27040
  1311
  \begin{tabular}{llll}
wenzelm@27040
  1312
    facts           &                 & arguments   & rule \\\hline
wenzelm@27040
  1313
                    & @{method cases} &             & classical case split \\
wenzelm@27040
  1314
                    & @{method cases} & @{text t}   & datatype exhaustion (type of @{text t}) \\
wenzelm@27040
  1315
    @{text "\<turnstile> A t"} & @{method cases} & @{text "\<dots>"} & inductive predicate/set elimination (of @{text A}) \\
wenzelm@27040
  1316
    @{text "\<dots>"}     & @{method cases} & @{text "\<dots> rule: R"} & explicit rule @{text R} \\
wenzelm@27040
  1317
  \end{tabular}
wenzelm@27040
  1318
  \medskip
wenzelm@27040
  1319
wenzelm@27040
  1320
  Several instantiations may be given, referring to the \emph{suffix}
wenzelm@27040
  1321
  of premises of the case rule; within each premise, the \emph{prefix}
wenzelm@27040
  1322
  of variables is instantiated.  In most situations, only a single
wenzelm@27040
  1323
  term needs to be specified; this refers to the first variable of the
wenzelm@27040
  1324
  last premise (it is usually the same for all cases).
wenzelm@27040
  1325
wenzelm@28760
  1326
  \item @{method induct}~@{text "insts R"} is analogous to the
wenzelm@27040
  1327
  @{method cases} method, but refers to induction rules, which are
wenzelm@27040
  1328
  determined as follows:
wenzelm@27040
  1329
wenzelm@27040
  1330
  \medskip
wenzelm@27040
  1331
  \begin{tabular}{llll}
wenzelm@27040
  1332
    facts           &                  & arguments            & rule \\\hline
wenzelm@27040
  1333
                    & @{method induct} & @{text "P x"}        & datatype induction (type of @{text x}) \\
wenzelm@27040
  1334
    @{text "\<turnstile> A x"} & @{method induct} & @{text "\<dots>"}          & predicate/set induction (of @{text A}) \\
wenzelm@27040
  1335
    @{text "\<dots>"}     & @{method induct} & @{text "\<dots> rule: R"} & explicit rule @{text R} \\
wenzelm@27040
  1336
  \end{tabular}
wenzelm@27040
  1337
  \medskip
wenzelm@27040
  1338
  
wenzelm@27040
  1339
  Several instantiations may be given, each referring to some part of
wenzelm@27040
  1340
  a mutual inductive definition or datatype --- only related partial
wenzelm@27040
  1341
  induction rules may be used together, though.  Any of the lists of
wenzelm@27040
  1342
  terms @{text "P, x, \<dots>"} refers to the \emph{suffix} of variables
wenzelm@27040
  1343
  present in the induction rule.  This enables the writer to specify
wenzelm@27040
  1344
  only induction variables, or both predicates and variables, for
wenzelm@27040
  1345
  example.
wenzelm@27040
  1346
  
wenzelm@27040
  1347
  Instantiations may be definitional: equations @{text "x \<equiv> t"}
wenzelm@27040
  1348
  introduce local definitions, which are inserted into the claim and
wenzelm@27040
  1349
  discharged after applying the induction rule.  Equalities reappear
wenzelm@27040
  1350
  in the inductive cases, but have been transformed according to the
wenzelm@27040
  1351
  induction principle being involved here.  In order to achieve
wenzelm@27040
  1352
  practically useful induction hypotheses, some variables occurring in
wenzelm@27040
  1353
  @{text t} need to be fixed (see below).
wenzelm@27040
  1354
  
wenzelm@27040
  1355
  The optional ``@{text "arbitrary: x\<^sub>1 \<dots> x\<^sub>m"}''
wenzelm@27040
  1356
  specification generalizes variables @{text "x\<^sub>1, \<dots>,
wenzelm@27040
  1357
  x\<^sub>m"} of the original goal before applying induction.  Thus
wenzelm@27040
  1358
  induction hypotheses may become sufficiently general to get the
wenzelm@27040
  1359
  proof through.  Together with definitional instantiations, one may
wenzelm@27040
  1360
  effectively perform induction over expressions of a certain
wenzelm@27040
  1361
  structure.
wenzelm@27040
  1362
  
wenzelm@27040
  1363
  The optional ``@{text "taking: t\<^sub>1 \<dots> t\<^sub>n"}''
wenzelm@27040
  1364
  specification provides additional instantiations of a prefix of
wenzelm@27040
  1365
  pending variables in the rule.  Such schematic induction rules
wenzelm@27040
  1366
  rarely occur in practice, though.
wenzelm@27040
  1367
wenzelm@28760
  1368
  \item @{method coinduct}~@{text "inst R"} is analogous to the
wenzelm@27040
  1369
  @{method induct} method, but refers to coinduction rules, which are
wenzelm@27040
  1370
  determined as follows:
wenzelm@27040
  1371
wenzelm@27040
  1372
  \medskip
wenzelm@27040
  1373
  \begin{tabular}{llll}
wenzelm@27040
  1374
    goal          &                    & arguments & rule \\\hline
wenzelm@27040
  1375
                  & @{method coinduct} & @{text x} & type coinduction (type of @{text x}) \\
wenzelm@27040
  1376
    @{text "A x"} & @{method coinduct} & @{text "\<dots>"} & predicate/set coinduction (of @{text A}) \\
wenzelm@27040
  1377
    @{text "\<dots>"}   & @{method coinduct} & @{text "\<dots> rule: R"} & explicit rule @{text R} \\
wenzelm@27040
  1378
  \end{tabular}
wenzelm@27040
  1379
  
wenzelm@27040
  1380
  Coinduction is the dual of induction.  Induction essentially
wenzelm@27040
  1381
  eliminates @{text "A x"} towards a generic result @{text "P x"},
wenzelm@27040
  1382
  while coinduction introduces @{text "A x"} starting with @{text "B
wenzelm@27040
  1383
  x"}, for a suitable ``bisimulation'' @{text B}.  The cases of a
wenzelm@27040
  1384
  coinduct rule are typically named after the predicates or sets being
wenzelm@27040
  1385
  covered, while the conclusions consist of several alternatives being
wenzelm@27040
  1386
  named after the individual destructor patterns.
wenzelm@27040
  1387
  
wenzelm@27040
  1388
  The given instantiation refers to the \emph{suffix} of variables
wenzelm@27040
  1389
  occurring in the rule's major premise, or conclusion if unavailable.
wenzelm@27040
  1390
  An additional ``@{text "taking: t\<^sub>1 \<dots> t\<^sub>n"}''
wenzelm@27040
  1391
  specification may be required in order to specify the bisimulation
wenzelm@27040
  1392
  to be used in the coinduction step.
wenzelm@27040
  1393
wenzelm@28760
  1394
  \end{description}
wenzelm@27040
  1395
wenzelm@27040
  1396
  Above methods produce named local contexts, as determined by the
wenzelm@27040
  1397
  instantiated rule as given in the text.  Beyond that, the @{method
wenzelm@27040
  1398
  induct} and @{method coinduct} methods guess further instantiations
wenzelm@27040
  1399
  from the goal specification itself.  Any persisting unresolved
wenzelm@27040
  1400
  schematic variables of the resulting rule will render the the
wenzelm@27040
  1401
  corresponding case invalid.  The term binding @{variable ?case} for
wenzelm@27040
  1402
  the conclusion will be provided with each case, provided that term
wenzelm@27040
  1403
  is fully specified.
wenzelm@27040
  1404
wenzelm@27040
  1405
  The @{command "print_cases"} command prints all named cases present
wenzelm@27040
  1406
  in the current proof state.
wenzelm@27040
  1407
wenzelm@27040
  1408
  \medskip Despite the additional infrastructure, both @{method cases}
wenzelm@27040
  1409
  and @{method coinduct} merely apply a certain rule, after
wenzelm@27040
  1410
  instantiation, while conforming due to the usual way of monotonic
wenzelm@27040
  1411
  natural deduction: the context of a structured statement @{text
wenzelm@27040
  1412
  "\<And>x\<^sub>1 \<dots> x\<^sub>m. \<phi>\<^sub>1 \<Longrightarrow> \<dots> \<phi>\<^sub>n \<Longrightarrow> \<dots>"}
wenzelm@27040
  1413
  reappears unchanged after the case split.
wenzelm@27040
  1414
wenzelm@27040
  1415
  The @{method induct} method is fundamentally different in this
wenzelm@27040
  1416
  respect: the meta-level structure is passed through the
wenzelm@27040
  1417
  ``recursive'' course involved in the induction.  Thus the original
wenzelm@27040
  1418
  statement is basically replaced by separate copies, corresponding to
wenzelm@27040
  1419
  the induction hypotheses and conclusion; the original goal context
wenzelm@27040
  1420
  is no longer available.  Thus local assumptions, fixed parameters
wenzelm@27040
  1421
  and definitions effectively participate in the inductive rephrasing
wenzelm@27040
  1422
  of the original statement.
wenzelm@27040
  1423
wenzelm@27040
  1424
  In induction proofs, local assumptions introduced by cases are split
wenzelm@27040
  1425
  into two different kinds: @{text hyps} stemming from the rule and
wenzelm@27040
  1426
  @{text prems} from the goal statement.  This is reflected in the
wenzelm@27040
  1427
  extracted cases accordingly, so invoking ``@{command "case"}~@{text
wenzelm@27040
  1428
  c}'' will provide separate facts @{text c.hyps} and @{text c.prems},
wenzelm@27040
  1429
  as well as fact @{text c} to hold the all-inclusive list.
wenzelm@27040
  1430
wenzelm@27040
  1431
  \medskip Facts presented to either method are consumed according to
wenzelm@27040
  1432
  the number of ``major premises'' of the rule involved, which is
wenzelm@27040
  1433
  usually 0 for plain cases and induction rules of datatypes etc.\ and
wenzelm@27040
  1434
  1 for rules of inductive predicates or sets and the like.  The
wenzelm@27040
  1435
  remaining facts are inserted into the goal verbatim before the
wenzelm@27040
  1436
  actual @{text cases}, @{text induct}, or @{text coinduct} rule is
wenzelm@27040
  1437
  applied.
wenzelm@27040
  1438
*}
wenzelm@27040
  1439
wenzelm@27040
  1440
wenzelm@27040
  1441
subsection {* Declaring rules *}
wenzelm@27040
  1442
wenzelm@27040
  1443
text {*
wenzelm@27040
  1444
  \begin{matharray}{rcl}
wenzelm@28761
  1445
    @{command_def "print_induct_rules"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
wenzelm@28761
  1446
    @{attribute_def cases} & : & @{text attribute} \\
wenzelm@28761
  1447
    @{attribute_def induct} & : & @{text attribute} \\
wenzelm@28761
  1448
    @{attribute_def coinduct} & : & @{text attribute} \\
wenzelm@27040
  1449
  \end{matharray}
wenzelm@27040
  1450
wenzelm@27040
  1451
  \begin{rail}
wenzelm@27040
  1452
    'cases' spec
wenzelm@27040
  1453
    ;
wenzelm@27040
  1454
    'induct' spec
wenzelm@27040
  1455
    ;
wenzelm@27040
  1456
    'coinduct' spec
wenzelm@27040
  1457
    ;
wenzelm@27040
  1458
wenzelm@27141
  1459
    spec: (('type' | 'pred' | 'set') ':' nameref) | 'del'
wenzelm@27040
  1460
    ;
wenzelm@27040
  1461
  \end{rail}
wenzelm@27040
  1462
wenzelm@28760
  1463
  \begin{description}
wenzelm@27040
  1464
wenzelm@28760
  1465
  \item @{command "print_induct_rules"} prints cases and induct rules
wenzelm@28760
  1466
  for predicates (or sets) and types of the current context.
wenzelm@27040
  1467
  
wenzelm@28760
  1468
  \item @{attribute cases}, @{attribute induct}, and @{attribute
wenzelm@28760
  1469
  coinduct} (as attributes) declare rules for reasoning about
wenzelm@27141
  1470
  (co)inductive predicates (or sets) and types, using the
wenzelm@27141
  1471
  corresponding methods of the same name.  Certain definitional
wenzelm@27141
  1472
  packages of object-logics usually declare emerging cases and
wenzelm@27141
  1473
  induction rules as expected, so users rarely need to intervene.
wenzelm@27141
  1474
wenzelm@27141
  1475
  Rules may be deleted via the @{text "del"} specification, which
wenzelm@27141
  1476
  covers all of the @{text "type"}/@{text "pred"}/@{text "set"}
wenzelm@27141
  1477
  sub-categories simultaneously.  For example, @{attribute
wenzelm@27141
  1478
  cases}~@{text del} removes any @{attribute cases} rules declared for
wenzelm@27141
  1479
  some type, predicate, or set.
wenzelm@27040
  1480
  
wenzelm@27040
  1481
  Manual rule declarations usually refer to the @{attribute
wenzelm@27040
  1482
  case_names} and @{attribute params} attributes to adjust names of
wenzelm@27040
  1483
  cases and parameters of a rule; the @{attribute consumes}
wenzelm@27040
  1484
  declaration is taken care of automatically: @{attribute
wenzelm@27040
  1485
  consumes}~@{text 0} is specified for ``type'' rules and @{attribute
wenzelm@27040
  1486
  consumes}~@{text 1} for ``predicate'' / ``set'' rules.
wenzelm@27040
  1487
wenzelm@28760
  1488
  \end{description}
wenzelm@27040
  1489
*}
wenzelm@27040
  1490
wenzelm@26869
  1491
end