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