author | paulson |
Fri, 02 Jun 2000 18:32:04 +0200 | |
changeset 9027 | daeccd9f885f |
parent 8969 | 23c6e0ca0086 |
child 9258 | 2121ff73a37d |
permissions | -rw-r--r-- |
104 | 1 |
%% $Id$ |
2 |
\chapter{Theorems and Forward Proof} |
|
3 |
\index{theorems|(} |
|
326 | 4 |
|
3108 | 5 |
Theorems, which represent the axioms, theorems and rules of |
6 |
object-logics, have type \mltydx{thm}. This chapter begins by |
|
7 |
describing operations that print theorems and that join them in |
|
8 |
forward proof. Most theorem operations are intended for advanced |
|
9 |
applications, such as programming new proof procedures. Many of these |
|
10 |
operations refer to signatures, certified terms and certified types, |
|
11 |
which have the \ML{} types {\tt Sign.sg}, {\tt cterm} and {\tt ctyp} |
|
12 |
and are discussed in Chapter~\ref{theories}. Beginning users should |
|
13 |
ignore such complexities --- and skip all but the first section of |
|
14 |
this chapter. |
|
104 | 15 |
|
16 |
The theorem operations do not print error messages. Instead, they raise |
|
326 | 17 |
exception~\xdx{THM}\@. Use \ttindex{print_exn} to display |
104 | 18 |
exceptions nicely: |
19 |
\begin{ttbox} |
|
20 |
allI RS mp handle e => print_exn e; |
|
21 |
{\out Exception THM raised:} |
|
22 |
{\out RSN: no unifiers -- premise 1} |
|
23 |
{\out (!!x. ?P(x)) ==> ALL x. ?P(x)} |
|
24 |
{\out [| ?P --> ?Q; ?P |] ==> ?Q} |
|
25 |
{\out} |
|
26 |
{\out uncaught exception THM} |
|
27 |
\end{ttbox} |
|
28 |
||
29 |
||
30 |
\section{Basic operations on theorems} |
|
31 |
\subsection{Pretty-printing a theorem} |
|
326 | 32 |
\index{theorems!printing of} |
104 | 33 |
\begin{ttbox} |
326 | 34 |
prth : thm -> thm |
35 |
prths : thm list -> thm list |
|
4276 | 36 |
prthq : thm Seq.seq -> thm Seq.seq |
326 | 37 |
print_thm : thm -> unit |
38 |
print_goals : int -> thm -> unit |
|
39 |
string_of_thm : thm -> string |
|
104 | 40 |
\end{ttbox} |
326 | 41 |
The first three commands are for interactive use. They are identity |
42 |
functions that display, then return, their argument. The \ML{} identifier |
|
43 |
{\tt it} will refer to the value just displayed. |
|
44 |
||
45 |
The others are for use in programs. Functions with result type {\tt unit} |
|
46 |
are convenient for imperative programming. |
|
47 |
||
48 |
\begin{ttdescription} |
|
104 | 49 |
\item[\ttindexbold{prth} {\it thm}] |
50 |
prints {\it thm\/} at the terminal. |
|
51 |
||
52 |
\item[\ttindexbold{prths} {\it thms}] |
|
53 |
prints {\it thms}, a list of theorems. |
|
54 |
||
55 |
\item[\ttindexbold{prthq} {\it thmq}] |
|
56 |
prints {\it thmq}, a sequence of theorems. It is useful for inspecting |
|
57 |
the output of a tactic. |
|
58 |
||
59 |
\item[\ttindexbold{print_thm} {\it thm}] |
|
60 |
prints {\it thm\/} at the terminal. |
|
61 |
||
62 |
\item[\ttindexbold{print_goals} {\it limit\/} {\it thm}] |
|
63 |
prints {\it thm\/} in goal style, with the premises as subgoals. It prints |
|
64 |
at most {\it limit\/} subgoals. The subgoal module calls {\tt print_goals} |
|
65 |
to display proof states. |
|
66 |
||
67 |
\item[\ttindexbold{string_of_thm} {\it thm}] |
|
68 |
converts {\it thm\/} to a string. |
|
326 | 69 |
\end{ttdescription} |
104 | 70 |
|
71 |
||
326 | 72 |
\subsection{Forward proof: joining rules by resolution} |
73 |
\index{theorems!joining by resolution} |
|
74 |
\index{resolution}\index{forward proof} |
|
104 | 75 |
\begin{ttbox} |
8136 | 76 |
RSN : thm * (int * thm) -> thm \hfill\textbf{infix} |
77 |
RS : thm * thm -> thm \hfill\textbf{infix} |
|
78 |
MRS : thm list * thm -> thm \hfill\textbf{infix} |
|
79 |
RLN : thm list * (int * thm list) -> thm list \hfill\textbf{infix} |
|
80 |
RL : thm list * thm list -> thm list \hfill\textbf{infix} |
|
81 |
MRL : thm list list * thm list -> thm list \hfill\textbf{infix} |
|
104 | 82 |
\end{ttbox} |
326 | 83 |
Joining rules together is a simple way of deriving new rules. These |
876 | 84 |
functions are especially useful with destruction rules. To store |
85 |
the result in the theorem database, use \ttindex{bind_thm} |
|
86 |
(\S\ref{ExtractingAndStoringTheProvedTheorem}). |
|
326 | 87 |
\begin{ttdescription} |
104 | 88 |
\item[\tt$thm@1$ RSN $(i,thm@2)$] \indexbold{*RSN} |
326 | 89 |
resolves the conclusion of $thm@1$ with the $i$th premise of~$thm@2$. |
90 |
Unless there is precisely one resolvent it raises exception |
|
91 |
\xdx{THM}; in that case, use {\tt RLN}. |
|
104 | 92 |
|
93 |
\item[\tt$thm@1$ RS $thm@2$] \indexbold{*RS} |
|
94 |
abbreviates \hbox{\tt$thm@1$ RSN $(1,thm@2)$}. Thus, it resolves the |
|
95 |
conclusion of $thm@1$ with the first premise of~$thm@2$. |
|
96 |
||
97 |
\item[\tt {$[thm@1,\ldots,thm@n]$} MRS $thm$] \indexbold{*MRS} |
|
332 | 98 |
uses {\tt RSN} to resolve $thm@i$ against premise~$i$ of $thm$, for |
104 | 99 |
$i=n$, \ldots,~1. This applies $thm@n$, \ldots, $thm@1$ to the first $n$ |
100 |
premises of $thm$. Because the theorems are used from right to left, it |
|
101 |
does not matter if the $thm@i$ create new premises. {\tt MRS} is useful |
|
102 |
for expressing proof trees. |
|
103 |
||
151 | 104 |
\item[\tt$thms@1$ RLN $(i,thms@2)$] \indexbold{*RLN} |
326 | 105 |
joins lists of theorems. For every $thm@1$ in $thms@1$ and $thm@2$ in |
106 |
$thms@2$, it resolves the conclusion of $thm@1$ with the $i$th premise |
|
107 |
of~$thm@2$, accumulating the results. |
|
104 | 108 |
|
151 | 109 |
\item[\tt$thms@1$ RL $thms@2$] \indexbold{*RL} |
110 |
abbreviates \hbox{\tt$thms@1$ RLN $(1,thms@2)$}. |
|
104 | 111 |
|
112 |
\item[\tt {$[thms@1,\ldots,thms@n]$} MRL $thms$] \indexbold{*MRL} |
|
113 |
is analogous to {\tt MRS}, but combines theorem lists rather than theorems. |
|
114 |
It too is useful for expressing proof trees. |
|
326 | 115 |
\end{ttdescription} |
104 | 116 |
|
117 |
||
118 |
\subsection{Expanding definitions in theorems} |
|
326 | 119 |
\index{meta-rewriting!in theorems} |
104 | 120 |
\begin{ttbox} |
121 |
rewrite_rule : thm list -> thm -> thm |
|
122 |
rewrite_goals_rule : thm list -> thm -> thm |
|
123 |
\end{ttbox} |
|
326 | 124 |
\begin{ttdescription} |
104 | 125 |
\item[\ttindexbold{rewrite_rule} {\it defs} {\it thm}] |
126 |
unfolds the {\it defs} throughout the theorem~{\it thm}. |
|
127 |
||
128 |
\item[\ttindexbold{rewrite_goals_rule} {\it defs} {\it thm}] |
|
8136 | 129 |
unfolds the {\it defs} in the premises of~{\it thm}, but it leaves the |
130 |
conclusion unchanged. This rule is the basis for \ttindex{rewrite_goals_tac}, |
|
131 |
but it serves little purpose in forward proof. |
|
326 | 132 |
\end{ttdescription} |
104 | 133 |
|
134 |
||
4383 | 135 |
\subsection{Instantiating unknowns in a theorem} \label{sec:instantiate} |
326 | 136 |
\index{instantiation} |
8136 | 137 |
\begin{alltt}\footnotesize |
4383 | 138 |
read_instantiate : (string*string) list -> thm -> thm |
139 |
read_instantiate_sg : Sign.sg -> (string*string) list -> thm -> thm |
|
140 |
cterm_instantiate : (cterm*cterm) list -> thm -> thm |
|
141 |
instantiate' : ctyp option list -> cterm option list -> thm -> thm |
|
8136 | 142 |
\end{alltt} |
104 | 143 |
These meta-rules instantiate type and term unknowns in a theorem. They are |
144 |
occasionally useful. They can prevent difficulties with higher-order |
|
145 |
unification, and define specialized versions of rules. |
|
326 | 146 |
\begin{ttdescription} |
104 | 147 |
\item[\ttindexbold{read_instantiate} {\it insts} {\it thm}] |
148 |
processes the instantiations {\it insts} and instantiates the rule~{\it |
|
149 |
thm}. The processing of instantiations is described |
|
326 | 150 |
in \S\ref{res_inst_tac}, under {\tt res_inst_tac}. |
104 | 151 |
|
152 |
Use {\tt res_inst_tac}, not {\tt read_instantiate}, to instantiate a rule |
|
153 |
and refine a particular subgoal. The tactic allows instantiation by the |
|
154 |
subgoal's parameters, and reads the instantiations using the signature |
|
326 | 155 |
associated with the proof state. |
156 |
||
157 |
Use {\tt read_instantiate_sg} below if {\it insts\/} appears to be treated |
|
158 |
incorrectly. |
|
104 | 159 |
|
326 | 160 |
\item[\ttindexbold{read_instantiate_sg} {\it sg} {\it insts} {\it thm}] |
4597
a0bdee64194c
Fixed a lot of overfull and underfull lines (hboxes)
paulson
parents:
4383
diff
changeset
|
161 |
is like \texttt{read_instantiate {\it insts}~{\it thm}}, but it reads |
326 | 162 |
the instantiations under signature~{\it sg}. This is necessary to |
163 |
instantiate a rule from a general theory, such as first-order logic, |
|
164 |
using the notation of some specialized theory. Use the function {\tt |
|
165 |
sign_of} to get a theory's signature. |
|
104 | 166 |
|
167 |
\item[\ttindexbold{cterm_instantiate} {\it ctpairs} {\it thm}] |
|
168 |
is similar to {\tt read_instantiate}, but the instantiations are provided |
|
169 |
as pairs of certified terms, not as strings to be read. |
|
4317 | 170 |
|
171 |
\item[\ttindexbold{instantiate'} {\it ctyps} {\it cterms} {\it thm}] |
|
172 |
instantiates {\it thm} according to the positional arguments {\it |
|
173 |
ctyps} and {\it cterms}. Counting from left to right, schematic |
|
174 |
variables $?x$ are either replaced by $t$ for any argument |
|
175 |
\texttt{Some\(\;t\)}, or left unchanged in case of \texttt{None} or |
|
176 |
if the end of the argument list is encountered. Types are |
|
177 |
instantiated before terms. |
|
178 |
||
326 | 179 |
\end{ttdescription} |
104 | 180 |
|
181 |
||
866
2d3d020eef11
added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents:
332
diff
changeset
|
182 |
\subsection{Miscellaneous forward rules}\label{MiscellaneousForwardRules} |
326 | 183 |
\index{theorems!standardizing} |
104 | 184 |
\begin{ttbox} |
8969 | 185 |
standard : thm -> thm |
186 |
zero_var_indexes : thm -> thm |
|
187 |
make_elim : thm -> thm |
|
188 |
rule_by_tactic : tactic -> thm -> thm |
|
189 |
rotate_prems : int -> thm -> thm |
|
190 |
permute_prems : int -> int -> thm -> thm |
|
104 | 191 |
\end{ttbox} |
326 | 192 |
\begin{ttdescription} |
3108 | 193 |
\item[\ttindexbold{standard} $thm$] puts $thm$ into the standard form |
194 |
of object-rules. It discharges all meta-assumptions, replaces free |
|
195 |
variables by schematic variables, renames schematic variables to |
|
196 |
have subscript zero, also strips outer (meta) quantifiers and |
|
197 |
removes dangling sort hypotheses. |
|
104 | 198 |
|
199 |
\item[\ttindexbold{zero_var_indexes} $thm$] |
|
200 |
makes all schematic variables have subscript zero, renaming them to avoid |
|
201 |
clashes. |
|
202 |
||
203 |
\item[\ttindexbold{make_elim} $thm$] |
|
204 |
\index{rules!converting destruction to elimination} |
|
8136 | 205 |
converts $thm$, which should be a destruction rule of the form |
206 |
$\List{P@1;\ldots;P@m}\Imp |
|
104 | 207 |
Q$, to the elimination rule $\List{P@1; \ldots; P@m; Q\Imp R}\Imp R$. This |
208 |
is the basis for destruct-resolution: {\tt dresolve_tac}, etc. |
|
209 |
||
210 |
\item[\ttindexbold{rule_by_tactic} {\it tac} {\it thm}] |
|
211 |
applies {\it tac\/} to the {\it thm}, freezing its variables first, then |
|
212 |
yields the proof state returned by the tactic. In typical usage, the |
|
213 |
{\it thm\/} represents an instance of a rule with several premises, some |
|
214 |
with contradictory assumptions (because of the instantiation). The |
|
215 |
tactic proves those subgoals and does whatever else it can, and returns |
|
216 |
whatever is left. |
|
4607 | 217 |
|
218 |
\item[\ttindexbold{rotate_prems} $k$ $thm$] rotates the premises of $thm$ to |
|
8969 | 219 |
the left by~$k$ positions (to the right if $k<0$). It simply calls |
220 |
\texttt{permute_prems}, below, with $j=0$. Used with |
|
221 |
\texttt{eresolve_tac}\index{*eresolve_tac!on other than first premise}, it |
|
222 |
gives the effect of applying the tactic to some other premise of $thm$ than |
|
223 |
the first. |
|
224 |
||
225 |
\item[\ttindexbold{permute_prems} $j$ $k$ $thm$] rotates the premises of $thm$ |
|
226 |
leaving the first $j$ premises unchanged. It |
|
227 |
requires $0\leq j\leq n$, where $n$ is the number of premises. If $k$ is |
|
228 |
positive then it rotates the remaining $n-j$ premises to the left; if $k$ is |
|
229 |
negative then it rotates the premises to the right. |
|
326 | 230 |
\end{ttdescription} |
104 | 231 |
|
232 |
||
233 |
\subsection{Taking a theorem apart} |
|
326 | 234 |
\index{theorems!taking apart} |
104 | 235 |
\index{flex-flex constraints} |
236 |
\begin{ttbox} |
|
4317 | 237 |
cprop_of : thm -> cterm |
104 | 238 |
concl_of : thm -> term |
239 |
prems_of : thm -> term list |
|
4317 | 240 |
cprems_of : thm -> cterm list |
104 | 241 |
nprems_of : thm -> int |
4383 | 242 |
tpairs_of : thm -> (term*term) list |
4317 | 243 |
sign_of_thm : thm -> Sign.sg |
866
2d3d020eef11
added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents:
332
diff
changeset
|
244 |
theory_of_thm : thm -> theory |
8136 | 245 |
dest_state : thm * int -> (term*term) list * term list * term * term |
246 |
rep_thm : thm -> \{sign_ref: Sign.sg_ref, der: deriv, maxidx: int, |
|
247 |
shyps: sort list, hyps: term list, prop: term\} |
|
248 |
crep_thm : thm -> \{sign_ref: Sign.sg_ref, der: deriv, maxidx: int, |
|
249 |
shyps: sort list, hyps: cterm list, prop:{\ts}cterm\} |
|
104 | 250 |
\end{ttbox} |
326 | 251 |
\begin{ttdescription} |
4317 | 252 |
\item[\ttindexbold{cprop_of} $thm$] returns the statement of $thm$ as |
253 |
a certified term. |
|
254 |
||
255 |
\item[\ttindexbold{concl_of} $thm$] returns the conclusion of $thm$ as |
|
256 |
a term. |
|
257 |
||
258 |
\item[\ttindexbold{prems_of} $thm$] returns the premises of $thm$ as a |
|
259 |
list of terms. |
|
260 |
||
261 |
\item[\ttindexbold{cprems_of} $thm$] returns the premises of $thm$ as |
|
262 |
a list of certified terms. |
|
104 | 263 |
|
264 |
\item[\ttindexbold{nprems_of} $thm$] |
|
286 | 265 |
returns the number of premises in $thm$, and is equivalent to {\tt |
4317 | 266 |
length~(prems_of~$thm$)}. |
104 | 267 |
|
4317 | 268 |
\item[\ttindexbold{tpairs_of} $thm$] returns the flex-flex constraints |
269 |
of $thm$. |
|
270 |
||
271 |
\item[\ttindexbold{sign_of_thm} $thm$] returns the signature |
|
272 |
associated with $thm$. |
|
273 |
||
274 |
\item[\ttindexbold{theory_of_thm} $thm$] returns the theory associated |
|
275 |
with $thm$. Note that this does a lookup in Isabelle's global |
|
276 |
database of loaded theories. |
|
866
2d3d020eef11
added documentation of bind_thm, qed, qed_goal, get_thm, thms_of
clasohm
parents:
332
diff
changeset
|
277 |
|
104 | 278 |
\item[\ttindexbold{dest_state} $(thm,i)$] |
279 |
decomposes $thm$ as a tuple containing a list of flex-flex constraints, a |
|
280 |
list of the subgoals~1 to~$i-1$, subgoal~$i$, and the rest of the theorem |
|
281 |
(this will be an implication if there are more than $i$ subgoals). |
|
282 |
||
4317 | 283 |
\item[\ttindexbold{rep_thm} $thm$] decomposes $thm$ as a record |
284 |
containing the statement of~$thm$ ({\tt prop}), its list of |
|
285 |
meta-assumptions ({\tt hyps}), its derivation ({\tt der}), a bound |
|
286 |
on the maximum subscript of its unknowns ({\tt maxidx}), and a |
|
287 |
reference to its signature ({\tt sign_ref}). The {\tt shyps} field |
|
288 |
is discussed below. |
|
289 |
||
290 |
\item[\ttindexbold{crep_thm} $thm$] like \texttt{rep_thm}, but returns |
|
291 |
the hypotheses and statement as certified terms. |
|
292 |
||
2040
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
293 |
\end{ttdescription} |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
294 |
|
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
295 |
|
5777 | 296 |
\subsection{*Sort hypotheses} \label{sec:sort-hyps} |
2040
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
297 |
\index{sort hypotheses} |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
298 |
\begin{ttbox} |
7644 | 299 |
strip_shyps : thm -> thm |
300 |
strip_shyps_warning : thm -> thm |
|
2040
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
301 |
\end{ttbox} |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
302 |
|
2044
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
303 |
Isabelle's type variables are decorated with sorts, constraining them to |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
304 |
certain ranges of types. This has little impact when sorts only serve for |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
305 |
syntactic classification of types --- for example, FOL distinguishes between |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
306 |
terms and other types. But when type classes are introduced through axioms, |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
307 |
this may result in some sorts becoming {\em empty\/}: where one cannot exhibit |
4317 | 308 |
a type belonging to it because certain sets of axioms are unsatisfiable. |
2044
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
309 |
|
3108 | 310 |
If a theorem contains a type variable that is constrained by an empty |
3485
f27a30a18a17
Now there are TWO spaces after each full stop, so that the Emacs sentence
paulson
parents:
3135
diff
changeset
|
311 |
sort, then that theorem has no instances. It is basically an instance |
3108 | 312 |
of {\em ex falso quodlibet}. But what if it is used to prove another |
313 |
theorem that no longer involves that sort? The latter theorem holds |
|
314 |
only if under an additional non-emptiness assumption. |
|
2040
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
315 |
|
3485
f27a30a18a17
Now there are TWO spaces after each full stop, so that the Emacs sentence
paulson
parents:
3135
diff
changeset
|
316 |
Therefore, Isabelle's theorems carry around sort hypotheses. The {\tt |
2044
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
317 |
shyps} field is a list of sorts occurring in type variables in the current |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
318 |
{\tt prop} and {\tt hyps} fields. It may also includes sorts used in the |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
319 |
theorem's proof that no longer appear in the {\tt prop} or {\tt hyps} |
3485
f27a30a18a17
Now there are TWO spaces after each full stop, so that the Emacs sentence
paulson
parents:
3135
diff
changeset
|
320 |
fields --- so-called {\em dangling\/} sort constraints. These are the |
2044
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
321 |
critical ones, asserting non-emptiness of the corresponding sorts. |
e8d52d05530a
Improved discussion of shyps thanks to Markus Wenzel
paulson
parents:
2040
diff
changeset
|
322 |
|
7644 | 323 |
Isabelle automatically removes extraneous sorts from the {\tt shyps} field at |
324 |
the end of a proof, provided that non-emptiness can be established by looking |
|
325 |
at the theorem's signature: from the {\tt classes} and {\tt arities} |
|
326 |
information. This operation is performed by \texttt{strip_shyps} and |
|
327 |
\texttt{strip_shyps_warning}. |
|
328 |
||
329 |
\begin{ttdescription} |
|
330 |
||
331 |
\item[\ttindexbold{strip_shyps} $thm$] removes any extraneous sort hypotheses |
|
332 |
that can be witnessed from the type signature. |
|
333 |
||
334 |
\item[\ttindexbold{strip_shyps_warning}] is like \texttt{strip_shyps}, but |
|
335 |
issues a warning message of any pending sort hypotheses that do not have a |
|
336 |
(syntactic) witness. |
|
337 |
||
338 |
\end{ttdescription} |
|
2040
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
339 |
|
104 | 340 |
|
341 |
\subsection{Tracing flags for unification} |
|
326 | 342 |
\index{tracing!of unification} |
104 | 343 |
\begin{ttbox} |
8136 | 344 |
Unify.trace_simp : bool ref \hfill\textbf{initially false} |
345 |
Unify.trace_types : bool ref \hfill\textbf{initially false} |
|
346 |
Unify.trace_bound : int ref \hfill\textbf{initially 10} |
|
347 |
Unify.search_bound : int ref \hfill\textbf{initially 20} |
|
104 | 348 |
\end{ttbox} |
349 |
Tracing the search may be useful when higher-order unification behaves |
|
350 |
unexpectedly. Letting {\tt res_inst_tac} circumvent the problem is easier, |
|
351 |
though. |
|
326 | 352 |
\begin{ttdescription} |
4317 | 353 |
\item[set Unify.trace_simp;] |
104 | 354 |
causes tracing of the simplification phase. |
355 |
||
4317 | 356 |
\item[set Unify.trace_types;] |
104 | 357 |
generates warnings of incompleteness, when unification is not considering |
358 |
all possible instantiations of type unknowns. |
|
359 |
||
326 | 360 |
\item[Unify.trace_bound := $n$;] |
104 | 361 |
causes unification to print tracing information once it reaches depth~$n$. |
362 |
Use $n=0$ for full tracing. At the default value of~10, tracing |
|
363 |
information is almost never printed. |
|
364 |
||
8136 | 365 |
\item[Unify.search_bound := $n$;] prevents unification from |
366 |
searching past the depth~$n$. Because of this bound, higher-order |
|
4317 | 367 |
unification cannot return an infinite sequence, though it can return |
8136 | 368 |
an exponentially long one. The search rarely approaches the default value |
4317 | 369 |
of~20. If the search is cut off, unification prints a warning |
370 |
\texttt{Unification bound exceeded}. |
|
326 | 371 |
\end{ttdescription} |
104 | 372 |
|
373 |
||
4317 | 374 |
\section{*Primitive meta-level inference rules} |
104 | 375 |
\index{meta-rules|(} |
4317 | 376 |
These implement the meta-logic in the style of the {\sc lcf} system, |
377 |
as functions from theorems to theorems. They are, rarely, useful for |
|
378 |
deriving results in the pure theory. Mainly, they are included for |
|
379 |
completeness, and most users should not bother with them. The |
|
380 |
meta-rules raise exception \xdx{THM} to signal malformed premises, |
|
381 |
incompatible signatures and similar errors. |
|
104 | 382 |
|
326 | 383 |
\index{meta-assumptions} |
104 | 384 |
The meta-logic uses natural deduction. Each theorem may depend on |
332 | 385 |
meta-level assumptions. Certain rules, such as $({\Imp}I)$, |
104 | 386 |
discharge assumptions; in most other rules, the conclusion depends on all |
387 |
of the assumptions of the premises. Formally, the system works with |
|
388 |
assertions of the form |
|
389 |
\[ \phi \quad [\phi@1,\ldots,\phi@n], \] |
|
3108 | 390 |
where $\phi@1$,~\ldots,~$\phi@n$ are the assumptions. This can be |
391 |
also read as a single conclusion sequent $\phi@1,\ldots,\phi@n \vdash |
|
3485
f27a30a18a17
Now there are TWO spaces after each full stop, so that the Emacs sentence
paulson
parents:
3135
diff
changeset
|
392 |
\phi$. Do not confuse meta-level assumptions with the object-level |
3108 | 393 |
assumptions in a subgoal, which are represented in the meta-logic |
394 |
using~$\Imp$. |
|
104 | 395 |
|
396 |
Each theorem has a signature. Certified terms have a signature. When a |
|
397 |
rule takes several premises and certified terms, it merges the signatures |
|
398 |
to make a signature for the conclusion. This fails if the signatures are |
|
399 |
incompatible. |
|
400 |
||
5777 | 401 |
\medskip |
402 |
||
403 |
The following presentation of primitive rules ignores sort |
|
404 |
hypotheses\index{sort hypotheses} (see also \S\ref{sec:sort-hyps}). These are |
|
405 |
handled transparently by the logic implementation. |
|
406 |
||
407 |
\bigskip |
|
408 |
||
326 | 409 |
\index{meta-implication} |
8136 | 410 |
The \textbf{implication} rules are $({\Imp}I)$ |
104 | 411 |
and $({\Imp}E)$: |
412 |
\[ \infer[({\Imp}I)]{\phi\Imp \psi}{\infer*{\psi}{[\phi]}} \qquad |
|
413 |
\infer[({\Imp}E)]{\psi}{\phi\Imp \psi & \phi} \] |
|
414 |
||
326 | 415 |
\index{meta-equality} |
104 | 416 |
Equality of truth values means logical equivalence: |
3524 | 417 |
\[ \infer[({\equiv}I)]{\phi\equiv\psi}{\phi\Imp\psi & |
418 |
\psi\Imp\phi} |
|
104 | 419 |
\qquad |
420 |
\infer[({\equiv}E)]{\psi}{\phi\equiv \psi & \phi} \] |
|
421 |
||
8136 | 422 |
The \textbf{equality} rules are reflexivity, symmetry, and transitivity: |
104 | 423 |
\[ {a\equiv a}\,(refl) \qquad |
424 |
\infer[(sym)]{b\equiv a}{a\equiv b} \qquad |
|
425 |
\infer[(trans)]{a\equiv c}{a\equiv b & b\equiv c} \] |
|
426 |
||
326 | 427 |
\index{lambda calc@$\lambda$-calculus} |
104 | 428 |
The $\lambda$-conversions are $\alpha$-conversion, $\beta$-conversion, and |
429 |
extensionality:\footnote{$\alpha$-conversion holds if $y$ is not free |
|
430 |
in~$a$; $(ext)$ holds if $x$ is not free in the assumptions, $f$, or~$g$.} |
|
431 |
\[ {(\lambda x.a) \equiv (\lambda y.a[y/x])} \qquad |
|
432 |
{((\lambda x.a)(b)) \equiv a[b/x]} \qquad |
|
433 |
\infer[(ext)]{f\equiv g}{f(x) \equiv g(x)} \] |
|
434 |
||
8136 | 435 |
The \textbf{abstraction} and \textbf{combination} rules let conversions be |
332 | 436 |
applied to subterms:\footnote{Abstraction holds if $x$ is not free in the |
104 | 437 |
assumptions.} |
438 |
\[ \infer[(abs)]{(\lambda x.a) \equiv (\lambda x.b)}{a\equiv b} \qquad |
|
439 |
\infer[(comb)]{f(a)\equiv g(b)}{f\equiv g & a\equiv b} \] |
|
440 |
||
326 | 441 |
\index{meta-quantifiers} |
8136 | 442 |
The \textbf{universal quantification} rules are $(\Forall I)$ and $(\Forall |
104 | 443 |
E)$:\footnote{$(\Forall I)$ holds if $x$ is not free in the assumptions.} |
444 |
\[ \infer[(\Forall I)]{\Forall x.\phi}{\phi} \qquad |
|
286 | 445 |
\infer[(\Forall E)]{\phi[b/x]}{\Forall x.\phi} \] |
104 | 446 |
|
447 |
||
326 | 448 |
\subsection{Assumption rule} |
449 |
\index{meta-assumptions} |
|
104 | 450 |
\begin{ttbox} |
3108 | 451 |
assume: cterm -> thm |
104 | 452 |
\end{ttbox} |
326 | 453 |
\begin{ttdescription} |
104 | 454 |
\item[\ttindexbold{assume} $ct$] |
332 | 455 |
makes the theorem \(\phi \;[\phi]\), where $\phi$ is the value of~$ct$. |
104 | 456 |
The rule checks that $ct$ has type $prop$ and contains no unknowns, which |
332 | 457 |
are not allowed in assumptions. |
326 | 458 |
\end{ttdescription} |
104 | 459 |
|
326 | 460 |
\subsection{Implication rules} |
461 |
\index{meta-implication} |
|
104 | 462 |
\begin{ttbox} |
3108 | 463 |
implies_intr : cterm -> thm -> thm |
464 |
implies_intr_list : cterm list -> thm -> thm |
|
104 | 465 |
implies_intr_hyps : thm -> thm |
466 |
implies_elim : thm -> thm -> thm |
|
467 |
implies_elim_list : thm -> thm list -> thm |
|
468 |
\end{ttbox} |
|
326 | 469 |
\begin{ttdescription} |
104 | 470 |
\item[\ttindexbold{implies_intr} $ct$ $thm$] |
471 |
is $({\Imp}I)$, where $ct$ is the assumption to discharge, say~$\phi$. It |
|
332 | 472 |
maps the premise~$\psi$ to the conclusion $\phi\Imp\psi$, removing all |
473 |
occurrences of~$\phi$ from the assumptions. The rule checks that $ct$ has |
|
474 |
type $prop$. |
|
104 | 475 |
|
476 |
\item[\ttindexbold{implies_intr_list} $cts$ $thm$] |
|
477 |
applies $({\Imp}I)$ repeatedly, on every element of the list~$cts$. |
|
478 |
||
479 |
\item[\ttindexbold{implies_intr_hyps} $thm$] |
|
332 | 480 |
applies $({\Imp}I)$ to discharge all the hypotheses (assumptions) of~$thm$. |
481 |
It maps the premise $\phi \; [\phi@1,\ldots,\phi@n]$ to the conclusion |
|
104 | 482 |
$\List{\phi@1,\ldots,\phi@n}\Imp\phi$. |
483 |
||
484 |
\item[\ttindexbold{implies_elim} $thm@1$ $thm@2$] |
|
485 |
applies $({\Imp}E)$ to $thm@1$ and~$thm@2$. It maps the premises $\phi\Imp |
|
486 |
\psi$ and $\phi$ to the conclusion~$\psi$. |
|
487 |
||
488 |
\item[\ttindexbold{implies_elim_list} $thm$ $thms$] |
|
489 |
applies $({\Imp}E)$ repeatedly to $thm$, using each element of~$thms$ in |
|
151 | 490 |
turn. It maps the premises $\List{\phi@1,\ldots,\phi@n}\Imp\psi$ and |
104 | 491 |
$\phi@1$,\ldots,$\phi@n$ to the conclusion~$\psi$. |
326 | 492 |
\end{ttdescription} |
104 | 493 |
|
326 | 494 |
\subsection{Logical equivalence rules} |
495 |
\index{meta-equality} |
|
104 | 496 |
\begin{ttbox} |
326 | 497 |
equal_intr : thm -> thm -> thm |
498 |
equal_elim : thm -> thm -> thm |
|
104 | 499 |
\end{ttbox} |
326 | 500 |
\begin{ttdescription} |
104 | 501 |
\item[\ttindexbold{equal_intr} $thm@1$ $thm@2$] |
332 | 502 |
applies $({\equiv}I)$ to $thm@1$ and~$thm@2$. It maps the premises~$\psi$ |
503 |
and~$\phi$ to the conclusion~$\phi\equiv\psi$; the assumptions are those of |
|
504 |
the first premise with~$\phi$ removed, plus those of |
|
505 |
the second premise with~$\psi$ removed. |
|
104 | 506 |
|
507 |
\item[\ttindexbold{equal_elim} $thm@1$ $thm@2$] |
|
508 |
applies $({\equiv}E)$ to $thm@1$ and~$thm@2$. It maps the premises |
|
509 |
$\phi\equiv\psi$ and $\phi$ to the conclusion~$\psi$. |
|
326 | 510 |
\end{ttdescription} |
104 | 511 |
|
512 |
||
513 |
\subsection{Equality rules} |
|
326 | 514 |
\index{meta-equality} |
104 | 515 |
\begin{ttbox} |
3108 | 516 |
reflexive : cterm -> thm |
104 | 517 |
symmetric : thm -> thm |
518 |
transitive : thm -> thm -> thm |
|
519 |
\end{ttbox} |
|
326 | 520 |
\begin{ttdescription} |
104 | 521 |
\item[\ttindexbold{reflexive} $ct$] |
151 | 522 |
makes the theorem \(ct\equiv ct\). |
104 | 523 |
|
524 |
\item[\ttindexbold{symmetric} $thm$] |
|
525 |
maps the premise $a\equiv b$ to the conclusion $b\equiv a$. |
|
526 |
||
527 |
\item[\ttindexbold{transitive} $thm@1$ $thm@2$] |
|
528 |
maps the premises $a\equiv b$ and $b\equiv c$ to the conclusion~${a\equiv c}$. |
|
326 | 529 |
\end{ttdescription} |
104 | 530 |
|
531 |
||
532 |
\subsection{The $\lambda$-conversion rules} |
|
326 | 533 |
\index{lambda calc@$\lambda$-calculus} |
104 | 534 |
\begin{ttbox} |
3108 | 535 |
beta_conversion : cterm -> thm |
104 | 536 |
extensional : thm -> thm |
3108 | 537 |
abstract_rule : string -> cterm -> thm -> thm |
104 | 538 |
combination : thm -> thm -> thm |
539 |
\end{ttbox} |
|
326 | 540 |
There is no rule for $\alpha$-conversion because Isabelle regards |
541 |
$\alpha$-convertible theorems as equal. |
|
542 |
\begin{ttdescription} |
|
104 | 543 |
\item[\ttindexbold{beta_conversion} $ct$] |
544 |
makes the theorem $((\lambda x.a)(b)) \equiv a[b/x]$, where $ct$ is the |
|
545 |
term $(\lambda x.a)(b)$. |
|
546 |
||
547 |
\item[\ttindexbold{extensional} $thm$] |
|
548 |
maps the premise $f(x) \equiv g(x)$ to the conclusion $f\equiv g$. |
|
549 |
Parameter~$x$ is taken from the premise. It may be an unknown or a free |
|
332 | 550 |
variable (provided it does not occur in the assumptions); it must not occur |
104 | 551 |
in $f$ or~$g$. |
552 |
||
553 |
\item[\ttindexbold{abstract_rule} $v$ $x$ $thm$] |
|
554 |
maps the premise $a\equiv b$ to the conclusion $(\lambda x.a) \equiv |
|
555 |
(\lambda x.b)$, abstracting over all occurrences (if any!) of~$x$. |
|
556 |
Parameter~$x$ is supplied as a cterm. It may be an unknown or a free |
|
332 | 557 |
variable (provided it does not occur in the assumptions). In the |
104 | 558 |
conclusion, the bound variable is named~$v$. |
559 |
||
560 |
\item[\ttindexbold{combination} $thm@1$ $thm@2$] |
|
561 |
maps the premises $f\equiv g$ and $a\equiv b$ to the conclusion~$f(a)\equiv |
|
562 |
g(b)$. |
|
326 | 563 |
\end{ttdescription} |
104 | 564 |
|
565 |
||
326 | 566 |
\subsection{Forall introduction rules} |
567 |
\index{meta-quantifiers} |
|
104 | 568 |
\begin{ttbox} |
3108 | 569 |
forall_intr : cterm -> thm -> thm |
570 |
forall_intr_list : cterm list -> thm -> thm |
|
571 |
forall_intr_frees : thm -> thm |
|
104 | 572 |
\end{ttbox} |
573 |
||
326 | 574 |
\begin{ttdescription} |
104 | 575 |
\item[\ttindexbold{forall_intr} $x$ $thm$] |
576 |
applies $({\Forall}I)$, abstracting over all occurrences (if any!) of~$x$. |
|
577 |
The rule maps the premise $\phi$ to the conclusion $\Forall x.\phi$. |
|
578 |
Parameter~$x$ is supplied as a cterm. It may be an unknown or a free |
|
332 | 579 |
variable (provided it does not occur in the assumptions). |
104 | 580 |
|
581 |
\item[\ttindexbold{forall_intr_list} $xs$ $thm$] |
|
582 |
applies $({\Forall}I)$ repeatedly, on every element of the list~$xs$. |
|
583 |
||
584 |
\item[\ttindexbold{forall_intr_frees} $thm$] |
|
585 |
applies $({\Forall}I)$ repeatedly, generalizing over all the free variables |
|
586 |
of the premise. |
|
326 | 587 |
\end{ttdescription} |
104 | 588 |
|
589 |
||
326 | 590 |
\subsection{Forall elimination rules} |
104 | 591 |
\begin{ttbox} |
3108 | 592 |
forall_elim : cterm -> thm -> thm |
593 |
forall_elim_list : cterm list -> thm -> thm |
|
594 |
forall_elim_var : int -> thm -> thm |
|
595 |
forall_elim_vars : int -> thm -> thm |
|
104 | 596 |
\end{ttbox} |
597 |
||
326 | 598 |
\begin{ttdescription} |
104 | 599 |
\item[\ttindexbold{forall_elim} $ct$ $thm$] |
600 |
applies $({\Forall}E)$, mapping the premise $\Forall x.\phi$ to the conclusion |
|
601 |
$\phi[ct/x]$. The rule checks that $ct$ and $x$ have the same type. |
|
602 |
||
603 |
\item[\ttindexbold{forall_elim_list} $cts$ $thm$] |
|
604 |
applies $({\Forall}E)$ repeatedly, on every element of the list~$cts$. |
|
605 |
||
606 |
\item[\ttindexbold{forall_elim_var} $k$ $thm$] |
|
607 |
applies $({\Forall}E)$, mapping the premise $\Forall x.\phi$ to the conclusion |
|
608 |
$\phi[\Var{x@k}/x]$. Thus, it replaces the outermost $\Forall$-bound |
|
609 |
variable by an unknown having subscript~$k$. |
|
610 |
||
611 |
\item[\ttindexbold{forall_elim_vars} $ks$ $thm$] |
|
612 |
applies {\tt forall_elim_var} repeatedly, for every element of the list~$ks$. |
|
326 | 613 |
\end{ttdescription} |
104 | 614 |
|
8135
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
615 |
|
326 | 616 |
\subsection{Instantiation of unknowns} |
617 |
\index{instantiation} |
|
8136 | 618 |
\begin{alltt}\footnotesize |
3135 | 619 |
instantiate: (indexname * ctyp){\thinspace}list * (cterm * cterm){\thinspace}list -> thm -> thm |
8136 | 620 |
\end{alltt} |
8135
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
621 |
There are two versions of this rule. The primitive one is |
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
622 |
\ttindexbold{Thm.instantiate}, which merely performs the instantiation and can |
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
623 |
produce a conclusion not in normal form. A derived version is |
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
624 |
\ttindexbold{Drule.instantiate}, which normalizes its conclusion. |
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
625 |
|
326 | 626 |
\begin{ttdescription} |
8136 | 627 |
\item[\ttindexbold{instantiate} ($tyinsts$,$insts$) $thm$] |
326 | 628 |
simultaneously substitutes types for type unknowns (the |
104 | 629 |
$tyinsts$) and terms for term unknowns (the $insts$). Instantiations are |
630 |
given as $(v,t)$ pairs, where $v$ is an unknown and $t$ is a term (of the |
|
631 |
same type as $v$) or a type (of the same sort as~$v$). All the unknowns |
|
8135
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
632 |
must be distinct. |
4376 | 633 |
|
8135
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
634 |
In some cases, \ttindex{instantiate'} (see \S\ref{sec:instantiate}) |
4376 | 635 |
provides a more convenient interface to this rule. |
326 | 636 |
\end{ttdescription} |
104 | 637 |
|
638 |
||
8135
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
639 |
|
ad1c4a678196
Documented Thm.instantiate (not normalizing) and Drule.instantiate
paulson
parents:
7871
diff
changeset
|
640 |
|
326 | 641 |
\subsection{Freezing/thawing type unknowns} |
642 |
\index{type unknowns!freezing/thawing of} |
|
104 | 643 |
\begin{ttbox} |
644 |
freezeT: thm -> thm |
|
645 |
varifyT: thm -> thm |
|
646 |
\end{ttbox} |
|
326 | 647 |
\begin{ttdescription} |
104 | 648 |
\item[\ttindexbold{freezeT} $thm$] |
649 |
converts all the type unknowns in $thm$ to free type variables. |
|
650 |
||
651 |
\item[\ttindexbold{varifyT} $thm$] |
|
652 |
converts all the free type variables in $thm$ to type unknowns. |
|
326 | 653 |
\end{ttdescription} |
104 | 654 |
|
655 |
||
656 |
\section{Derived rules for goal-directed proof} |
|
657 |
Most of these rules have the sole purpose of implementing particular |
|
658 |
tactics. There are few occasions for applying them directly to a theorem. |
|
659 |
||
660 |
\subsection{Proof by assumption} |
|
326 | 661 |
\index{meta-assumptions} |
104 | 662 |
\begin{ttbox} |
4276 | 663 |
assumption : int -> thm -> thm Seq.seq |
104 | 664 |
eq_assumption : int -> thm -> thm |
665 |
\end{ttbox} |
|
326 | 666 |
\begin{ttdescription} |
104 | 667 |
\item[\ttindexbold{assumption} {\it i} $thm$] |
668 |
attempts to solve premise~$i$ of~$thm$ by assumption. |
|
669 |
||
670 |
\item[\ttindexbold{eq_assumption}] |
|
671 |
is like {\tt assumption} but does not use unification. |
|
326 | 672 |
\end{ttdescription} |
104 | 673 |
|
674 |
||
675 |
\subsection{Resolution} |
|
326 | 676 |
\index{resolution} |
104 | 677 |
\begin{ttbox} |
678 |
biresolution : bool -> (bool*thm)list -> int -> thm |
|
4276 | 679 |
-> thm Seq.seq |
104 | 680 |
\end{ttbox} |
326 | 681 |
\begin{ttdescription} |
104 | 682 |
\item[\ttindexbold{biresolution} $match$ $rules$ $i$ $state$] |
326 | 683 |
performs bi-resolution on subgoal~$i$ of $state$, using the list of $\it |
104 | 684 |
(flag,rule)$ pairs. For each pair, it applies resolution if the flag |
685 |
is~{\tt false} and elim-resolution if the flag is~{\tt true}. If $match$ |
|
686 |
is~{\tt true}, the $state$ is not instantiated. |
|
326 | 687 |
\end{ttdescription} |
104 | 688 |
|
689 |
||
690 |
\subsection{Composition: resolution without lifting} |
|
326 | 691 |
\index{resolution!without lifting} |
104 | 692 |
\begin{ttbox} |
693 |
compose : thm * int * thm -> thm list |
|
694 |
COMP : thm * thm -> thm |
|
695 |
bicompose : bool -> bool * thm * int -> int -> thm |
|
4276 | 696 |
-> thm Seq.seq |
104 | 697 |
\end{ttbox} |
698 |
In forward proof, a typical use of composition is to regard an assertion of |
|
699 |
the form $\phi\Imp\psi$ as atomic. Schematic variables are not renamed, so |
|
700 |
beware of clashes! |
|
326 | 701 |
\begin{ttdescription} |
104 | 702 |
\item[\ttindexbold{compose} ($thm@1$, $i$, $thm@2$)] |
703 |
uses $thm@1$, regarded as an atomic formula, to solve premise~$i$ |
|
704 |
of~$thm@2$. Let $thm@1$ and $thm@2$ be $\psi$ and $\List{\phi@1; \ldots; |
|
705 |
\phi@n} \Imp \phi$. For each $s$ that unifies~$\psi$ and $\phi@i$, the |
|
706 |
result list contains the theorem |
|
707 |
\[ (\List{\phi@1; \ldots; \phi@{i-1}; \phi@{i+1}; \ldots; \phi@n} \Imp \phi)s. |
|
708 |
\] |
|
709 |
||
1119 | 710 |
\item[$thm@1$ \ttindexbold{COMP} $thm@2$] |
104 | 711 |
calls \hbox{\tt compose ($thm@1$, 1, $thm@2$)} and returns the result, if |
326 | 712 |
unique; otherwise, it raises exception~\xdx{THM}\@. It is |
104 | 713 |
analogous to {\tt RS}\@. |
714 |
||
715 |
For example, suppose that $thm@1$ is $a=b\Imp b=a$, a symmetry rule, and |
|
332 | 716 |
that $thm@2$ is $\List{P\Imp Q; \neg Q} \Imp\neg P$, which is the |
104 | 717 |
principle of contrapositives. Then the result would be the |
718 |
derived rule $\neg(b=a)\Imp\neg(a=b)$. |
|
719 |
||
720 |
\item[\ttindexbold{bicompose} $match$ ($flag$, $rule$, $m$) $i$ $state$] |
|
721 |
refines subgoal~$i$ of $state$ using $rule$, without lifting. The $rule$ |
|
722 |
is taken to have the form $\List{\psi@1; \ldots; \psi@m} \Imp \psi$, where |
|
326 | 723 |
$\psi$ need not be atomic; thus $m$ determines the number of new |
104 | 724 |
subgoals. If $flag$ is {\tt true} then it performs elim-resolution --- it |
725 |
solves the first premise of~$rule$ by assumption and deletes that |
|
726 |
assumption. If $match$ is~{\tt true}, the $state$ is not instantiated. |
|
326 | 727 |
\end{ttdescription} |
104 | 728 |
|
729 |
||
730 |
\subsection{Other meta-rules} |
|
731 |
\begin{ttbox} |
|
3108 | 732 |
trivial : cterm -> thm |
104 | 733 |
lift_rule : (thm * int) -> thm -> thm |
734 |
rename_params_rule : string list * int -> thm -> thm |
|
4276 | 735 |
flexflex_rule : thm -> thm Seq.seq |
104 | 736 |
\end{ttbox} |
326 | 737 |
\begin{ttdescription} |
104 | 738 |
\item[\ttindexbold{trivial} $ct$] |
739 |
makes the theorem \(\phi\Imp\phi\), where $\phi$ is the value of~$ct$. |
|
740 |
This is the initial state for a goal-directed proof of~$\phi$. The rule |
|
741 |
checks that $ct$ has type~$prop$. |
|
742 |
||
743 |
\item[\ttindexbold{lift_rule} ($state$, $i$) $rule$] \index{lifting} |
|
744 |
prepares $rule$ for resolution by lifting it over the parameters and |
|
745 |
assumptions of subgoal~$i$ of~$state$. |
|
746 |
||
747 |
\item[\ttindexbold{rename_params_rule} ({\it names}, {\it i}) $thm$] |
|
748 |
uses the $names$ to rename the parameters of premise~$i$ of $thm$. The |
|
749 |
names must be distinct. If there are fewer names than parameters, then the |
|
750 |
rule renames the innermost parameters and may modify the remaining ones to |
|
751 |
ensure that all the parameters are distinct. |
|
752 |
\index{parameters!renaming} |
|
753 |
||
754 |
\item[\ttindexbold{flexflex_rule} $thm$] \index{flex-flex constraints} |
|
755 |
removes all flex-flex pairs from $thm$ using the trivial unifier. |
|
326 | 756 |
\end{ttdescription} |
1590 | 757 |
\index{meta-rules|)} |
758 |
||
759 |
||
1846 | 760 |
\section{Proof objects}\label{sec:proofObjects} |
1590 | 761 |
\index{proof objects|(} Isabelle can record the full meta-level proof of each |
762 |
theorem. The proof object contains all logical inferences in detail, while |
|
763 |
omitting bookkeeping steps that have no logical meaning to an outside |
|
764 |
observer. Rewriting steps are recorded in similar detail as the output of |
|
765 |
simplifier tracing. The proof object can be inspected by a separate |
|
4317 | 766 |
proof-checker, for example. |
1590 | 767 |
|
768 |
Full proof objects are large. They multiply storage requirements by about |
|
769 |
seven; attempts to build large logics (such as {\sc zf} and {\sc hol}) may |
|
770 |
fail. Isabelle normally builds minimal proof objects, which include only uses |
|
771 |
of oracles. You can also request an intermediate level of detail, containing |
|
772 |
uses of oracles, axioms and theorems. These smaller proof objects indicate a |
|
6924
7e166f8d412e
Theorems involving oracles will be printed with a suffixed \verb|[!]|;
wenzelm
parents:
6097
diff
changeset
|
773 |
theorem's dependencies. Theorems involving oracles will be printed with a |
7e166f8d412e
Theorems involving oracles will be printed with a suffixed \verb|[!]|;
wenzelm
parents:
6097
diff
changeset
|
774 |
suffixed \verb|[!]| to point out the different quality of confidence achieved. |
1590 | 775 |
|
776 |
Isabelle provides proof objects for the sake of transparency. Their aim is to |
|
777 |
increase your confidence in Isabelle. They let you inspect proofs constructed |
|
778 |
by the classical reasoner or simplifier, and inform you of all uses of |
|
779 |
oracles. Seldom will proof objects be given whole to an automatic |
|
780 |
proof-checker: none has been written. It is up to you to examine and |
|
781 |
interpret them sensibly. For example, when scrutinizing a theorem's |
|
782 |
derivation for dependence upon some oracle or axiom, remember to scrutinize |
|
783 |
all of its lemmas. Their proofs are included in the main derivation, through |
|
784 |
the {\tt Theorem} constructor. |
|
785 |
||
786 |
Proof objects are expressed using a polymorphic type of variable-branching |
|
787 |
trees. Proof objects (formally known as {\em derivations\/}) are trees |
|
788 |
labelled by rules, where {\tt rule} is a complicated datatype declared in the |
|
789 |
file {\tt Pure/thm.ML}. |
|
790 |
\begin{ttbox} |
|
791 |
datatype 'a mtree = Join of 'a * 'a mtree list; |
|
792 |
datatype rule = \(\ldots\); |
|
793 |
type deriv = rule mtree; |
|
794 |
\end{ttbox} |
|
795 |
% |
|
796 |
Each theorem's derivation is stored as the {\tt der} field of its internal |
|
797 |
record: |
|
798 |
\begin{ttbox} |
|
799 |
#der (rep_thm conjI); |
|
6097 | 800 |
{\out Join (Theorem ("HOL.conjI", []), [Join (MinProof,[])]) : deriv} |
1590 | 801 |
\end{ttbox} |
4317 | 802 |
This proof object identifies a labelled theorem, {\tt conjI} of theory |
803 |
\texttt{HOL}, whose underlying proof has not been recorded; all we |
|
804 |
have is {\tt MinProof}. |
|
1590 | 805 |
|
806 |
Nontrivial proof objects are unreadably large and complex. Isabelle provides |
|
807 |
several functions to help you inspect them informally. These functions omit |
|
808 |
the more obscure inferences and attempt to restructure the others into natural |
|
809 |
formats, linear or tree-structured. |
|
810 |
||
811 |
\begin{ttbox} |
|
812 |
keep_derivs : deriv_kind ref |
|
813 |
Deriv.size : deriv -> int |
|
814 |
Deriv.drop : 'a mtree * int -> 'a mtree |
|
815 |
Deriv.linear : deriv -> deriv list |
|
1876 | 816 |
Deriv.tree : deriv -> Deriv.orule mtree |
1590 | 817 |
\end{ttbox} |
818 |
||
819 |
\begin{ttdescription} |
|
820 |
\item[\ttindexbold{keep_derivs} := MinDeriv $|$ ThmDeriv $|$ FullDeriv;] |
|
4597
a0bdee64194c
Fixed a lot of overfull and underfull lines (hboxes)
paulson
parents:
4383
diff
changeset
|
821 |
specifies one of the options for keeping derivations. They can be |
1590 | 822 |
minimal (oracles only), include theorems and axioms, or be full. |
823 |
||
824 |
\item[\ttindexbold{Deriv.size} $der$] yields the size of a derivation, |
|
825 |
excluding lemmas. |
|
826 |
||
827 |
\item[\ttindexbold{Deriv.drop} ($tree$,$n$)] returns the subtree $n$ levels |
|
828 |
down, always following the first child. It is good for stripping off |
|
829 |
outer level inferences that are used to put a theorem into standard form. |
|
830 |
||
831 |
\item[\ttindexbold{Deriv.linear} $der$] converts a derivation into a linear |
|
832 |
format, replacing the deep nesting by a list of rules. Intuitively, this |
|
833 |
reveals the single-step Isabelle proof that is constructed internally by |
|
834 |
tactics. |
|
835 |
||
836 |
\item[\ttindexbold{Deriv.tree} $der$] converts a derivation into an |
|
837 |
object-level proof tree. A resolution by an object-rule is converted to a |
|
838 |
tree node labelled by that rule. Complications arise if the object-rule is |
|
839 |
itself derived in some way. Nested resolutions are unravelled, but other |
|
840 |
operations on rules (such as rewriting) are left as-is. |
|
841 |
\end{ttdescription} |
|
842 |
||
2040
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
843 |
Functions {\tt Deriv.linear} and {\tt Deriv.tree} omit the proof of any named |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
844 |
theorems (constructor {\tt Theorem}) they encounter in a derivation. Applying |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
845 |
them directly to the derivation of a named theorem is therefore pointless. |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
846 |
Use {\tt Deriv.drop} with argument~1 to skip over the initial {\tt Theorem} |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
847 |
constructor. |
6db93e6f1b11
Documented sort hypotheses and improved discussion of derivations
paulson
parents:
1876
diff
changeset
|
848 |
|
1590 | 849 |
\index{proof objects|)} |
104 | 850 |
\index{theorems|)} |
5371 | 851 |
|
7871 | 852 |
\medskip |
853 |
||
854 |
The dependencies of theorems can be viewed using the function \ttindexbold{thm_deps}: |
|
855 |
\begin{ttbox} |
|
856 |
thm_deps [\(thm@1\), \(\ldots\), \(thm@n\)]; |
|
857 |
\end{ttbox} |
|
858 |
generates the dependency graph of the theorems $thm@1$, $\ldots$, $thm@n$ and |
|
859 |
displays it using Isabelle's graph browser. This function expects derivations |
|
860 |
to be enabled. The structure \texttt{ThmDeps} contains the two functions |
|
861 |
\begin{ttbox} |
|
862 |
enable : unit -> unit |
|
863 |
disable : unit -> unit |
|
864 |
\end{ttbox} |
|
865 |
which set \texttt{keep_derivs} appropriately. |
|
866 |
||
5371 | 867 |
|
868 |
%%% Local Variables: |
|
869 |
%%% mode: latex |
|
870 |
%%% TeX-master: "ref" |
|
871 |
%%% End: |