doc-src/TutorialI/Rules/rules.tex
author paulson
Fri, 03 Aug 2001 18:04:55 +0200
changeset 11458 09a6c44a48ea
parent 11428 332347b9b942
child 11480 0fba0357c04c
permissions -rw-r--r--
numerous stylistic changes and indexing
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10792
78dfc5904eea a few extra brackets
paulson
parents: 10596
diff changeset
     1
% $Id$
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
     2
\chapter{The Rules of the Game}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
     3
\label{chap:rules}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
     4
 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
     5
This chapter outlines the concepts and techniques that underlie reasoning
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
     6
in Isabelle.  Until now, we have proved everything using only induction and
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
     7
simplification, but any serious verification project require more elaborate
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
     8
forms of inference.  The chapter also introduces the fundamentals of
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
     9
predicate logic.  The first examples in this chapter will consist of
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    10
detailed, low-level proof steps.  Later, we shall see how to automate such
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    11
reasoning using the methods
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    12
\isa{blast},
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    13
\isa{auto} and others.  Backward or goal-directed proof is our usual style,
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    14
but the chapter also introduces forward reasoning, where one theorem is
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    15
transformed to yield another.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    16
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
    17
\section{Natural Deduction}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    18
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    19
\index{natural deduction|(}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    20
In Isabelle, proofs are constructed using inference rules. The 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    21
most familiar inference rule is probably \emph{modus ponens}:%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    22
\index{modus ponens@\emph{modus ponens}} 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    23
\[ \infer{Q}{P\imp Q & P} \]
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    24
This rule says that from $P\imp Q$ and $P$ we may infer~$Q$.  
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    25
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    26
\textbf{Natural deduction} is an attempt to formalize logic in a way 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    27
that mirrors human reasoning patterns. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    28
For each logical symbol (say, $\conj$), there 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    29
are two kinds of rules: \textbf{introduction} and \textbf{elimination} rules. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    30
The introduction rules allow us to infer this symbol (say, to 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    31
infer conjunctions). The elimination rules allow us to deduce 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    32
consequences from this symbol. Ideally each rule should mention 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    33
one symbol only.  For predicate logic this can be 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    34
done, but when users define their own concepts they typically 
11255
ca546b170471 *** empty log message ***
paulson
parents: 11234
diff changeset
    35
have to refer to other symbols as well.  It is best not to be dogmatic.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    36
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    37
Natural deduction generally deserves its name.  It is easy to use.  Each
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    38
proof step consists of identifying the outermost symbol of a formula and
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    39
applying the corresponding rule.  It creates new subgoals in
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    40
an obvious way from parts of the chosen formula.  Expanding the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    41
definitions of constants can blow up the goal enormously.  Deriving natural
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    42
deduction rules for such constants lets us reason in terms of their key
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    43
properties, which might otherwise be obscured by the technicalities of its
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    44
definition.  Natural deduction rules also lend themselves to automation.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    45
Isabelle's
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    46
\textbf{classical reasoner} accepts any suitable  collection of natural deduction
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    47
rules and uses them to search for proofs automatically.  Isabelle is designed around
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    48
natural deduction and many of its tools use the terminology of introduction
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    49
and elimination rules.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    50
\index{natural deduction|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    51
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    52
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
    53
\section{Introduction Rules}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    54
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    55
\index{introduction rules|(}%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
    56
An introduction rule tells us when we can infer a formula 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    57
containing a specific logical symbol. For example, the conjunction 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    58
introduction rule says that if we have $P$ and if we have $Q$ then 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    59
we have $P\conj Q$. In a mathematics text, it is typically shown 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    60
like this:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    61
\[  \infer{P\conj Q}{P & Q} \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    62
The rule introduces the conjunction
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
    63
symbol~($\conj$) in its conclusion.  In Isabelle proofs we
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    64
mainly  reason backwards.  When we apply this rule, the subgoal already has
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    65
the form of a conjunction; the proof step makes this conjunction symbol
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    66
disappear. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    67
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    68
In Isabelle notation, the rule looks like this:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    69
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
    70
\isasymlbrakk?P;\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?P\ \isasymand\ ?Q\rulenamedx{conjI}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    71
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    72
Carefully examine the syntax.  The premises appear to the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    73
left of the arrow and the conclusion to the right.  The premises (if 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    74
more than one) are grouped using the fat brackets.  The question marks
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    75
indicate \textbf{schematic variables} (also called
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
    76
\textbf{unknowns}):\index{unknowns|bold} they may
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    77
be replaced by arbitrary formulas.  If we use the rule backwards, Isabelle
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    78
tries to unify the current subgoal with the conclusion of the rule, which
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    79
has the form \isa{?P\ \isasymand\ ?Q}.  (Unification is discussed below,
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
    80
{\S}\ref{sec:unification}.)  If successful,
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    81
it yields new subgoals given by the formulas assigned to 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    82
\isa{?P} and \isa{?Q}.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    83
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    84
The following trivial proof illustrates this point. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    85
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
    86
\isacommand{lemma}\ conj_rule:\ "\isasymlbrakk P;\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    87
Q\isasymrbrakk\ \isasymLongrightarrow\ P\ \isasymand\
10301
paulson
parents: 10295
diff changeset
    88
(Q\ \isasymand\ P)"\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    89
\isacommand{apply}\ (rule\ conjI)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    90
\ \isacommand{apply}\ assumption\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    91
\isacommand{apply}\ (rule\ conjI)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    92
\ \isacommand{apply}\ assumption\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    93
\isacommand{apply}\ assumption
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    94
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    95
At the start, Isabelle presents 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    96
us with the assumptions (\isa{P} and~\isa{Q}) and with the goal to be proved,
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    97
\isa{P\ \isasymand\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    98
(Q\ \isasymand\ P)}.  We are working backwards, so when we
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
    99
apply conjunction introduction, the rule removes the outermost occurrence
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   100
of the \isa{\isasymand} symbol.  To apply a  rule to a subgoal, we apply
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   101
the proof method \isa{rule} --- here with \isa{conjI}, the  conjunction
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   102
introduction rule. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   103
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   104
%\isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ P\ \isasymand\ Q\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   105
%\isasymand\ P\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   106
\ 1.\ \isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ P\isanewline
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   107
\ 2.\ \isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ Q\ \isasymand\ P
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   108
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   109
Isabelle leaves two new subgoals: the two halves of the original conjunction. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   110
The first is simply \isa{P}, which is trivial, since \isa{P} is among 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   111
the assumptions.  We can apply the \methdx{assumption} 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   112
method, which proves a subgoal by finding a matching assumption.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   113
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   114
\ 1.\ \isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   115
Q\ \isasymand\ P
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   116
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   117
We are left with the subgoal of proving  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   118
\isa{Q\ \isasymand\ P} from the assumptions \isa{P} and~\isa{Q}.  We apply
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   119
\isa{rule conjI} again. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   120
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   121
\ 1.\ \isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ Q\isanewline
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   122
\ 2.\ \isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ P
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   123
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   124
We are left with two new subgoals, \isa{Q} and~\isa{P}, each of which can be proved
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   125
using the \isa{assumption} method.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   126
\index{introduction rules|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   127
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   128
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   129
\section{Elimination Rules}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   130
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   131
\index{elimination rules|(}%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   132
Elimination rules work in the opposite direction from introduction 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   133
rules. In the case of conjunction, there are two such rules. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   134
From $P\conj Q$ we infer $P$. also, from $P\conj Q$  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   135
we infer $Q$:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   136
\[ \infer{P}{P\conj Q} \qquad \infer{Q}{P\conj Q}  \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   137
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   138
Now consider disjunction. There are two introduction rules, which resemble inverted forms of the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   139
conjunction elimination rules:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   140
\[ \infer{P\disj Q}{P} \qquad \infer{P\disj Q}{Q}  \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   141
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   142
What is the disjunction elimination rule?  The situation is rather different from 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   143
conjunction.  From $P\disj Q$ we cannot conclude  that $P$ is true and we
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   144
cannot conclude that $Q$ is true; there are no direct
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   145
elimination rules of the sort that we have seen for conjunction.  Instead,
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   146
there is an elimination  rule that works indirectly.  If we are trying  to prove
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   147
something else, say $R$, and we know that $P\disj Q$ holds,  then we have to consider
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   148
two cases.  We can assume that $P$ is true  and prove $R$ and then assume that $Q$ is
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   149
true and prove $R$ a second  time.  Here we see a fundamental concept used in natural
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   150
deduction:  that of the \textbf{assumptions}. We have to prove $R$ twice, under
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   151
different assumptions.  The assumptions are local to these subproofs and are visible 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   152
nowhere else. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   153
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   154
In a logic text, the disjunction elimination rule might be shown 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   155
like this:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   156
\[ \infer{R}{P\disj Q & \infer*{R}{[P]} & \infer*{R}{[Q]}} \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   157
The assumptions $[P]$ and $[Q]$ are bracketed 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   158
to emphasize that they are local to their subproofs.  In Isabelle 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   159
notation, the already-familiar \isa{\isasymLongrightarrow} syntax serves the
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   160
same  purpose:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   161
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   162
\isasymlbrakk?P\ \isasymor\ ?Q;\ ?P\ \isasymLongrightarrow\ ?R;\ ?Q\ \isasymLongrightarrow\ ?R\isasymrbrakk\ \isasymLongrightarrow\ ?R\rulenamedx{disjE}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   163
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   164
When we use this sort of elimination rule backwards, it produces 
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
   165
a case split.  (We have seen this before, in proofs by induction.)  The following  proof
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   166
illustrates the use of disjunction elimination.  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   167
\begin{isabelle}
10301
paulson
parents: 10295
diff changeset
   168
\isacommand{lemma}\ disj_swap:\ "P\ \isasymor\ Q\ 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   169
\isasymLongrightarrow\ Q\ \isasymor\ P"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   170
\isacommand{apply}\ (erule\ disjE)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   171
\ \isacommand{apply}\ (rule\ disjI2)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   172
\ \isacommand{apply}\ assumption\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   173
\isacommand{apply}\ (rule\ disjI1)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   174
\isacommand{apply}\ assumption
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   175
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   176
We assume \isa{P\ \isasymor\ Q} and
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   177
must prove \isa{Q\ \isasymor\ P}\@.  Our first step uses the disjunction
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   178
elimination rule, \isa{disjE}\@.  We invoke it using \methdx{erule}, a
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   179
method designed to work with elimination rules.  It looks for an assumption that
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   180
matches the rule's first premise.  It deletes the matching assumption,
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   181
regards the first premise as proved and returns subgoals corresponding to
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   182
the remaining premises.  When we apply \isa{erule} to \isa{disjE}, only two
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   183
subgoals result.  This is better than applying it using \isa{rule}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   184
to get three subgoals, then proving the first by assumption: the other
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   185
subgoals would have the redundant assumption 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   186
\hbox{\isa{P\ \isasymor\ Q}}.
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   187
Most of the time, \isa{erule} is  the best way to use elimination rules, since it
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   188
replaces an assumption by its subformulas; only rarely does the original
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   189
assumption remain useful.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   190
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   191
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   192
%P\ \isasymor\ Q\ \isasymLongrightarrow\ Q\ \isasymor\ P\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   193
\ 1.\ P\ \isasymLongrightarrow\ Q\ \isasymor\ P\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   194
\ 2.\ Q\ \isasymLongrightarrow\ Q\ \isasymor\ P
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   195
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   196
These are the two subgoals returned by \isa{erule}.  The first assumes
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   197
\isa{P} and the  second assumes \isa{Q}.  Tackling the first subgoal, we
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   198
need to  show \isa{Q\ \isasymor\ P}\@.  The second introduction rule
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   199
(\isa{disjI2}) can reduce this  to \isa{P}, which matches the assumption.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   200
So, we apply the
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   201
\isa{rule}  method with \isa{disjI2} \ldots
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   202
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   203
\ 1.\ P\ \isasymLongrightarrow\ P\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   204
\ 2.\ Q\ \isasymLongrightarrow\ Q\ \isasymor\ P
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   205
\end{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   206
\ldots and finish off with the \isa{assumption} 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   207
method.  We are left with the other subgoal, which 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   208
assumes \isa{Q}.  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   209
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   210
\ 1.\ Q\ \isasymLongrightarrow\ Q\ \isasymor\ P
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   211
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   212
Its proof is similar, using the introduction 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   213
rule \isa{disjI1}. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   214
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   215
The result of this proof is a new inference rule \isa{disj_swap}, which is neither 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   216
an introduction nor an elimination rule, but which might 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   217
be useful.  We can use it to replace any goal of the form $Q\disj P$
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   218
by a one of the form $P\disj Q$.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   219
\index{elimination rules|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   220
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   221
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   222
\section{Destruction Rules: Some Examples}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   223
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   224
\index{destruction rules|(}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   225
Now let us examine the analogous proof for conjunction. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   226
\begin{isabelle}
10301
paulson
parents: 10295
diff changeset
   227
\isacommand{lemma}\ conj_swap:\ "P\ \isasymand\ Q\ \isasymLongrightarrow\ Q\ \isasymand\ P"\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   228
\isacommand{apply}\ (rule\ conjI)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   229
\ \isacommand{apply}\ (drule\ conjunct2)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   230
\ \isacommand{apply}\ assumption\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   231
\isacommand{apply}\ (drule\ conjunct1)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   232
\isacommand{apply}\ assumption
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   233
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   234
Recall that the conjunction elimination rules --- whose Isabelle names are 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   235
\isa{conjunct1} and \isa{conjunct2} --- simply return the first or second half
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   236
of a conjunction.  Rules of this sort (where the conclusion is a subformula of a
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   237
premise) are called \textbf{destruction} rules because they take apart and destroy
10978
5eebea8f359f *** empty log message ***
nipkow
parents: 10971
diff changeset
   238
a premise.%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   239
\footnote{This Isabelle terminology has no counterpart in standard logic texts, 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   240
although the distinction between the two forms of elimination rule is well known. 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   241
Girard \cite[page 74]{girard89},\index{Girard, Jean-Yves|fnote}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   242
for example, writes ``The elimination rules 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   243
[for $\disj$ and $\exists$] are very
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   244
bad.  What is catastrophic about them is the parasitic presence of a formula [$R$]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   245
which has no structural link with the formula which is eliminated.''}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   246
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   247
The first proof step applies conjunction introduction, leaving 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   248
two subgoals: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   249
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   250
%P\ \isasymand\ Q\ \isasymLongrightarrow\ Q\ \isasymand\ P\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   251
\ 1.\ P\ \isasymand\ Q\ \isasymLongrightarrow\ Q\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   252
\ 2.\ P\ \isasymand\ Q\ \isasymLongrightarrow\ P
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   253
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   254
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   255
To invoke the elimination rule, we apply a new method, \isa{drule}. 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   256
Think of the \isa{d} as standing for \textbf{destruction} (or \textbf{direct}, if
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   257
you prefer).   Applying the 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   258
second conjunction rule using \isa{drule} replaces the assumption 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   259
\isa{P\ \isasymand\ Q} by \isa{Q}. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   260
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   261
\ 1.\ Q\ \isasymLongrightarrow\ Q\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   262
\ 2.\ P\ \isasymand\ Q\ \isasymLongrightarrow\ P
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   263
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   264
The resulting subgoal can be proved by applying \isa{assumption}.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   265
The other subgoal is similarly proved, using the \isa{conjunct1} rule and the 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   266
\isa{assumption} method.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   267
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   268
Choosing among the methods \isa{rule}, \isa{erule} and \isa{drule} is up to 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   269
you.  Isabelle does not attempt to work out whether a rule 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   270
is an introduction rule or an elimination rule.  The 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   271
method determines how the rule will be interpreted. Many rules 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   272
can be used in more than one way.  For example, \isa{disj_swap} can 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   273
be applied to assumptions as well as to goals; it replaces any
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   274
assumption of the form
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   275
$P\disj Q$ by a one of the form $Q\disj P$.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   276
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   277
Destruction rules are simpler in form than indirect rules such as \isa{disjE},
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   278
but they can be inconvenient.  Each of the conjunction rules discards half 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   279
of the formula, when usually we want to take both parts of the conjunction as new
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   280
assumptions.  The easiest way to do so is by using an 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   281
alternative conjunction elimination rule that resembles \isa{disjE}\@.  It is
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   282
seldom, if ever, seen in logic books.  In Isabelle syntax it looks like this: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   283
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   284
\isasymlbrakk?P\ \isasymand\ ?Q;\ \isasymlbrakk?P;\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?R\isasymrbrakk\ \isasymLongrightarrow\ ?R\rulenamedx{conjE}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   285
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   286
\index{destruction rules|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   287
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   288
\begin{exercise}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   289
Use the rule \isa{conjE} to shorten the proof above. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   290
\end{exercise}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   291
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   292
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   293
\section{Implication}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   294
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   295
\index{implication|(}%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   296
At the start of this chapter, we saw the rule \emph{modus ponens}.  It is, in fact,
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   297
a destruction rule. The matching introduction rule looks like this 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   298
in Isabelle: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   299
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   300
(?P\ \isasymLongrightarrow\ ?Q)\ \isasymLongrightarrow\ ?P\
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   301
\isasymlongrightarrow\ ?Q\rulenamedx{impI}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   302
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   303
And this is \emph{modus ponens}\index{modus ponens@\emph{modus ponens}} :
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   304
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   305
\isasymlbrakk?P\ \isasymlongrightarrow\ ?Q;\ ?P\isasymrbrakk\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   306
\isasymLongrightarrow\ ?Q
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   307
\rulenamedx{mp}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   308
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   309
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   310
Here is a proof using the implication rules.  This 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   311
lemma performs a sort of uncurrying, replacing the two antecedents 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   312
of a nested implication by a conjunction.  The proof illustrates
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   313
how assumptions work.  At each proof step, the subgoals inherit the previous
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   314
assumptions, perhaps with additions or deletions.  Rules such as
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   315
\isa{impI} and \isa{disjE} add assumptions, while applying \isa{erule} or
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   316
\isa{drule} deletes the matching assumption.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   317
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   318
\isacommand{lemma}\ imp_uncurry:\
10301
paulson
parents: 10295
diff changeset
   319
"P\ \isasymlongrightarrow\ (Q\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   320
\isasymlongrightarrow\ R)\ \isasymLongrightarrow\ P\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   321
\isasymand\ Q\ \isasymlongrightarrow\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   322
R"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   323
\isacommand{apply}\ (rule\ impI)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   324
\isacommand{apply}\ (erule\ conjE)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   325
\isacommand{apply}\ (drule\ mp)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   326
\ \isacommand{apply}\ assumption\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   327
\isacommand{apply}\ (drule\ mp)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   328
\ \ \isacommand{apply}\ assumption\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   329
\ \isacommand{apply}\ assumption
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   330
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   331
First, we state the lemma and apply implication introduction (\isa{rule impI}), 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   332
which moves the conjunction to the assumptions. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   333
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   334
%P\ \isasymlongrightarrow\ Q\ \isasymlongrightarrow\ R\ \isasymLongrightarrow\ P\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   335
%\isasymand\ Q\ \isasymlongrightarrow\ R\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   336
\ 1.\ \isasymlbrakk P\ \isasymlongrightarrow\ Q\ \isasymlongrightarrow\ R;\ P\ \isasymand\ Q\isasymrbrakk\ \isasymLongrightarrow\ R
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   337
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   338
Next, we apply conjunction elimination (\isa{erule conjE}), which splits this
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   339
conjunction into two  parts. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   340
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   341
\ 1.\ \isasymlbrakk P\ \isasymlongrightarrow\ Q\ \isasymlongrightarrow\ R;\ P;\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   342
Q\isasymrbrakk\ \isasymLongrightarrow\ R
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   343
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   344
Now, we work on the assumption \isa{P\ \isasymlongrightarrow\ (Q\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   345
\isasymlongrightarrow\ R)}, where the parentheses have been inserted for
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   346
clarity.  The nested implication requires two applications of
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   347
\textit{modus ponens}: \isa{drule mp}.  The first use  yields the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   348
implication \isa{Q\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   349
\isasymlongrightarrow\ R}, but first we must prove the extra subgoal 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   350
\isa{P}, which we do by assumption. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   351
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   352
\ 1.\ \isasymlbrakk P;\ Q\isasymrbrakk\ \isasymLongrightarrow\ P\isanewline
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   353
\ 2.\ \isasymlbrakk P;\ Q;\ Q\ \isasymlongrightarrow\ R\isasymrbrakk\ \isasymLongrightarrow\ R
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   354
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   355
Repeating these steps for \isa{Q\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   356
\isasymlongrightarrow\ R} yields the conclusion we seek, namely~\isa{R}.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   357
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   358
\ 1.\ \isasymlbrakk P;\ Q;\ Q\ \isasymlongrightarrow\ R\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   359
\isasymLongrightarrow\ R
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   360
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   361
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   362
The symbols \isa{\isasymLongrightarrow} and \isa{\isasymlongrightarrow}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   363
both stand for implication, but they differ in many respects.  Isabelle
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   364
uses \isa{\isasymLongrightarrow} to express inference rules; the symbol is
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   365
built-in and Isabelle's inference mechanisms treat it specially.  On the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   366
other hand, \isa{\isasymlongrightarrow} is just one of the many connectives
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   367
available in higher-order logic.  We reason about it using inference rules
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   368
such as \isa{impI} and \isa{mp}, just as we reason about the other
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   369
connectives.  You will have to use \isa{\isasymlongrightarrow} in any
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   370
context that requires a formula of higher-order logic.  Use
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   371
\isa{\isasymLongrightarrow} to separate a theorem's preconditions from its
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   372
conclusion.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   373
\index{implication|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   374
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   375
\medskip
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   376
\index{by@\isacommand{by} (command)|(}%
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   377
The \isacommand{by} command is useful for proofs like these that use
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   378
\isa{assumption} heavily.  It executes an
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   379
\isacommand{apply} command, then tries to prove all remaining subgoals using
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   380
\isa{assumption}.  Since (if successful) it ends the proof, it also replaces the 
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   381
\isacommand{done} symbol.  For example, the proof above can be shortened:
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   382
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   383
\isacommand{lemma}\ imp_uncurry:\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   384
"P\ \isasymlongrightarrow\ (Q\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   385
\isasymlongrightarrow\ R)\ \isasymLongrightarrow\ P\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   386
\isasymand\ Q\ \isasymlongrightarrow\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   387
R"\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   388
\isacommand{apply}\ (rule\ impI)\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   389
\isacommand{apply}\ (erule\ conjE)\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   390
\isacommand{apply}\ (drule\ mp)\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   391
\ \isacommand{apply}\ assumption\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   392
\isacommand{by}\ (drule\ mp)
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   393
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   394
We could use \isacommand{by} to replace the final \isacommand{apply} and
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   395
\isacommand{done} in any proof, but typically we use it
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   396
to eliminate calls to \isa{assumption}.  It is also a nice way of expressing a
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   397
one-line proof.%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   398
\index{by@\isacommand{by} (command)|)}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   399
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   400
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   401
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   402
\section{Negation}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   403
 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   404
\index{negation|(}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   405
Negation causes surprising complexity in proofs.  Its natural 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   406
deduction rules are straightforward, but additional rules seem 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   407
necessary in order to handle negated assumptions gracefully.  This section
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   408
also illustrates the \isa{intro} method: a convenient way of
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   409
applying introduction rules.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   410
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   411
Negation introduction deduces $\lnot P$ if assuming $P$ leads to a 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   412
contradiction. Negation elimination deduces any formula in the 
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   413
presence of $\lnot P$ together with~$P$: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   414
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   415
(?P\ \isasymLongrightarrow\ False)\ \isasymLongrightarrow\ \isasymnot\ ?P%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   416
\rulenamedx{notI}\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   417
\isasymlbrakk{\isasymnot}\ ?P;\ ?P\isasymrbrakk\ \isasymLongrightarrow\ ?R%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   418
\rulenamedx{notE}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   419
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   420
%
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   421
Classical logic allows us to assume $\lnot P$ 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   422
when attempting to prove~$P$: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   423
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   424
(\isasymnot\ ?P\ \isasymLongrightarrow\ ?P)\ \isasymLongrightarrow\ ?P%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   425
\rulenamedx{classical}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   426
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   427
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   428
\index{contrapositives|(}%
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   429
The implications $P\imp Q$ and $\lnot Q\imp\lnot P$ are logically
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   430
equivalent, and each is called the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   431
\textbf{contrapositive} of the other.  Four further rules support
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   432
reasoning about contrapositives.  They differ in the placement of the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   433
negation symbols: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   434
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   435
\isasymlbrakk?Q;\ \isasymnot\ ?P\ \isasymLongrightarrow\ \isasymnot\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?P%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   436
\rulename{contrapos_pp}\isanewline
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   437
\isasymlbrakk?Q;\ ?P\ \isasymLongrightarrow\ \isasymnot\ ?Q\isasymrbrakk\ \isasymLongrightarrow\
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   438
\isasymnot\ ?P%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   439
\rulename{contrapos_pn}\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   440
\isasymlbrakk{\isasymnot}\ ?Q;\ \isasymnot\ ?P\ \isasymLongrightarrow\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?P%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   441
\rulename{contrapos_np}\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   442
\isasymlbrakk{\isasymnot}\ ?Q;\ ?P\ \isasymLongrightarrow\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ \isasymnot\ ?P%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   443
\rulename{contrapos_nn}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   444
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   445
%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   446
These rules are typically applied using the \isa{erule} method, where 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   447
their effect is to form a contrapositive from an 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   448
assumption and the goal's conclusion.%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   449
\index{contrapositives|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   450
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   451
The most important of these is \isa{contrapos_np}.  It is useful
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   452
for applying introduction rules to negated assumptions.  For instance, 
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   453
the assumption $\lnot(P\imp Q)$ is equivalent to the conclusion $P\imp Q$ and we 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   454
might want to use conjunction introduction on it. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   455
Before we can do so, we must move that assumption so that it 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   456
becomes the conclusion. The following proof demonstrates this 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   457
technique: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   458
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   459
\isacommand{lemma}\ "\isasymlbrakk{\isasymnot}(P{\isasymlongrightarrow}Q);\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   460
\isasymnot(R{\isasymlongrightarrow}Q)\isasymrbrakk\ \isasymLongrightarrow\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   461
R"\isanewline
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
   462
\isacommand{apply}\ (erule_tac\ Q = "R{\isasymlongrightarrow}Q"\ \isakeyword{in}\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   463
contrapos_np)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   464
\isacommand{apply}\ intro\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   465
\isacommand{by}\ (erule\ notE)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   466
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   467
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   468
There are two negated assumptions and we need to exchange the conclusion with the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   469
second one.  The method \isa{erule contrapos_np} would select the first assumption,
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   470
which we do not want.  So we specify the desired assumption explicitly
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   471
using a new method, \isa{erule_tac}.  This is the resulting subgoal: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   472
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   473
\ 1.\ \isasymlbrakk{\isasymnot}\ (P\ \isasymlongrightarrow\ Q);\ \isasymnot\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   474
R\isasymrbrakk\ \isasymLongrightarrow\ R\ \isasymlongrightarrow\ Q%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   475
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   476
The former conclusion, namely \isa{R}, now appears negated among the assumptions,
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   477
while the negated formula \isa{R\ \isasymlongrightarrow\ Q} becomes the new
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   478
conclusion.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   479
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   480
We can now apply introduction rules.  We use the \methdx{intro} method, which
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   481
repeatedly  applies built-in introduction rules.  Here its effect is equivalent
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   482
to \isa{rule impI}.
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   483
\begin{isabelle}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   484
\ 1.\ \isasymlbrakk{\isasymnot}\ (P\ \isasymlongrightarrow\ Q);\ \isasymnot\ R;\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   485
R\isasymrbrakk\ \isasymLongrightarrow\ Q%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   486
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   487
We can see a contradiction in the form of assumptions \isa{\isasymnot\ R}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   488
and~\isa{R}, which suggests using negation elimination.  If applied on its own,
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   489
\isa{notE} will select the first negated assumption, which is useless.  
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   490
Instead, we invoke the rule using the
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   491
\isa{by} command.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   492
Now when Isabelle selects the first assumption, it tries to prove \isa{P\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   493
\isasymlongrightarrow\ Q} and fails; it then backtracks, finds the 
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
   494
assumption \isa{\isasymnot~R} and finally proves \isa{R} by assumption.  That
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   495
concludes the proof.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   496
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   497
\medskip
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   498
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   499
The following example may be skipped on a first reading.  It involves a
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   500
peculiar but important rule, a form of disjunction introduction:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   501
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   502
(\isasymnot \ ?Q\ \isasymLongrightarrow \ ?P)\ \isasymLongrightarrow \ ?P\ \isasymor \ ?Q%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   503
\rulenamedx{disjCI}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   504
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   505
This rule combines the effects of \isa{disjI1} and \isa{disjI2}.  Its great
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   506
advantage is that we can remove the disjunction symbol without deciding
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   507
which disjunction to prove.  This treatment of disjunction is standard in sequent
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   508
and tableau calculi.
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   509
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   510
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   511
\isacommand{lemma}\ "(P\ \isasymor\ Q)\ \isasymand\ R\
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   512
\isasymLongrightarrow\ P\ \isasymor\ (Q\ \isasymand\ R)"\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   513
\isacommand{apply}\ intro\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   514
\isacommand{apply}\ (elim\ conjE\ disjE)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   515
\ \isacommand{apply}\ assumption
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   516
\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   517
\isacommand{by}\ (erule\ contrapos_np,\ rule\ conjI)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   518
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   519
%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   520
The first proof step applies the \isa{intro} method, which repeatedly  uses
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   521
built-in introduction rules.  Among these are \isa{disjCI}, which creates
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   522
the negative assumption 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   523
\hbox{\isa{\isasymnot(Q\ \isasymand\ R)}}.  
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   524
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   525
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   526
\ 1.\ \isasymlbrakk(P\ \isasymor\ Q)\ \isasymand\ R;\ \isasymnot\ (Q\ \isasymand\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   527
R)\isasymrbrakk\ \isasymLongrightarrow\ P%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   528
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   529
Next we apply the \isa{elim} method, which repeatedly applies 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   530
elimination rules; here, the elimination rules given 
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
   531
in the command.  One of the subgoals is trivial (\isa{\isacommand{apply} assumption}),
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
   532
leaving us with one other:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   533
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   534
\ 1.\ \isasymlbrakk{\isasymnot}\ (Q\ \isasymand\ R);\ R;\ Q\isasymrbrakk\ \isasymLongrightarrow\ P%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   535
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   536
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   537
Now we must move the formula \isa{Q\ \isasymand\ R} to be the conclusion.  The
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   538
combination 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   539
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   540
\ \ \ \ \ (erule\ contrapos_np,\ rule\ conjI)
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   541
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   542
is robust: the \isa{conjI} forces the \isa{erule} to select a
10301
paulson
parents: 10295
diff changeset
   543
conjunction.  The two subgoals are the ones we would expect from applying
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   544
conjunction introduction to
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
   545
\isa{Q~\isasymand~R}:  
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   546
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   547
\ 1.\ \isasymlbrakk R;\ Q;\ \isasymnot\ P\isasymrbrakk\ \isasymLongrightarrow\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   548
Q\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   549
\ 2.\ \isasymlbrakk R;\ Q;\ \isasymnot\ P\isasymrbrakk\ \isasymLongrightarrow\ R%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   550
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   551
They are proved by assumption, which is implicit in the \isacommand{by}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   552
command.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   553
\index{negation|)}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   554
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   555
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   556
\section{Interlude: the Basic Methods for Rules}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   557
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   558
We have seen examples of many tactics that operate on individual rules.  It
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   559
may be helpful to review how they work given an arbitrary rule such as this:
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   560
\[ \infer{Q}{P@1 & \ldots & P@n} \]
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   561
Below, we refer to $P@1$ as the \bfindex{major premise}.  This concept
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   562
applies only to elimination and destruction rules.  These rules act upon an
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   563
instance of their major premise, typically to replace it by subformulas of itself.
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   564
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   565
Suppose that the rule above is called~\isa{R}\@.  Here are the basic rule
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   566
methods, most of which we have already seen:
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   567
\begin{itemize}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   568
\item 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   569
Method \isa{rule\ R} unifies~$Q$ with the current subgoal, replacing it
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   570
by $n$ new subgoals: instances of $P@1$, \ldots,~$P@n$. 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   571
This is backward reasoning and is appropriate for introduction rules.
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   572
\item 
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   573
Method \isa{erule\ R} unifies~$Q$ with the current subgoal and
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   574
simultaneously unifies $P@1$ with some assumption.  The subgoal is 
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   575
replaced by the $n-1$ new subgoals of proving
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   576
instances of $P@2$,
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   577
\ldots,~$P@n$, with the matching assumption deleted.  It is appropriate for
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   578
elimination rules.  The method
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   579
\isa{(rule\ R,\ assumption)} is similar, but it does not delete an
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   580
assumption.
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   581
\item 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   582
Method \isa{drule\ R} unifies $P@1$ with some assumption, which it
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   583
then deletes.  The subgoal is 
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   584
replaced by the $n-1$ new subgoals of proving $P@2$, \ldots,~$P@n$; an
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   585
$n$th subgoal is like the original one but has an additional assumption: an
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   586
instance of~$Q$.  It is appropriate for destruction rules. 
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   587
\item 
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   588
Method \isa{frule\ R} is like \isa{drule\ R} except that the matching
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   589
assumption is not deleted.  (See {\S}\ref{sec:frule} below.)
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   590
\end{itemize}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   591
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   592
Other methods apply a rule while constraining some of its
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   593
variables.  The typical form is
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   594
\begin{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   595
\ \ \ \ \ \methdx{rule_tac}\ $v@1$ = $t@1$ \isakeyword{and} \ldots \isakeyword{and}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   596
$v@k$ =
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   597
$t@k$ \isakeyword{in} R
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   598
\end{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   599
This method behaves like \isa{rule R}, while instantiating the variables
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   600
$v@1$, \ldots,
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   601
$v@k$ as specified.  We similarly have \methdx{erule_tac}, \methdx{drule_tac} and
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   602
\methdx{frule_tac}.  These methods also let us specify which subgoal to
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   603
operate on.  By default it is the first subgoal, as with nearly all
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   604
methods, but we can specify that rule \isa{R} should be applied to subgoal
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   605
number~$i$:
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   606
\begin{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   607
\ \ \ \ \ rule_tac\ [$i$] R
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   608
\end{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   609
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   610
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   611
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   612
\section{Unification and Substitution}\label{sec:unification}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   613
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   614
\index{unification|(}%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   615
As we have seen, Isabelle rules involve schematic variables, which begin with
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   616
a question mark and act as
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   617
placeholders for terms.  \textbf{Unification} refers to  the process of
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   618
making two terms identical, possibly by replacing their schematic variables by
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   619
terms.  The simplest case is when the two terms are already the same. Next
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   620
simplest is \textbf{pattern-matching}, which replaces variables in only one of the
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   621
terms.  The
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   622
\isa{rule} method typically  matches the rule's conclusion
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   623
against the current subgoal.  In the most complex case,  variables in both
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   624
terms are replaced; the \isa{rule} method can do this if the goal
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   625
itself contains schematic variables.  Other occurrences of the variables in
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   626
the rule or proof state are updated at the same time.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   627
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   628
Schematic variables in goals represent unknown terms.  Given a goal such
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   629
as $\exists x.\,P$, they let us proceed with a proof.  They can be 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   630
filled in later, sometimes in stages and often automatically. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   631
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   632
Unification is well known to Prolog programmers. Isabelle uses
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   633
\textbf{higher-order} unification, which works in the
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   634
typed $\lambda$-calculus.  The general case is
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   635
undecidable, but for our purposes, the differences from ordinary
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   636
unification are straightforward.  It handles bound  variables
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   637
correctly, avoiding capture.  The two terms \isa{{\isasymlambda}x.\ ?P} and
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   638
\isa{{\isasymlambda}x.\ t x}  are not unifiable; replacing \isa{?P} by
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   639
\isa{t x} is forbidden because the free occurrence of~\isa{x} would become
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   640
bound.  The two terms
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   641
\isa{{\isasymlambda}x.\ f(x,z)} and \isa{{\isasymlambda}y.\ f(y,z)} are
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   642
trivially unifiable because they differ only by a bound variable renaming.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   643
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   644
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   645
\begin{warn}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   646
Higher-order unification sometimes must invent
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   647
$\lambda$-terms to replace function  variables,
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   648
which can lead to a combinatorial explosion. However,  Isabelle proofs tend
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   649
to involve easy cases where there are few possibilities for the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   650
$\lambda$-term being constructed. In the easiest case, the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   651
function variable is applied only to bound variables, 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   652
as when we try to unify \isa{{\isasymlambda}x\ y.\ f(?h x y)} and
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   653
\isa{{\isasymlambda}x\ y.\ f(x+y+a)}.  The only solution is to replace
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   654
\isa{?h} by \isa{{\isasymlambda}x\ y.\ x+y+a}.  Such cases admit at most
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   655
one unifier, like ordinary unification.  A harder case is
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   656
unifying \isa{?h a} with~\isa{a+b}; it admits two solutions for \isa{?h},
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   657
namely \isa{{\isasymlambda}x.~a+b} and \isa{{\isasymlambda}x.~x+b}. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   658
Unifying \isa{?h a} with~\isa{a+a+b} admits four solutions; their number is
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   659
exponential in the number of occurrences of~\isa{a} in the second term.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   660
\end{warn}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   661
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   662
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   663
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   664
\subsection{Substitution and the {\tt\slshape subst} Method}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   665
\label{sec:subst}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   666
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   667
\index{substitution|(}%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   668
Isabelle also uses function variables to express \textbf{substitution}. 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   669
A typical substitution rule allows us to replace one term by 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   670
another if we know that two terms are equal. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   671
\[ \infer{P[t/x]}{s=t & P[s/x]} \]
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   672
The rule uses a notation for substitution: $P[t/x]$ is the result of
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   673
replacing $x$ by~$t$ in~$P$.  The rule only substitutes in the positions
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   674
designated by~$x$.  For example, it can
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   675
derive symmetry of equality from reflexivity.  Using $x=s$ for~$P$
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   676
replaces just the first $s$ in $s=s$ by~$t$:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   677
\[ \infer{t=s}{s=t & \infer{s=s}{}} \]
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   678
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   679
The Isabelle version of the substitution rule looks like this: 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   680
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   681
\isasymlbrakk?t\ =\ ?s;\ ?P\ ?s\isasymrbrakk\ \isasymLongrightarrow\ ?P\
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   682
?t
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   683
\rulenamedx{ssubst}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   684
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   685
Crucially, \isa{?P} is a function 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   686
variable.  It can be replaced by a $\lambda$-term 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   687
with one bound variable, whose occurrences identify the places 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   688
in which $s$ will be replaced by~$t$.  The proof above requires
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   689
the term \isa{{\isasymlambda}x.~x=s}.
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   690
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   691
The \isa{simp} method replaces equals by equals, but the substitution
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   692
rule gives us more control.  The \methdx{subst} method is the easiest way to
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   693
use the substitution rule.  Suppose a
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   694
proof has reached this point:
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   695
\begin{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   696
\ 1.\ \isasymlbrakk P\ x\ y\ z;\ Suc\ x\ <\ y\isasymrbrakk \ \isasymLongrightarrow \ f\ z\ =\ x\ *\ y%
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   697
\end{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   698
Now we wish to apply a commutative law:
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   699
\begin{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   700
?m\ *\ ?n\ =\ ?n\ *\ ?m%
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   701
\rulename{mult_commute}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   702
\end{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   703
Isabelle rejects our first attempt:
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   704
\begin{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   705
apply (simp add: mult_commute)
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   706
\end{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   707
The simplifier notices the danger of looping and refuses to apply the
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   708
rule.%
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   709
\footnote{More precisely, it only applies such a rule if the new term is
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   710
smaller under a specified ordering; here, \isa{x\ *\ y}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   711
is already smaller than
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   712
\isa{y\ *\ x}.}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   713
%
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   714
The \isa{subst} method applies \isa{mult_commute} exactly once.  
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   715
\begin{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   716
\isacommand{apply}\ (subst\ mult_commute)\isanewline
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   717
\ 1.\ \isasymlbrakk P\ x\ y\ z;\ Suc\ x\ <\ y\isasymrbrakk \
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   718
\isasymLongrightarrow \ f\ z\ =\ y\ *\ x%
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   719
\end{isabelle}
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   720
As we wanted, \isa{x\ *\ y} has become \isa{y\ *\ x}.
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   721
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   722
\medskip
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   723
The \isa{subst} method is convenient, but to see how it works, let us
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   724
examine an explicit use of the rule \isa{ssubst}.
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   725
Consider this proof: 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   726
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   727
\isacommand{lemma}\
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   728
"\isasymlbrakk x\ =\ f\ x;\ odd(f\ x)\isasymrbrakk\ \isasymLongrightarrow\
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   729
odd\ x"\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   730
\isacommand{by}\ (erule\ ssubst)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   731
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   732
%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   733
The simplifier might loop, replacing \isa{x} by \isa{f x} and then by
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   734
\isa{f(f x)} and so forth. (Here \isa{simp} 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   735
can see the danger and would re-orient the equality, but in more complicated
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   736
cases it can be fooled.) When we apply substitution,  Isabelle replaces every
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   737
\isa{x} in the subgoal by \isa{f x} just once: it cannot loop.  The
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   738
resulting subgoal is trivial by assumption, so the \isacommand{by} command
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   739
proves it implicitly. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   740
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   741
We are using the \isa{erule} method it in a novel way. Hitherto, 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   742
the conclusion of the rule was just a variable such as~\isa{?R}, but it may
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   743
be any term. The conclusion is unified with the subgoal just as 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   744
it would be with the \isa{rule} method. At the same time \isa{erule} looks 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   745
for an assumption that matches the rule's first premise, as usual.  With
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   746
\isa{ssubst} the effect is to find, use and delete an equality 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   747
assumption.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   748
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   749
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   750
\subsection{Unification and Its Pitfalls}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   751
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   752
Higher-order unification can be tricky.  Here is an example, which you may
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   753
want to skip on your first reading:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   754
\begin{isabelle}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   755
\isacommand{lemma}\ "\isasymlbrakk x\ =\
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   756
f\ x;\ triple\ (f\ x)\ (f\ x)\ x\isasymrbrakk\
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   757
\isasymLongrightarrow\ triple\ x\ x\ x"\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   758
\isacommand{apply}\ (erule\ ssubst)\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   759
\isacommand{back}\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   760
\isacommand{back}\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   761
\isacommand{back}\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   762
\isacommand{back}\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   763
\isacommand{apply}\ assumption\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   764
\isacommand{done}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   765
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   766
%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   767
By default, Isabelle tries to substitute for all the 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   768
occurrences.  Applying \isa{erule\ ssubst} yields this subgoal:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   769
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   770
\ 1.\ triple\ (f\ x)\ (f\ x)\ x\ \isasymLongrightarrow\ triple\ (f\ x)\ (f\ x)\ (f\ x)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   771
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   772
The substitution should have been done in the first two occurrences 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   773
of~\isa{x} only. Isabelle has gone too far. The \commdx{back}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   774
command allows us to reject this possibility and demand a new one: 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   775
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   776
\ 1.\ triple\ (f\ x)\ (f\ x)\ x\ \isasymLongrightarrow\ triple\ x\ (f\ x)\ (f\ x)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   777
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   778
%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   779
Now Isabelle has left the first occurrence of~\isa{x} alone. That is 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   780
promising but it is not the desired combination. So we use \isacommand{back} 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   781
again:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   782
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   783
\ 1.\ triple\ (f\ x)\ (f\ x)\ x\ \isasymLongrightarrow\ triple\ (f\ x)\ x\ (f\ x)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   784
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   785
%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   786
This also is wrong, so we use \isacommand{back} again: 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   787
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   788
\ 1.\ triple\ (f\ x)\ (f\ x)\ x\ \isasymLongrightarrow\ triple\ x\ x\ (f\ x)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   789
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   790
%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   791
And this one is wrong too. Looking carefully at the series 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   792
of alternatives, we see a binary countdown with reversed bits: 111,
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   793
011, 101, 001.  Invoke \isacommand{back} again: 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   794
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   795
\ 1.\ triple\ (f\ x)\ (f\ x)\ x\ \isasymLongrightarrow\ triple\ (f\ x)\ (f\ x)\ x%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   796
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   797
At last, we have the right combination!  This goal follows by assumption.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   798
\index{unification|)}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   799
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   800
\medskip
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   801
This example shows that unification can do strange things with
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   802
function variables.  We were forced to select the right unifier using the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   803
\isacommand{back} command.  That is all right during exploration, but \isacommand{back}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   804
should never appear in the final version of a proof.  You can eliminate the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   805
need for \isacommand{back} by giving Isabelle less freedom when you apply a rule.
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   806
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   807
One way to constrain the inference is by joining two methods in a 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   808
\isacommand{apply} command. Isabelle  applies the first method and then the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   809
second. If the second method  fails then Isabelle automatically backtracks.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   810
This process continues until  the first method produces an output that the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   811
second method can  use. We get a one-line proof of our example: 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   812
\begin{isabelle}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   813
\isacommand{lemma}\ "\isasymlbrakk x\ =\ f\ x;\ triple\ (f\ x)\ (f\ x)\ x\isasymrbrakk\
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   814
\isasymLongrightarrow\ triple\ x\ x\ x"\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   815
\isacommand{apply}\ (erule\ ssubst,\ assumption)\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   816
\isacommand{done}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   817
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   818
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   819
\noindent
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   820
The \isacommand{by} command works too, since it backtracks when
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   821
proving subgoals by assumption:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   822
\begin{isabelle}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   823
\isacommand{lemma}\ "\isasymlbrakk x\ =\ f\ x;\ triple\ (f\ x)\ (f\ x)\ x\isasymrbrakk\
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   824
\isasymLongrightarrow\ triple\ x\ x\ x"\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   825
\isacommand{by}\ (erule\ ssubst)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   826
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   827
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   828
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   829
The most general way to constrain unification is 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   830
by instantiating variables in the rule.  The method \isa{rule_tac} is
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   831
similar to \isa{rule}, but it
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   832
makes some of the rule's variables  denote specified terms.  
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   833
Also available are {\isa{drule_tac}}  and \isa{erule_tac}.  Here we need
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   834
\isa{erule_tac} since above we used \isa{erule}.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   835
\begin{isabelle}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   836
\isacommand{lemma}\ "\isasymlbrakk x\ =\ f\ x;\ triple\ (f\ x)\ (f\ x)\ x\isasymrbrakk\ \isasymLongrightarrow\ triple\ x\ x\ x"\isanewline
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
   837
\isacommand{by}\ (erule_tac\ P = "\isasymlambda u.\ triple\ u\ u\ x"\ 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   838
\isakeyword{in}\ ssubst)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   839
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   840
%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   841
To specify a desired substitution 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   842
requires instantiating the variable \isa{?P} with a $\lambda$-expression. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   843
The bound variable occurrences in \isa{{\isasymlambda}u.\ P\ u\
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   844
u\ x} indicate that the first two arguments have to be substituted, leaving
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   845
the third unchanged.  With this instantiation, backtracking is neither necessary
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   846
nor possible.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   847
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   848
An alternative to \isa{rule_tac} is to use \isa{rule} with a theorem
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   849
modified using~\isa{of}, described in
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
   850
{\S}\ref{sec:forward} below.   An advantage of \isa{rule_tac} is that the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   851
instantiations may refer to 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   852
\isasymAnd-bound variables in the current subgoal.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   853
\index{substitution|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   854
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   855
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   856
\section{Quantifiers}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   857
11411
c315dda16748 indexing
paulson
parents: 11406
diff changeset
   858
\index{quantifiers!universal|(}%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   859
Quantifiers require formalizing syntactic substitution and the notion of 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   860
arbitrary value.  Consider the universal quantifier.  In a logic
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   861
book, its introduction  rule looks like this: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   862
\[ \infer{\forall x.\,P}{P} \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   863
Typically, a proviso written in English says that $x$ must not
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   864
occur in the assumptions.  This proviso guarantees that $x$ can be regarded as
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   865
arbitrary, since it has not been assumed to satisfy any special conditions. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   866
Isabelle's  underlying formalism, called the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   867
\bfindex{meta-logic}, eliminates the  need for English.  It provides its own
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   868
universal quantifier (\isasymAnd) to express the notion of an arbitrary value.  We
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   869
have already seen  another symbol of the meta-logic, namely
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   870
\isa\isasymLongrightarrow, which expresses  inference rules and the treatment of
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   871
assumptions. The only other  symbol in the meta-logic is \isa\isasymequiv, which
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   872
can be used to define constants.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   873
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   874
\subsection{The Universal Introduction Rule}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   875
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   876
Returning to the universal quantifier, we find that having a similar quantifier
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   877
as part of the meta-logic makes the introduction rule trivial to express:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   878
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   879
(\isasymAnd x.\ ?P\ x)\ \isasymLongrightarrow\ {\isasymforall}x.\ ?P\ x\rulenamedx{allI}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   880
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   881
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   882
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   883
The following trivial proof demonstrates how the universal introduction 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   884
rule works. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   885
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   886
\isacommand{lemma}\ "{\isasymforall}x.\ P\ x\ \isasymlongrightarrow\ P\ x"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   887
\isacommand{apply}\ (rule\ allI)\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   888
\isacommand{by}\ (rule\ impI)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   889
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   890
The first step invokes the rule by applying the method \isa{rule allI}. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   891
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   892
\ 1.\ \isasymAnd x.\ P\ x\ \isasymlongrightarrow\ P\ x
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   893
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   894
Note  that the resulting proof state has a bound variable,
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   895
namely~\isa{x}.  The rule has replaced the universal quantifier of
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   896
higher-order  logic by Isabelle's meta-level quantifier.  Our goal is to
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   897
prove
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   898
\isa{P\ x\ \isasymlongrightarrow\ P\ x} for arbitrary~\isa{x}; it is 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   899
an implication, so we apply the corresponding introduction rule (\isa{impI}). 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   900
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   901
\ 1.\ \isasymAnd x.\ P\ x\ \isasymLongrightarrow\ P\ x
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   902
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   903
This last subgoal is implicitly proved by assumption. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   904
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   905
\subsection{The Universal Elimination Rule}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   906
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   907
Now consider universal elimination. In a logic text, 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   908
the rule looks like this: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   909
\[ \infer{P[t/x]}{\forall x.\,P} \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   910
The conclusion is $P$ with $t$ substituted for the variable~$x$.  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   911
Isabelle expresses substitution using a function variable: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   912
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   913
{\isasymforall}x.\ ?P\ x\ \isasymLongrightarrow\ ?P\ ?x\rulenamedx{spec}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   914
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   915
This destruction rule takes a 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   916
universally quantified formula and removes the quantifier, replacing 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   917
the bound variable \isa{x} by the schematic variable \isa{?x}.  Recall that a
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   918
schematic variable starts with a question mark and acts as a
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   919
placeholder: it can be replaced by any term.  
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   920
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   921
The universal elimination rule is also
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   922
available in the standard elimination format.  Like \isa{conjE}, it never
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   923
appears in logic books:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   924
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   925
\isasymlbrakk \isasymforall x.\ ?P\ x;\ ?P\ ?x\ \isasymLongrightarrow \ ?R\isasymrbrakk \ \isasymLongrightarrow \ ?R%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
   926
\rulenamedx{allE}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   927
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   928
The methods \isa{drule~spec} and \isa{erule~allE} do precisely the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   929
same inference.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   930
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   931
To see how $\forall$-elimination works, let us derive a rule about reducing 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   932
the scope of a universal quantifier.  In mathematical notation we write
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   933
\[ \infer{P\imp\forall x.\,Q}{\forall x.\,P\imp Q} \]
10978
5eebea8f359f *** empty log message ***
nipkow
parents: 10971
diff changeset
   934
with the proviso ``$x$ not free in~$P$.''  Isabelle's treatment of
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   935
substitution makes the proviso unnecessary.  The conclusion is expressed as
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   936
\isa{P\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   937
\isasymlongrightarrow\ ({\isasymforall}x.\ Q\ x)}. No substitution for the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   938
variable \isa{P} can introduce a dependence upon~\isa{x}: that would be a
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   939
bound variable capture.  Let us walk through the proof.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   940
\begin{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   941
\isacommand{lemma}\ "(\isasymforall x.\ P\ \isasymlongrightarrow \ Q\ x)\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   942
\isasymLongrightarrow \ P\ \isasymlongrightarrow \ (\isasymforall x.\ Q\
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   943
x)"
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   944
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   945
First we apply implies introduction (\isa{impI}), 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   946
which moves the \isa{P} from the conclusion to the assumptions. Then 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   947
we apply universal introduction (\isa{allI}).  
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   948
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   949
\isacommand{apply}\ (rule\ impI,\ rule\ allI)\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   950
\ 1.\ \isasymAnd x.\ \isasymlbrakk{\isasymforall}x.\ P\ \isasymlongrightarrow\ Q\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
   951
x;\ P\isasymrbrakk\ \isasymLongrightarrow\ Q\ x
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   952
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   953
As before, it replaces the HOL 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   954
quantifier by a meta-level quantifier, producing a subgoal that 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   955
binds the variable~\isa{x}.  The leading bound variables
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   956
(here \isa{x}) and the assumptions (here \isa{{\isasymforall}x.\ P\
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   957
\isasymlongrightarrow\ Q\ x} and \isa{P}) form the \textbf{context} for the
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   958
conclusion, here \isa{Q\ x}.  Subgoals inherit the context,
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   959
although assumptions can be added or deleted (as we saw
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   960
earlier), while rules such as \isa{allI} add bound variables.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   961
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   962
Now, to reason from the universally quantified 
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
   963
assumption, we apply the elimination rule using the \isa{drule} 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   964
method.  This rule is called \isa{spec} because it specializes a universal formula
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   965
to a particular term.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   966
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   967
\isacommand{apply}\ (drule\ spec)\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   968
\ 1.\ \isasymAnd x.\ \isasymlbrakk P;\ P\ \isasymlongrightarrow\ Q\ (?x2\
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   969
x)\isasymrbrakk\ \isasymLongrightarrow\ Q\ x
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   970
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   971
Observe how the context has changed.  The quantified formula is gone,
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   972
replaced by a new assumption derived from its body.  We have
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   973
removed the quantifier and replaced the bound variable
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   974
by the curious term 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   975
\isa{?x2~x}.  This term is a placeholder: it may become any term that can be
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   976
built from~\isa{x}.  (Formally, \isa{?x2} is an unknown of function type, applied
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   977
to the argument~\isa{x}.)  This new assumption is an implication, so we can  use
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
   978
\emph{modus ponens} on it, which concludes the proof. 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   979
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   980
\isacommand{by}\ (drule\ mp)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   981
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   982
Let us take a closer look at this last step.  \emph{Modus ponens} yields
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   983
two subgoals: one where we prove the antecedent (in this case \isa{P}) and
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   984
one where we may assume the consequent.  Both of these subgoals are proved
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   985
by the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   986
\isa{assumption} method, which is implicit in the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   987
\isacommand{by} command.  Replacing the \isacommand{by} command by 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   988
\isa{\isacommand{apply} (drule\ mp, assumption)} would have left one last
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   989
subgoal:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   990
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
   991
\ 1.\ \isasymAnd x.\ \isasymlbrakk P;\ Q\ (?x2\ x)\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   992
\isasymLongrightarrow\ Q\ x
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   993
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   994
The consequent is \isa{Q} applied to that placeholder.  It may be replaced by any
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   995
term built from~\isa{x}, and here 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   996
it should simply be~\isa{x}.  The assumption need not
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   997
be identical to the conclusion, provided the two formulas are unifiable.%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
   998
\index{quantifiers!universal|)}  
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
   999
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1000
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1001
\subsection{The Existential Quantifier}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1002
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1003
\index{quantifiers!existential|(}%
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1004
The concepts just presented also apply
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1005
to the existential quantifier, whose introduction rule looks like this in
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1006
Isabelle: 
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1007
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1008
?P\ ?x\ \isasymLongrightarrow\ {\isasymexists}x.\ ?P\ x\rulenamedx{exI}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1009
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1010
If we can exhibit some $x$ such that $P(x)$ is true, then $\exists x.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1011
P(x)$ is also true.  It is a dual of the universal elimination rule, and
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1012
logic texts present it using the same notation for substitution.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1013
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1014
The existential
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1015
elimination rule looks like this
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1016
in a logic text: 
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1017
\[ \infer{Q}{\exists x.\,P & \infer*{Q}{[P]}} \]
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1018
%
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1019
It looks like this in Isabelle: 
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1020
\begin{isabelle}
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1021
\isasymlbrakk{\isasymexists}x.\ ?P\ x;\ \isasymAnd x.\ ?P\ x\ \isasymLongrightarrow\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?Q\rulenamedx{exE}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1022
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1023
%
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1024
Given an existentially quantified theorem and some
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1025
formula $Q$ to prove, it creates a new assumption by removing the quantifier.  As with
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1026
the universal introduction  rule, the textbook version imposes a proviso on the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1027
quantified variable, which Isabelle expresses using its meta-logic.  It is
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1028
enough to have a universal quantifier in the meta-logic; we do not need an existential
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1029
quantifier to be built in as well.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1030
 
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1031
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1032
\begin{exercise}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1033
Prove the lemma
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1034
\[ \exists x.\, P\conj Q(x)\Imp P\conj(\exists x.\, Q(x)). \]
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1035
\emph{Hint}: the proof is similar 
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1036
to the one just above for the universal quantifier. 
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1037
\end{exercise}
11411
c315dda16748 indexing
paulson
parents: 11406
diff changeset
  1038
\index{quantifiers!existential|)}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1039
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1040
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1041
\subsection{Renaming an Assumption: {\tt\slshape rename_tac}}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1042
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1043
\index{assumptions!renaming|(}\index{*rename_tac (method)|(}%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1044
When you apply a rule such as \isa{allI}, the quantified variable
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1045
becomes a new bound variable of the new subgoal.  Isabelle tries to avoid
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1046
changing its name, but sometimes it has to choose a new name in order to
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1047
avoid a clash.  The result may not be ideal:
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1048
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1049
\isacommand{lemma}\ "x\ <\ y\ \isasymLongrightarrow \ \isasymforall x\ y.\ P\ x\
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1050
(f\ y)"\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1051
\isacommand{apply}\ intro\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1052
\ 1.\ \isasymAnd xa\ ya.\ x\ <\ y\ \isasymLongrightarrow \ P\ xa\ (f\ ya)
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1053
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1054
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1055
The names \isa{x} and \isa{y} were already in use, so the new bound variables are
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1056
called \isa{xa} and~\isa{ya}.  You can rename them by invoking \isa{rename_tac}:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1057
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1058
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1059
\isacommand{apply}\ (rename_tac\ v\ w)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1060
\ 1.\ \isasymAnd v\ w.\ x\ <\ y\ \isasymLongrightarrow \ P\ v\ (f\ w)
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1061
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1062
Recall that \isa{rule_tac}\index{*rule_tac (method)!and renaming} 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1063
instantiates a
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1064
theorem with specified terms.  These terms may involve the goal's bound
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1065
variables, but beware of referring to  variables
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1066
like~\isa{xa}.  A future change to your theories could change the set of names
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1067
produced at top level, so that \isa{xa} changes to~\isa{xb} or reverts to~\isa{x}.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1068
It is safer to rename automatically-generated variables before mentioning them.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1069
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1070
If the subgoal has more bound variables than there are names given to
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1071
\isa{rename_tac}, the rightmost ones are renamed.%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1072
\index{assumptions!renaming|)}\index{*rename_tac (method)|)}
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1073
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1074
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  1075
\subsection{Reusing an Assumption: {\tt\slshape frule}}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1076
\label{sec:frule}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1077
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1078
\index{assumptions!reusing|(}\index{*frule (method)|(}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1079
Note that \isa{drule spec} removes the universal quantifier and --- as
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1080
usual with elimination rules --- discards the original formula.  Sometimes, a
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1081
universal formula has to be kept so that it can be used again.  Then we use a new
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1082
method: \isa{frule}.  It acts like \isa{drule} but copies rather than replaces
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1083
the selected assumption.  The \isa{f} is for \emph{forward}.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1084
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1085
In this example, going from \isa{P\ a} to \isa{P(h(h~a))}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1086
requires two uses of the quantified assumption, one for each~\isa{h}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1087
in~\isa{h(h~a)}.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1088
\begin{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1089
\isacommand{lemma}\ "\isasymlbrakk{\isasymforall}x.\ P\ x\ \isasymlongrightarrow\ P\ (h\ x);
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1090
\ P\ a\isasymrbrakk\ \isasymLongrightarrow\ P(h\ (h\ a))"
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1091
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1092
%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1093
Examine the subgoal left by \isa{frule}:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1094
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1095
\isacommand{apply}\ (frule\ spec)\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1096
\ 1.\ \isasymlbrakk{\isasymforall}x.\ P\ x\ \isasymlongrightarrow\ P\ (h\ x);\ P\ a;\ P\ ?x\ \isasymlongrightarrow\ P\ (h\ ?x)\isasymrbrakk\ \isasymLongrightarrow\ P\ (h\ (h\ a))
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1097
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1098
It is what \isa{drule} would have left except that the quantified
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1099
assumption is still present.  Next we apply \isa{mp} to the
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1100
implication and the assumption~\isa{P\ a}:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1101
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1102
\isacommand{apply}\ (drule\ mp,\ assumption)\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1103
\ 1.\ \isasymlbrakk{\isasymforall}x.\ P\ x\ \isasymlongrightarrow\ P\ (h\ x);\ P\ a;\ P\ (h\ a)\isasymrbrakk\ \isasymLongrightarrow\ P\ (h\ (h\ a))
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1104
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1105
%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1106
We have created the assumption \isa{P(h\ a)}, which is progress.  To
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1107
continue the proof, we apply \isa{spec} again.  We shall not need it
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1108
again, so we can use
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1109
\isa{drule}.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1110
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1111
\isacommand{apply}\ (drule\ spec)\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1112
\ 1.\ \isasymlbrakk P\ a;\ P\ (h\ a);\ P\ ?x2\ 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1113
\isasymlongrightarrow \ P\ (h\ ?x2)\isasymrbrakk \ \isasymLongrightarrow \
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1114
P\ (h\ (h\ a))
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1115
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1116
%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1117
The new assumption bridges the gap between \isa{P(h\ a)} and \isa{P(h(h\ a))}.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1118
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1119
\isacommand{by}\ (drule\ mp)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1120
\end{isabelle}
10854
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1121
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1122
\medskip
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1123
\emph{A final remark}.  Replacing this \isacommand{by} command with
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1124
\begin{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1125
\isacommand{apply}\ (drule\ mp,\ assumption)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1126
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1127
would not work: it would add a second copy of \isa{P(h~a)} instead
10854
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1128
of the desired assumption, \isa{P(h(h~a))}.  The \isacommand{by}
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1129
command forces Isabelle to backtrack until it finds the correct one.
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1130
Alternatively, we could have used the \isacommand{apply} command and bundled the
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1131
\isa{drule mp} with \emph{two} calls of \isa{assumption}.  Or, of course,
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1132
we could have given the entire proof to \isa{auto}.%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1133
\index{assumptions!reusing|)}\index{*frule (method)|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1134
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1135
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1136
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1137
\subsection{Instantiating a Quantifier Explicitly}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1138
\index{quantifiers!instantiating}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1139
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1140
We can prove a theorem of the form $\exists x.\,P\, x$ by exhibiting a
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1141
suitable term~$t$ such that $P\,t$ is true.  Dually, we can use an
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1142
assumption of the form $\forall x.\,P\, x$ to generate a new assumption $P\,t$ for
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1143
a suitable term~$t$.  In many cases, 
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1144
Isabelle makes the correct choice automatically, constructing the term by
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1145
unification.  In other cases, the required term is not obvious and we must
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1146
specify it ourselves.  Suitable methods are \isa{rule_tac}, \isa{drule_tac}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1147
and \isa{erule_tac}.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1148
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
  1149
We have seen (just above, {\S}\ref{sec:frule}) a proof of this lemma:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1150
\begin{isabelle}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1151
\isacommand{lemma}\ "\isasymlbrakk \isasymforall x.\ P\ x\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1152
\isasymlongrightarrow \ P\ (h\ x);\ P\ a\isasymrbrakk \
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1153
\isasymLongrightarrow \ P(h\ (h\ a))"
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1154
\end{isabelle}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1155
We had reached this subgoal:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1156
\begin{isabelle}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1157
\ 1.\ \isasymlbrakk{\isasymforall}x.\ P\ x\ \isasymlongrightarrow\ P\ (h\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1158
x);\ P\ a;\ P\ (h\ a)\isasymrbrakk\ \isasymLongrightarrow\ P\ (h\ (h\ a))
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1159
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1160
%
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1161
The proof requires instantiating the quantified assumption with the
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1162
term~\isa{h~a}.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1163
\begin{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1164
\isacommand{apply}\ (drule_tac\ x\ =\ "h\ a"\ \isakeyword{in}\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1165
spec)\isanewline
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1166
\ 1.\ \isasymlbrakk P\ a;\ P\ (h\ a);\ P\ (h\ a)\ \isasymlongrightarrow \
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1167
P\ (h\ (h\ a))\isasymrbrakk \ \isasymLongrightarrow \ P\ (h\ (h\ a))
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1168
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1169
We have forced the desired instantiation.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1170
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1171
\medskip
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1172
Existential formulas can be instantiated too.  The next example uses the 
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1173
\textbf{divides} relation\index{divides relation}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1174
of number theory: 
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1175
\begin{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1176
?m\ dvd\ ?n\ \isasymequiv\ {\isasymexists}k.\ ?n\ =\ ?m\ *\ k
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1177
\rulename{dvd_def}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1178
\end{isabelle}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1179
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1180
Let us prove that multiplication of natural numbers is monotone with
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1181
respect to the divides relation:
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1182
\begin{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1183
\isacommand{lemma}\ mult_dvd_mono:\ "{\isasymlbrakk}i\ dvd\ m;\ j\ dvd\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1184
n\isasymrbrakk\ \isasymLongrightarrow\ i*j\ dvd\ (m*n\ ::\ nat)"\isanewline
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1185
\isacommand{apply}\ (simp\ add:\ dvd_def)
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1186
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1187
%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1188
Unfolding the definition of divides has left this subgoal:
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1189
\begin{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1190
\ 1.\ \isasymlbrakk \isasymexists k.\ m\ =\ i\ *\ k;\ \isasymexists k.\ n\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1191
=\ j\ *\ k\isasymrbrakk \ \isasymLongrightarrow \ \isasymexists k.\ m\ *\
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1192
n\ =\ i\ *\ j\ *\ k
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1193
\end{isabelle}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1194
%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1195
Next, we eliminate the two existential quantifiers in the assumptions:
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1196
\begin{isabelle}
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1197
\isacommand{apply}\ (erule\ exE)\isanewline
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1198
\ 1.\ \isasymAnd k.\ \isasymlbrakk \isasymexists k.\ n\ =\ j\ *\ k;\ m\ =\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1199
i\ *\ k\isasymrbrakk \ \isasymLongrightarrow \ \isasymexists k.\ m\ *\ n\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1200
=\ i\ *\ j\ *\ k%
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1201
\isanewline
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1202
\isacommand{apply}\ (erule\ exE)
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1203
\isanewline
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1204
\ 1.\ \isasymAnd k\ ka.\ \isasymlbrakk m\ =\ i\ *\ k;\ n\ =\ j\ *\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1205
ka\isasymrbrakk \ \isasymLongrightarrow \ \isasymexists k.\ m\ *\ n\ =\ i\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1206
*\ j\ *\ k
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1207
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1208
%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1209
The term needed to instantiate the remaining quantifier is~\isa{k*ka}.  But
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1210
\isa{ka} is an automatically-generated name.  As noted above, references to
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1211
such variable names makes a proof less resilient to future changes.  So,
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1212
first we rename the most recent variable to~\isa{l}:
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1213
\begin{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1214
\isacommand{apply}\ (rename_tac\ l)\isanewline
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1215
\ 1.\ \isasymAnd k\ l.\ \isasymlbrakk m\ =\ i\ *\ k;\ n\ =\ j\ *\ l\isasymrbrakk \
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1216
\isasymLongrightarrow \ \isasymexists k.\ m\ *\ n\ =\ i\ *\ j\ *\ k%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1217
\end{isabelle}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1218
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1219
We instantiate the quantifier with~\isa{k*l}:
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1220
\begin{isabelle}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1221
\isacommand{apply}\ (rule_tac\ x="k*l"\ \isakeyword{in}\ exI)\ \isanewline
11234
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1222
\ 1.\ \isasymAnd k\ ka.\ \isasymlbrakk m\ =\ i\ *\ k;\ n\ =\ j\ *\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1223
ka\isasymrbrakk \ \isasymLongrightarrow \ m\ *\ n\ =\ i\
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1224
*\ j\ *\ (k\ *\ ka)
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1225
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1226
%
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1227
The rest is automatic, by arithmetic.
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1228
\begin{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1229
\isacommand{apply}\ simp\isanewline
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1230
\isacommand{done}\isanewline
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1231
\end{isabelle}
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1232
6902638af59e quantifier instantiation
paulson
parents: 11179
diff changeset
  1233
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1234
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1235
\section{Description Operators}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1236
\label{sec:SOME}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1237
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1238
\index{description operators|(}%
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1239
HOL provides two description operators.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1240
A \textbf{definite description} formalizes the word ``the,'' as in
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1241
``the greatest divisior of~$n$.''
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1242
It returns an arbitrary value unless the formula has a unique solution.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1243
An \textbf{indefinite description} formalizes the word ``some,'' as in
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1244
``some member of~$S$.''  It differs from a definition description in not
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1245
requiring the solution to be unique: it uses the axiom of choice to pick any
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1246
solution. 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1247
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1248
\begin{warn}
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1249
Description operators can be hard to reason about.  Novices
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1250
should try to avoid them.  Fortunately, descriptions are seldom required.
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1251
\end{warn}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1252
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1253
\subsection{Definite Descriptions}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1254
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1255
\index{descriptions!definite}%
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1256
A definite description is traditionally written $\iota x.  P(x)$.  It denotes
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1257
the $x$ such that $P(x)$ is true, provided there exists a unique such~$x$;
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1258
otherwise, it returns an arbitrary value of the expected type.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1259
Isabelle uses \sdx{THE} for the Greek letter~$\iota$.  (The
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1260
traditional notation could be provided, but it is not legible on screen.)
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1261
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1262
We reason using this rule, where \isa{a} is the unique solution:
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1263
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1264
\isasymlbrakk P\ a;\ \isasymAnd x.\ P\ x\ \isasymLongrightarrow \ x\ =\ a\isasymrbrakk \ 
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1265
\isasymLongrightarrow \ (THE\ x.\ P\ x)\ =\ a%
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1266
\rulenamedx{the_equality}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1267
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1268
For instance, we can define the
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1269
cardinality of a finite set~$A$ to be that
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1270
$n$ such that $A$ is in one-to-one correspondence with $\{1,\ldots,n\}$.  We can then
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1271
prove that the cardinality of the empty set is zero (since $n=0$ satisfies the
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1272
description) and proceed to prove other facts.
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1273
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1274
A more challenging example illustrates how Isabelle/HOL defines the least number
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1275
operator, which denotes the least \isa{x} satisfying~\isa{P}:%
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
  1276
\index{least number operator|see{\protect\isa{LEAST}}}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1277
\begin{isabelle}
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1278
(LEAST\ x.\ P\ x)\ = (THE\ x.\ P\ x\ \isasymand \ (\isasymforall y.\
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1279
P\ y\ \isasymlongrightarrow \ x\ \isasymle \ y))
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1280
\end{isabelle}
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1281
%
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1282
Let us prove the analogue of \isa{the_equality} for \sdx{LEAST}\@.
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1283
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1284
\isacommand{theorem}\ Least_equality:\isanewline
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1285
\ \ \ \ \ "\isasymlbrakk P\ (k::nat);\ \ \isasymforall x.\ P\ x\ \isasymlongrightarrow \ k\ \isasymle \ x\isasymrbrakk \ \isasymLongrightarrow \ (LEAST\ x.\ P\ x)\ =\ k"\isanewline
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1286
\isacommand{apply}\ (simp\ add:\ Least_def)\isanewline
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1287
\isanewline
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1288
\ 1.\ \isasymlbrakk P\ k;\ \isasymforall x.\ P\ x\ \isasymlongrightarrow \ k\ \isasymle \ x\isasymrbrakk \isanewline
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1289
\isaindent{\ 1.\ }\isasymLongrightarrow \ (THE\ x.\ P\ x\ \isasymand \ (\isasymforall y.\ P\ y\ \isasymlongrightarrow \ x\ \isasymle \ y))\ =\ k%
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1290
\end{isabelle}
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1291
The first step has merely unfolded the definition.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1292
\begin{isabelle}
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1293
\isacommand{apply}\ (rule\ the_equality)\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1294
\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1295
\ 1.\ \isasymlbrakk P\ k;\ \isasymforall x.\ P\ x\ \isasymlongrightarrow \ k\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1296
\isasymle \ x\isasymrbrakk \ \isasymLongrightarrow \ P\ k\ \isasymand \
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1297
(\isasymforall y.\ P\ y\ \isasymlongrightarrow \ k\ \isasymle \ y)\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1298
\ 2.\ \isasymAnd x.\ \isasymlbrakk P\ k;\ \isasymforall x.\ P\ x\ \isasymlongrightarrow \ k\ \isasymle \ x;\ P\ x\ \isasymand \ (\isasymforall y.\ P\ y\ \isasymlongrightarrow \ x\ \isasymle \ y)\isasymrbrakk \isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1299
\ \ \ \ \ \ \ \ \isasymLongrightarrow \ x\ =\ k%
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1300
\end{isabelle}
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1301
As always with \isa{the_equality}, we must show existence and
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1302
uniqueness of the claimed solution,~\isa{k}.  Existence, the first
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1303
subgoal, is trivial.  Uniqueness, the second subgoal, follows by antisymmetry:
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1304
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1305
\isasymlbrakk x\ \isasymle \ y;\ y\ \isasymle \ x\isasymrbrakk \ \isasymLongrightarrow \ x\ =\ y%
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1306
\rulename{order_antisym}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1307
\end{isabelle}
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1308
The assumptions imply both \isa{k~\isasymle~x} and \isa{x~\isasymle~k}.  One
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1309
call to \isa{auto} does it all: 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1310
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1311
\isacommand{by}\ (auto\ intro:\ order_antisym)
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1312
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1313
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1314
\REMARK{refer to \isa{Main_wo_AC} if we introduce it}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1315
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1316
\subsection{Indefinite Descriptions}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1317
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1318
\index{Hilbert's $\varepsilon$-operator}%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1319
\index{descriptions!indefinite}%
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1320
An indefinite description is traditionally written $\varepsilon x. P(x)$ and is
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1321
known as Hilbert's $\varepsilon$-operator.  It denotes
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1322
some $x$ such that $P(x)$ is true, provided one exists.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1323
Isabelle uses \sdx{SOME} for the Greek letter~$\varepsilon$.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1324
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1325
Here is the definition of~\cdx{inv}, which expresses inverses of
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1326
functions:
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1327
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1328
inv\ f\ \isasymequiv \ \isasymlambda y.\ SOME\ x.\ f\ x\ =\ y%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1329
\rulename{inv_def}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1330
\end{isabelle}
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1331
Using \isa{SOME} rather than \isa{THE} makes \isa{inv~f} behave well
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1332
even if \isa{f} is not injective.  As it happens, most useful theorems about
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1333
\isa{inv} do assume the function to be injective.
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1334
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1335
The inverse of \isa{f}, when applied to \isa{y}, returns some~\isa{x} such that
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1336
\isa{f~x~=~y}.  For example, we can prove \isa{inv~Suc} really is the inverse
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1337
of the \isa{Suc} function 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1338
\begin{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1339
\isacommand{lemma}\ "inv\ Suc\ (Suc\ n)\ =\ n"\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1340
\isacommand{by}\ (simp\ add:\ inv_def)
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1341
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1342
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1343
\noindent
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1344
The proof is a one-liner: the subgoal simplifies to a degenerate application of
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1345
\isa{SOME}, which is then erased.  In detail, the left-hand side simplifies
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1346
to \isa{SOME\ x.\ Suc\ x\ =\ Suc\ n}, then to \isa{SOME\ x.\ x\ =\ n} and
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1347
finally to~\isa{n}.  
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1348
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1349
We know nothing about what
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1350
\isa{inv~Suc} returns when applied to zero.  The proof above still treats
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1351
\isa{SOME} as a definite description, since it only reasons about
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1352
situations in which the value is described uniquely.  Indeed, \isa{SOME}
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1353
satisfies this rule:
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1354
\begin{isabelle}
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1355
\isasymlbrakk P\ a;\ \isasymAnd x.\ P\ x\ \isasymLongrightarrow \ x\ =\ a\isasymrbrakk \ 
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1356
\isasymLongrightarrow \ (SOME\ x.\ P\ x)\ =\ a%
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1357
\rulenamedx{some_equality}
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1358
\end{isabelle}
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1359
To go further is
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1360
tricky and requires rules such as these:
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1361
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1362
P\ x\ \isasymLongrightarrow \ P\ (SOME\ x.\ P\ x)
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1363
\rulenamedx{someI}\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1364
\isasymlbrakk P\ a;\ \isasymAnd x.\ P\ x\ \isasymLongrightarrow \ Q\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1365
x\isasymrbrakk \ \isasymLongrightarrow \ Q\ (SOME\ x.\ P\ x)
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1366
\rulenamedx{someI2}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1367
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1368
Rule \isa{someI} is basic: if anything satisfies \isa{P} then so does
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1369
\hbox{\isa{SOME\ x.\ P\ x}}.  The repetition of~\isa{P} in the conclusion makes it
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1370
difficult to apply in a backward proof, so the derived rule \isa{someI2} is
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1371
also provided. 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1372
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1373
\medskip
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1374
For example, let us prove the \rmindex{axiom of choice}:
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1375
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1376
\isacommand{theorem}\ axiom_of_choice:
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1377
\ "(\isasymforall x.\ \isasymexists y.\ P\ x\ y)\ \isasymLongrightarrow \
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1378
\isasymexists f.\ \isasymforall x.\ P\ x\ (f\ x)"\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1379
\isacommand{apply}\ (rule\ exI,\ rule\ allI)\isanewline
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1380
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1381
\ 1.\ \isasymAnd x.\ \isasymforall x.\ \isasymexists y.\ P\ x\ y\
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1382
\isasymLongrightarrow \ P\ x\ (?f\ x)
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1383
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1384
%
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1385
We have applied the introduction rules; now it is time to apply the elimination
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1386
rules.
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1387
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1388
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1389
\isacommand{apply}\ (drule\ spec,\ erule\ exE)\isanewline
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1390
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1391
\ 1.\ \isasymAnd x\ y.\ P\ (?x2\ x)\ y\ \isasymLongrightarrow \ P\ x\ (?f\ x)
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1392
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1393
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1394
\noindent
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1395
The rule \isa{someI} automatically instantiates
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1396
\isa{f} to \hbox{\isa{\isasymlambda x.\ SOME y.\ P\ x\ y}}, which is the choice
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1397
function.  It also instantiates \isa{?x2\ x} to \isa{x}.
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1398
\begin{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1399
\isacommand{by}\ (rule\ someI)\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1400
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1401
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1402
\subsubsection{Historical Note}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1403
The original purpose of Hilbert's $\varepsilon$-operator was to express an
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1404
existential destruction rule:
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1405
\[ \infer{P[(\varepsilon x. P) / \, x]}{\exists x.\,P} \]
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1406
This rule is seldom used for that purpose --- it can cause exponential
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1407
blow-up --- but it is occasionally used as an introduction rule
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1408
for~$\varepsilon$-operator.  Its name in HOL is \tdxbold{someI_ex}.%%
11458
09a6c44a48ea numerous stylistic changes and indexing
paulson
parents: 11428
diff changeset
  1409
\index{description operators|)}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1410
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1411
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1412
\section{Some Proofs That Fail}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1413
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1414
\index{proofs!examples of failing|(}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1415
Most of the examples in this tutorial involve proving theorems.  But not every 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1416
conjecture is true, and it can be instructive to see how  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1417
proofs fail. Here we attempt to prove a distributive law involving 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1418
the existential quantifier and conjunction. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1419
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1420
\isacommand{lemma}\ "({\isasymexists}x.\ P\ x)\ \isasymand\ 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1421
({\isasymexists}x.\ Q\ x)\ \isasymLongrightarrow\ {\isasymexists}x.\ P\ x\
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1422
\isasymand\ Q\ x"
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1423
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1424
The first steps are  routine.  We apply conjunction elimination to break
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1425
the assumption into two existentially quantified assumptions. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1426
Applying existential elimination removes one of the quantifiers. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1427
\begin{isabelle}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1428
\isacommand{apply}\ (erule\ conjE)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1429
\isacommand{apply}\ (erule\ exE)\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1430
\ 1.\ \isasymAnd x.\ \isasymlbrakk{\isasymexists}x.\ Q\ x;\ P\ x\isasymrbrakk\ \isasymLongrightarrow\ {\isasymexists}x.\ P\ x\ \isasymand\ Q\ x
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1431
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1432
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1433
When we remove the other quantifier, we get a different bound 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1434
variable in the subgoal.  (The name \isa{xa} is generated automatically.)
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1435
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1436
\isacommand{apply}\ (erule\ exE)\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1437
\ 1.\ \isasymAnd x\ xa.\ \isasymlbrakk P\ x;\ Q\ xa\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1438
\isasymLongrightarrow\ {\isasymexists}x.\ P\ x\ \isasymand\ Q\ x
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1439
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1440
The proviso of the existential elimination rule has forced the variables to
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1441
differ: we can hardly expect two arbitrary values to be equal!  There is
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1442
no way to prove this subgoal.  Removing the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1443
conclusion's existential quantifier yields two
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1444
identical placeholders, which can become  any term involving the variables \isa{x}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1445
and~\isa{xa}.  We need one to become \isa{x}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1446
and the other to become~\isa{xa}, but Isabelle requires all instances of a
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1447
placeholder to be identical. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1448
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1449
\isacommand{apply}\ (rule\ exI)\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1450
\isacommand{apply}\ (rule\ conjI)\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1451
\ 1.\ \isasymAnd x\ xa.\ \isasymlbrakk P\ x;\ Q\ xa\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1452
\isasymLongrightarrow\ P\ (?x3\ x\ xa)\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1453
\ 2.\ \isasymAnd x\ xa.\ \isasymlbrakk P\ x;\ Q\ xa\isasymrbrakk\ \isasymLongrightarrow\ Q\ (?x3\ x\ xa)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1454
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1455
We can prove either subgoal 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1456
using the \isa{assumption} method.  If we prove the first one, the placeholder
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1457
changes into~\isa{x}. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1458
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1459
\ \isacommand{apply}\ assumption\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1460
\ 1.\ \isasymAnd x\ xa.\ \isasymlbrakk P\ x;\ Q\ xa\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1461
\isasymLongrightarrow\ Q\ x
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1462
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1463
We are left with a subgoal that cannot be proved.  Applying the \isa{assumption}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1464
method results in an error message:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1465
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1466
*** empty result sequence -- proof command failed
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1467
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1468
When interacting with Isabelle via the shell interface,
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1469
you can abandon a proof using the \isacommand{oops} command.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1470
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1471
\medskip 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1472
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1473
Here is another abortive proof, illustrating the interaction between 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1474
bound variables and unknowns.  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1475
If $R$ is a reflexive relation, 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1476
is there an $x$ such that $R\,x\,y$ holds for all $y$?  Let us see what happens when
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1477
we attempt to prove it. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1478
\begin{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1479
\isacommand{lemma}\ "\isasymforall y.\ R\ y\ y\ \isasymLongrightarrow 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1480
\ \isasymexists x.\ \isasymforall y.\ R\ x\ y"
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1481
\end{isabelle}
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1482
First,  we remove the existential quantifier. The new proof state has  an
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1483
unknown, namely~\isa{?x}. 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1484
\begin{isabelle}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1485
\isacommand{apply}\ (rule\ exI)\isanewline
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1486
\ 1.\ \isasymforall y.\ R\ y\ y\ \isasymLongrightarrow \ \isasymforall y.\ R\ ?x\ y%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1487
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1488
It looks like we can just apply \isa{assumption}, but it fails.  Isabelle
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1489
refuses to substitute \isa{y}, a bound variable, for~\isa{?x}; that would be
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1490
a bound variable capture.  We can still try to finish the proof in some
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1491
other way. We remove the universal quantifier  from the conclusion, moving
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1492
the bound variable~\isa{y} into the subgoal.  But note that it is still
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1493
bound!
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1494
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1495
\isacommand{apply}\ (rule\ allI)\isanewline
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1496
\ 1.\ \isasymAnd y.\ \isasymforall y.\ R\ y\ y\ \isasymLongrightarrow \ R\ ?x\ y%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1497
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1498
Finally, we try to apply our reflexivity assumption.  We obtain a 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1499
new assumption whose identical placeholders may be replaced by 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1500
any term involving~\isa{y}. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1501
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1502
\isacommand{apply}\ (drule\ spec)\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1503
\ 1.\ \isasymAnd y.\ R\ (?z2\ y)\ (?z2\ y)\ \isasymLongrightarrow\ R\ ?x\ y
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1504
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1505
This subgoal can only be proved by putting \isa{y} for all the placeholders,
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1506
making the assumption and conclusion become \isa{R\ y\ y}.  Isabelle can
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1507
replace \isa{?z2~y} by \isa{y}; this involves instantiating
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1508
\isa{?z2} to the identity function.  But, just as two steps earlier,
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1509
Isabelle refuses to substitute~\isa{y} for~\isa{?x}.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1510
This example is typical of how Isabelle enforces sound quantifier reasoning. 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1511
\index{proofs!examples of failing|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1512
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1513
\section{Proving Theorems Using the {\tt\slshape blast} Method}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1514
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1515
\index{*blast (method)|(}%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1516
It is hard to prove many theorems using the methods 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1517
described above. A proof may be hundreds of steps long.  You 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1518
may need to search among different ways of proving certain 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1519
subgoals. Often a choice that proves one subgoal renders another 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1520
impossible to prove.  There are further complications that we have not
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1521
discussed, concerning negation and disjunction.  Isabelle's
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1522
\textbf{classical reasoner} is a family of tools that perform such
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1523
proofs automatically.  The most important of these is the 
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1524
\isa{blast} method. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1525
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1526
In this section, we shall first see how to use the classical 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1527
reasoner in its default mode and then how to insert additional 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1528
rules, enabling it to work in new problem domains. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1529
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1530
 We begin with examples from pure predicate logic. The following 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1531
example is known as Andrew's challenge. Peter Andrews designed 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1532
it to be hard to prove by automatic means.
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1533
It is particularly hard for a resolution prover, where 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1534
converting the nested biconditionals to
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1535
clause form produces a combinatorial
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1536
explosion~\cite{pelletier86}. However, the
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1537
\isa{blast} method proves it in a fraction  of a second. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1538
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1539
\isacommand{lemma}\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1540
"(({\isasymexists}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1541
{\isasymforall}y.\
10301
paulson
parents: 10295
diff changeset
  1542
p(x){=}p(y))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1543
=\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1544
(({\isasymexists}x.\
10301
paulson
parents: 10295
diff changeset
  1545
q(x))=({\isasymforall}y.\
paulson
parents: 10295
diff changeset
  1546
p(y))))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1547
\ \ =\ \ \ \ \isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1548
\ \ \ \ \ \ \ \
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1549
(({\isasymexists}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1550
{\isasymforall}y.\
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1551
q(x){=}q(y))\ =\ (({\isasymexists}x.\ p(x))=({\isasymforall}y.\ q(y))))"\isanewline
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1552
\isacommand{by}\ blast
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1553
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1554
The next example is a logic problem composed by Lewis Carroll. 
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1555
The \isa{blast} method finds it trivial. Moreover, it turns out 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1556
that not all of the assumptions are necessary. We can  
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1557
experiment with variations of this formula and see which ones 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1558
can be proved. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1559
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1560
\isacommand{lemma}\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1561
"({\isasymforall}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1562
honest(x)\ \isasymand\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1563
industrious(x)\ \isasymlongrightarrow\
10301
paulson
parents: 10295
diff changeset
  1564
healthy(x))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1565
\isasymand\ \ \isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1566
\ \ \ \ \ \ \ \ \isasymnot\ ({\isasymexists}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1567
grocer(x)\ \isasymand\
10301
paulson
parents: 10295
diff changeset
  1568
healthy(x))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1569
\isasymand\ \isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1570
\ \ \ \ \ \ \ \ ({\isasymforall}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1571
industrious(x)\ \isasymand\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1572
grocer(x)\ \isasymlongrightarrow\
10301
paulson
parents: 10295
diff changeset
  1573
honest(x))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1574
\isasymand\ \isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1575
\ \ \ \ \ \ \ \ ({\isasymforall}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1576
cyclist(x)\ \isasymlongrightarrow\
10301
paulson
parents: 10295
diff changeset
  1577
industrious(x))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1578
\isasymand\ \isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1579
\ \ \ \ \ \ \ \ ({\isasymforall}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1580
{\isasymnot}healthy(x)\ \isasymand\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1581
cyclist(x)\ \isasymlongrightarrow\
10301
paulson
parents: 10295
diff changeset
  1582
{\isasymnot}honest(x))\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1583
\ \isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1584
\ \ \ \ \ \ \ \ \isasymlongrightarrow\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1585
({\isasymforall}x.\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1586
grocer(x)\ \isasymlongrightarrow\
10301
paulson
parents: 10295
diff changeset
  1587
{\isasymnot}cyclist(x))"\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1588
\isacommand{by}\ blast
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1589
\end{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1590
The \isa{blast} method is also effective for set theory, which is
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1591
described in the next chapter.  The formula below may look horrible, but
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1592
the \isa{blast} method proves it in milliseconds. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1593
\begin{isabelle}
10301
paulson
parents: 10295
diff changeset
  1594
\isacommand{lemma}\ "({\isasymUnion}i{\isasymin}I.\ A(i))\ \isasyminter\ ({\isasymUnion}j{\isasymin}J.\ B(j))\ =\isanewline
paulson
parents: 10295
diff changeset
  1595
\ \ \ \ \ \ \ \ ({\isasymUnion}i{\isasymin}I.\ {\isasymUnion}j{\isasymin}J.\ A(i)\ \isasyminter\ B(j))"\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1596
\isacommand{by}\ blast
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1597
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1598
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1599
Few subgoals are couched purely in predicate logic and set theory.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1600
We can extend the scope of the classical reasoner by giving it new rules. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1601
Extending it effectively requires understanding the notions of
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1602
introduction, elimination and destruction rules.  Moreover, there is a
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1603
distinction between  safe and unsafe rules. A 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1604
\textbf{safe}\indexbold{safe rules} rule is one that can be applied 
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1605
backwards without losing information; an
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1606
\textbf{unsafe}\indexbold{unsafe rules} rule loses  information, perhaps
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1607
transforming the subgoal into one that cannot be proved.  The safe/unsafe
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1608
distinction affects the proof search: if a proof attempt fails, the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1609
classical reasoner backtracks to the most recent unsafe rule application
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1610
and makes another choice. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1611
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1612
An important special case avoids all these complications.  A logical 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1613
equivalence, which in higher-order logic is an equality between 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1614
formulas, can be given to the classical 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1615
reasoner and simplifier by using the attribute \attrdx{iff}.  You 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1616
should do so if the right hand side of the equivalence is  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1617
simpler than the left-hand side.  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1618
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1619
For example, here is a simple fact about list concatenation. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1620
The result of appending two lists is empty if and only if both 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1621
of the lists are themselves empty. Obviously, applying this equivalence 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1622
will result in a simpler goal. When stating this lemma, we include 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1623
the \attrdx{iff} attribute. Once we have proved the lemma, Isabelle 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1624
will make it known to the classical reasoner (and to the simplifier). 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1625
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1626
\isacommand{lemma}\
10854
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1627
[iff]:\ "(xs{\isacharat}ys\ =\ [])\ =\
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1628
(xs=[]\ \isasymand\ ys=[])"\isanewline
10854
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1629
\isacommand{apply}\ (induct_tac\ xs)\isanewline
d1ff1ff5c5ad case_tac on bools
paulson
parents: 10848
diff changeset
  1630
\isacommand{apply}\ (simp_all)\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1631
\isacommand{done}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1632
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1633
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1634
This fact about multiplication is also appropriate for 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1635
the \attrdx{iff} attribute:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1636
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1637
(\mbox{?m}\ *\ \mbox{?n}\ =\ 0)\ =\ (\mbox{?m}\ =\ 0\ \isasymor\ \mbox{?n}\ =\ 0)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1638
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1639
A product is zero if and only if one of the factors is zero.  The
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1640
reasoning  involves a disjunction.  Proving new rules for
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1641
disjunctive reasoning  is hard, but translating to an actual disjunction
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1642
works:  the classical reasoner handles disjunction properly.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1643
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1644
In more detail, this is how the \attrdx{iff} attribute works.  It converts
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1645
the equivalence $P=Q$ to a pair of rules: the introduction
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1646
rule $Q\Imp P$ and the destruction rule $P\Imp Q$.  It gives both to the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1647
classical reasoner as safe rules, ensuring that all occurrences of $P$ in
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1648
a subgoal are replaced by~$Q$.  The simplifier performs the same
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1649
replacement, since \isa{iff} gives $P=Q$ to the
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1650
simplifier.  
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1651
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1652
Classical reasoning is different from
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1653
simplification.  Simplification is deterministic.  It applies rewrite rules
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1654
repeatedly, as long as possible, transforming a goal into another goal.  Classical
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1655
reasoning uses search and backtracking in order to prove a goal outright.%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1656
\index{*blast (method)|)}%
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1657
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1658
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1659
\section{Other Classical Reasoning Methods}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1660
 
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1661
The \isa{blast} method is our main workhorse for proving theorems 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1662
automatically. Other components of the classical reasoner interact 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1663
with the simplifier. Still others perform classical reasoning 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1664
to a limited extent, giving the user fine control over the proof. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1665
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1666
Of the latter methods, the most useful is 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1667
\methdx{clarify}.
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1668
It performs 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1669
all obvious reasoning steps without splitting the goal into multiple 
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1670
parts. It does not apply unsafe rules that could render the 
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1671
goal unprovable. By performing the obvious 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1672
steps, \isa{clarify} lays bare the difficult parts of the problem, 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1673
where human intervention is necessary. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1674
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1675
For example, the following conjecture is false:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1676
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1677
\isacommand{lemma}\ "({\isasymforall}x.\ P\ x)\ \isasymand\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1678
({\isasymexists}x.\ Q\ x)\ \isasymlongrightarrow\ ({\isasymforall}x.\ P\ x\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1679
\isasymand\ Q\ x)"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1680
\isacommand{apply}\ clarify
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1681
\end{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1682
The \isa{blast} method would simply fail, but \isa{clarify} presents 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1683
a subgoal that helps us see why we cannot continue the proof. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1684
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1685
\ 1.\ \isasymAnd x\ xa.\ \isasymlbrakk{\isasymforall}x.\ P\ x;\ Q\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1686
xa\isasymrbrakk\ \isasymLongrightarrow\ P\ x\ \isasymand\ Q\ x
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1687
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1688
The proof must fail because the assumption \isa{Q\ xa} and conclusion \isa{Q\ x}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1689
refer to distinct bound variables.  To reach this state, \isa{clarify} applied
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1690
the introduction rules for \isa{\isasymlongrightarrow} and \isa{\isasymforall}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1691
and the elimination rule for ~\isa{\isasymand}.  It did not apply the introduction
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1692
rule for  \isa{\isasymand} because of its policy never to split goals.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1693
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1694
Also available is \methdx{clarsimp}, a method
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1695
that interleaves \isa{clarify} and \isa{simp}.  Also there is  \methdx{safe},
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1696
which like \isa{clarify} performs obvious steps but even applies those that
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1697
split goals.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1698
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1699
The \methdx{force} method applies the classical
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1700
reasoner and simplifier  to one goal. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1701
Unless it can prove the goal, it fails. Contrast 
10546
b0ad1ed24cf6 replaced Eps by SOME
paulson
parents: 10399
diff changeset
  1702
that with the \isa{auto} method, which also combines classical reasoning 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1703
with simplification. The latter's purpose is to prove all the 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1704
easy subgoals and parts of subgoals. Unfortunately, it can produce 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1705
large numbers of new subgoals; also, since it proves some subgoals 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1706
and splits others, it obscures the structure of the proof tree. 
10546
b0ad1ed24cf6 replaced Eps by SOME
paulson
parents: 10399
diff changeset
  1707
The \isa{force} method does not have these drawbacks. Another 
b0ad1ed24cf6 replaced Eps by SOME
paulson
parents: 10399
diff changeset
  1708
difference: \isa{force} tries harder than {\isa{auto}} to prove 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1709
its goal, so it can take much longer to terminate.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1710
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1711
Older components of the classical reasoner have largely been 
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1712
superseded by \isa{blast}, but they still have niche applications. 
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1713
Most important among these are \isa{fast} and \isa{best}. While \isa{blast} 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1714
searches for proofs using a built-in first-order reasoner, these 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1715
earlier methods search for proofs using standard Isabelle inference. 
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1716
That makes them slower but enables them to work in the 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1717
presence of the more unusual features of Isabelle rules, such 
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1718
as type classes and function unknowns. For example, recall the introduction rule
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1719
for Hilbert's $\varepsilon$-operator: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1720
\begin{isabelle}
10546
b0ad1ed24cf6 replaced Eps by SOME
paulson
parents: 10399
diff changeset
  1721
?P\ ?x\ \isasymLongrightarrow\ ?P\ (SOME\ x.\ ?P x)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1722
\rulename{someI}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1723
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1724
%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1725
The repeated occurrence of the variable \isa{?P} makes this rule tricky 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1726
to apply. Consider this contrived example: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1727
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1728
\isacommand{lemma}\ "\isasymlbrakk Q\ a;\ P\ a\isasymrbrakk\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1729
\ \ \ \ \ \ \ \ \,\isasymLongrightarrow\ P\ (SOME\ x.\ P\ x\ \isasymand\ Q\ x)\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1730
\isasymand\ Q\ (SOME\ x.\ P\ x\ \isasymand\ Q\ x)"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1731
\isacommand{apply}\ (rule\ someI)
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1732
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1733
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1734
We can apply rule \isa{someI} explicitly.  It yields the 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1735
following subgoal: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1736
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1737
\ 1.\ \isasymlbrakk Q\ a;\ P\ a\isasymrbrakk\ \isasymLongrightarrow\ P\ ?x\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1738
\isasymand\ Q\ ?x%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1739
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1740
The proof from this point is trivial.  Could we have
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1741
proved the theorem with a single command? Not using \isa{blast}: it
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1742
cannot perform  the higher-order unification needed here.  The
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1743
\methdx{fast} method succeeds: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1744
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1745
\isacommand{apply}\ (fast\ intro!:\ someI)
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1746
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1747
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1748
The \methdx{best} method is similar to
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1749
\isa{fast} but it uses a  best-first search instead of depth-first search.
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1750
Accordingly,  it is slower but is less susceptible to divergence.
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1751
Transitivity  rules usually cause \isa{fast} to loop where \isa{best} 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1752
can often manage.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1753
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1754
Here is a summary of the classical reasoning methods:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1755
\begin{itemize}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1756
\item \methdx{blast} works automatically and is the fastest
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1757
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1758
\item \methdx{clarify} and \methdx{clarsimp} perform obvious steps without
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1759
splitting the goal;  \methdx{safe} even splits goals
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1760
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1761
\item \methdx{force} uses classical reasoning and simplification to prove a goal;
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1762
 \methdx{auto} is similar but leaves what it cannot prove
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1763
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1764
\item \methdx{fast} and \methdx{best} are legacy methods that work well with rules
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1765
involving unusual features
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1766
\end{itemize}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1767
A table illustrates the relationships among four of these methods. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1768
\begin{center}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1769
\begin{tabular}{r|l|l|}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1770
           & no split   & split \\ \hline
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1771
  no simp  & \methdx{clarify}    & \methdx{safe} \\ \hline
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1772
     simp  & \methdx{clarsimp}   & \methdx{auto} \\ \hline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1773
\end{tabular}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1774
\end{center}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1775
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1776
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1777
\section{Forward Proof: Transforming Theorems}\label{sec:forward}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1778
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1779
\index{forward proof|(}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1780
Forward proof means deriving new facts from old ones.  It is  the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1781
most fundamental type of proof.  Backward proof, by working  from goals to
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1782
subgoals, can help us find a difficult proof.  But it is
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1783
not always the best way of presenting the proof so found.  Forward
10301
paulson
parents: 10295
diff changeset
  1784
proof is particularly good for reasoning from the general
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1785
to the specific.  For example, consider this distributive law for
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1786
the greatest common divisor:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1787
\[ k\times\gcd(m,n) = \gcd(k\times m,k\times n)\]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1788
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1789
Putting $m=1$ we get (since $\gcd(1,n)=1$ and $k\times1=k$) 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1790
\[ k = \gcd(k,k\times n)\]
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1791
We have derived a new fact; if re-oriented, it might be
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1792
useful for simplification.  After re-orienting it and putting $n=1$, we
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1793
derive another useful law: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1794
\[ \gcd(k,k)=k \]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1795
Substituting values for variables --- instantiation --- is a forward step. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1796
Re-orientation works by applying the symmetry of equality to 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1797
an equation, so it too is a forward step.  
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1798
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1799
\subsection{Modifying a Theorem using {\tt\slshape of} and {\tt\slshape THEN}}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1800
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1801
Let us reproduce our examples in Isabelle.  Recall that in
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
  1802
{\S}\ref{sec:recdef-simplification} we declared the recursive function
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1803
\isa{gcd}:\index{*gcd (constant)|(}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1804
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1805
\isacommand{consts}\ gcd\ ::\ "nat*nat\ \isasymRightarrow\ nat"\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1806
\isacommand{recdef}\ gcd\ "measure\ ((\isasymlambda(m,n).n))"\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1807
\ \ \ \ "gcd\ (m,n)\ =\ (if\ n=0\ then\ m\ else\ gcd(n,\ m\ mod\ n))"
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1808
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1809
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1810
From this definition, it is possible to prove the 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1811
distributive law.  
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1812
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1813
?k\ *\ gcd\ (?m,\ ?n)\ =\ gcd\ (?k\ *\ ?m,\ ?k\ *\ ?n)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1814
\rulename{gcd_mult_distrib2}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1815
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1816
%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1817
The first step in our derivation is to replace \isa{?m} by~1.  We instantiate the
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1818
theorem using~\attrdx{of}, which identifies variables in order of their
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1819
appearance from left to right.  In this case, the variables  are \isa{?k}, \isa{?m}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1820
and~\isa{?n}. So, the expression
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1821
\hbox{\texttt{[of k 1]}} replaces \isa{?k} by~\isa{k} and \isa{?m}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1822
by~\isa{1}.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1823
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1824
\isacommand{lemmas}\ gcd_mult_0\ =\ gcd_mult_distrib2\ [of\ k\ 1]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1825
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1826
%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1827
The keyword \commdx{lemmas} declares a new theorem, which can be derived
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1828
from an existing one using attributes such as \isa{[of~k~1]}.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1829
The command 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1830
\isa{thm gcd_mult_0}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1831
displays the result:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1832
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1833
\ \ \ \ \ k\ *\ gcd\ (1,\ ?n)\ =\ gcd\ (k\ *\ 1,\ k\ *\ ?n)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1834
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1835
Something is odd: {\isa{k}} is an ordinary variable, while {\isa{?n}} 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1836
is schematic.  We did not specify an instantiation 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1837
for {\isa{?n}}.  In its present form, the theorem does not allow 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1838
substitution for {\isa{k}}.  One solution is to avoid giving an instantiation for
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1839
\isa{?k}: instead of a term we can put an underscore~(\isa{_}).  For example,
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1840
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1841
\ \ \ \ \ gcd_mult_distrib2\ [of\ _\ 1]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1842
\end{isabelle}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1843
replaces \isa{?m} by~\isa{1} but leaves \isa{?k} unchanged.  
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1844
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1845
The next step is to put
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1846
the theorem \isa{gcd_mult_0} into a simplified form, performing the steps 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1847
$\gcd(1,n)=1$ and $k\times1=k$.  The \attrdx{simplified}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1848
attribute takes a theorem
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1849
and returns the result of simplifying it, with respect to the default
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1850
simplification rules:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1851
\begin{isabelle}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1852
\isacommand{lemmas}\ gcd_mult_1\ =\ gcd_mult_0\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1853
[simplified]%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1854
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1855
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1856
Again, we display the resulting theorem:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1857
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1858
\ \ \ \ \ k\ =\ gcd\ (k,\ k\ *\ ?n)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1859
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1860
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1861
To re-orient the equation requires the symmetry rule:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1862
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1863
?s\ =\ ?t\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1864
\isasymLongrightarrow\ ?t\ =\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1865
?s%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1866
\rulenamedx{sym}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1867
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1868
The following declaration gives our equation to \isa{sym}:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1869
\begin{isabelle}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1870
\ \ \ \isacommand{lemmas}\ gcd_mult\ =\ gcd_mult_1\ [THEN\ sym]
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1871
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1872
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1873
Here is the result:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1874
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1875
\ \ \ \ \ gcd\ (k,\ k\ *\ ?n)\ =\ k%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1876
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1877
\isa{THEN~sym}\indexbold{*THEN (attribute)} gives the current theorem to the
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1878
rule \isa{sym} and returns the resulting conclusion.  The effect is to
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1879
exchange the two operands of the equality. Typically \isa{THEN} is used
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1880
with destruction rules.  Also useful is \isa{THEN~spec}, which removes the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1881
quantifier from a theorem of the form $\forall x.\,P$, and \isa{THEN~mp},
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1882
which converts the implication $P\imp Q$ into the rule
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1883
$\vcenter{\infer{Q}{P}}$. Similar to \isa{mp} are the following two rules,
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1884
which extract  the two directions of reasoning about a boolean equivalence:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1885
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1886
\isasymlbrakk?Q\ =\ ?P;\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?P%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1887
\rulenamedx{iffD1}%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1888
\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1889
\isasymlbrakk?P\ =\ ?Q;\ ?Q\isasymrbrakk\ \isasymLongrightarrow\ ?P%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  1890
\rulenamedx{iffD2}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1891
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1892
%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1893
Normally we would never name the intermediate theorems
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1894
such as \isa{gcd_mult_0} and
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1895
\isa{gcd_mult_1} but would combine
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1896
the three forward steps: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1897
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1898
\isacommand{lemmas}\ gcd_mult\ =\ gcd_mult_distrib2\ [of\ k\ 1,\ simplified,\ THEN\ sym]%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1899
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1900
The directives, or attributes, are processed from left to right.  This
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1901
declaration of \isa{gcd_mult} is equivalent to the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1902
previous one.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1903
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1904
Such declarations can make the proof script hard to read.  Better   
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1905
is to state the new lemma explicitly and to prove it using a single
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1906
\isa{rule} method whose operand is expressed using forward reasoning:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1907
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1908
\isacommand{lemma}\ gcd_mult\
10301
paulson
parents: 10295
diff changeset
  1909
[simp]:\
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1910
"gcd(k,\ k*n)\ =\ k"\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1911
\isacommand{by}\ (rule\ gcd_mult_distrib2\ [of\ k\ 1,\ simplified,\ THEN\ sym])
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1912
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1913
Compared with the previous proof of \isa{gcd_mult}, this
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1914
version shows the reader what has been proved.  Also, the result will be processed
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1915
in the normal way.  In particular, Isabelle generalizes over all variables: the
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1916
resulting theorem will have {\isa{?k}} instead of {\isa{k}}.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1917
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1918
At the start  of this section, we also saw a proof of $\gcd(k,k)=k$.  Here
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1919
is the Isabelle version:\index{*gcd (constant)|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1920
\begin{isabelle}
10301
paulson
parents: 10295
diff changeset
  1921
\isacommand{lemma}\ gcd_self\ [simp]:\ "gcd(k,k)\ =\ k"\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1922
\isacommand{by}\ (rule\ gcd_mult\ [of\ k\ 1,\ simplified])
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1923
\end{isabelle}
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1924
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1925
\begin{warn}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1926
To give~\isa{of} a nonvariable term, enclose it in quotation marks, as in
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1927
\isa{[of "k*m"]}.  The term must not contain unknowns: an
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1928
attribute such as 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1929
\isa{[of "?k*m"]} will be rejected.
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1930
\end{warn}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1931
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1932
\begin{exercise}
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
  1933
In {\S}\ref{sec:subst} the method \isa{subst\ mult_commute} was applied.  How
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1934
can we achieve the same effect using \isa{THEN} with the rule \isa{ssubst}?
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1935
% answer  rule (mult_commute [THEN ssubst])
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  1936
\end{exercise}
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1937
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1938
\subsection{Modifying a Theorem using {\tt\slshape OF}}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1939
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1940
\index{*OF (attribute)|(}%
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1941
Recall that \isa{of} generates an instance of a
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1942
rule by specifying values for its variables.  Analogous is \isa{OF}, which
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1943
generates an instance of a rule by specifying facts for its premises.  
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1944
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1945
We again need the divides relation\index{divides relation} of number theory, which
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  1946
as we recall is defined by 
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1947
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1948
?m\ dvd\ ?n\ \isasymequiv\ {\isasymexists}k.\ ?n\ =\ ?m\ *\ k
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1949
\rulename{dvd_def}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1950
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1951
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1952
For example, this rule states that if $k$ and $n$ are relatively prime
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1953
and if $k$ divides $m\times n$ then $k$ divides $m$.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1954
\begin{isabelle}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1955
\isasymlbrakk gcd(?k,?n){=}1;\ ?k\ dvd\ ?m * ?n\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1956
\isasymLongrightarrow\ ?k\ dvd\ ?m
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1957
\rulename{relprime_dvd_mult}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1958
\end{isabelle}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1959
We can use \isa{OF} to create an instance of this rule.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1960
First, we
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1961
prove an instance of its first premise:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1962
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1963
\isacommand{lemma}\ relprime_20_81:\ "gcd(\#20,\#81)\ =\ 1"\isanewline
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  1964
\isacommand{by}\ (simp\ add:\ gcd.simps)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1965
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1966
We have evaluated an application of the \isa{gcd} function by
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  1967
simplification.  Expression evaluation involving recursive functions is not
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1968
guaranteed to terminate, and it can be slow; Isabelle
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1969
performs arithmetic by  rewriting symbolic bit strings.  Here,
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1970
however, the simplification takes less than one second.  We can
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  1971
give this new lemma to \isa{OF}.  The expression
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1972
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1973
\ \ \ \ \ relprime_dvd_mult [OF relprime_20_81]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1974
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1975
yields the theorem
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1976
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1977
\ \ \ \ \ \#20\ dvd\ (?m\ *\ \#81)\ \isasymLongrightarrow\ \#20\ dvd\ ?m%
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1978
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1979
%
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1980
\isa{OF} takes any number of operands.  Consider 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1981
the following facts about the divides relation: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1982
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1983
\isasymlbrakk?k\ dvd\ ?m;\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1984
?k\ dvd\ ?n\isasymrbrakk\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1985
\isasymLongrightarrow\ ?k\ dvd\
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  1986
?m\ +\ ?n
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1987
\rulename{dvd_add}\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1988
?m\ dvd\ ?m%
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1989
\rulename{dvd_refl}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1990
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1991
Let us supply \isa{dvd_refl} for each of the premises of \isa{dvd_add}:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1992
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1993
\ \ \ \ \ dvd_add [OF dvd_refl dvd_refl]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1994
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1995
Here is the theorem that we have expressed: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1996
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  1997
\ \ \ \ \ ?k\ dvd\ (?k\ +\ ?k)
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1998
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  1999
As with \isa{of}, we can use the \isa{_} symbol to leave some positions
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2000
unspecified:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2001
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2002
\ \ \ \ \ dvd_add [OF _ dvd_refl]
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2003
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2004
The result is 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2005
\begin{isabelle}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  2006
\ \ \ \ \ ?k\ dvd\ ?m\ \isasymLongrightarrow\ ?k\ dvd\ ?m\ +\ ?k
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2007
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2008
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2009
You may have noticed that \isa{THEN} and \isa{OF} are based on 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2010
the same idea, namely to combine two rules.  They differ in the
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2011
order of the combination and thus in their effect.  We use \isa{THEN}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2012
typically with a destruction rule to extract a subformula of the current
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2013
theorem.  We use \isa{OF} with a list of facts to generate an instance of
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2014
the current theorem.%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2015
\index{*OF (attribute)|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2016
10848
7b3ee4695fe6 various changes including the SOME examples, rule_format and "by"
paulson
parents: 10792
diff changeset
  2017
Here is a summary of some primitives for forward reasoning:
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2018
\begin{itemize}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2019
\item \attrdx{of} instantiates the variables of a rule to a list of terms
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2020
\item \attrdx{OF} applies a rule to a list of theorems
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2021
\item \attrdx{THEN} gives a theorem to a named rule and returns the
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2022
conclusion 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2023
%\item \attrdx{rule_format} puts a theorem into standard form
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2024
%  by removing \isa{\isasymlongrightarrow} and~\isa{\isasymforall}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2025
\item \attrdx{simplified} applies the simplifier to a theorem
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2026
\item \isacommand{lemmas} assigns a name to the theorem produced by the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2027
attributes above
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2028
\end{itemize}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2029
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2030
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2031
\section{Forward Reasoning in a Backward Proof}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2032
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2033
We have seen that the forward proof directives work well within a backward 
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2034
proof.  There are many ways to achieve a forward style using our existing
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2035
proof methods.  We shall also meet some new methods that perform forward
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2036
reasoning.  
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2037
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2038
The methods \isa{drule}, \isa{frule}, \isa{drule_tac}, etc.,
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2039
reason forward from a subgoal.  We have seen them already, using rules such as
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2040
\isa{mp} and
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2041
\isa{spec} to operate on formulae.  They can also operate on terms, using rules
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2042
such as these:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2043
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2044
x\ =\ y\ \isasymLongrightarrow \ f\ x\ =\ f\ y%
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  2045
\rulenamedx{arg_cong}\isanewline
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2046
i\ \isasymle \ j\ \isasymLongrightarrow \ i\ *\ k\ \isasymle \ j\ *\ k%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2047
\rulename{mult_le_mono1}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2048
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2049
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2050
For example, let us prove a fact about divisibility in the natural numbers:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2051
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2052
\isacommand{lemma}\ "\#2\ \isasymle \ u\ \isasymLongrightarrow \ u*m\ \isasymnoteq
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2053
\ Suc(u*n)"\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2054
\isacommand{apply}\ intro\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2055
\ 1.\ \isasymlbrakk \#2\ \isasymle \ u;\ u\ *\ m\ =\ Suc\ (u\ *\ n)\isasymrbrakk \ \isasymLongrightarrow \ False%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2056
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2057
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2058
The key step is to apply the function \ldots\isa{mod\ u} to both sides of the
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2059
equation
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2060
\isa{u*m\ =\ Suc(u*n)}:\index{*drule_tac (method)}
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2061
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2062
\isacommand{apply}\ (drule_tac\ f="\isasymlambda x.\ x\ mod\ u"\ \isakeyword{in}\
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2063
arg_cong)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2064
\ 1.\ \isasymlbrakk \#2\ \isasymle \ u;\ u\ *\ m\ mod\ u\ =\ Suc\ (u\ *\ n)\ mod\
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2065
u\isasymrbrakk \ \isasymLongrightarrow \ False
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2066
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2067
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2068
Simplification reduces the left side to 0 and the right side to~1, yielding the
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2069
required contradiction.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2070
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2071
\isacommand{apply}\ (simp\ add:\ mod_Suc)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2072
\isacommand{done}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2073
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2074
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2075
Our proof has used a fact about remainder:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2076
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2077
Suc\ m\ mod\ n\ =\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2078
(if\ Suc\ (m\ mod\ n)\ =\ n\ then\ 0\ else\ Suc\ (m\ mod\ n))
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2079
\rulename{mod_Suc}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2080
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2081
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2082
\subsection{The Method {\tt\slshape insert}}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2083
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2084
\index{*insert (method)|(}%
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2085
The \isa{insert} method
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2086
inserts a given theorem as a new assumption of the current subgoal.  This
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2087
already is a forward step; moreover, we may (as always when using a
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2088
theorem) apply
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2089
\isa{of}, \isa{THEN} and other directives.  The new assumption can then
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2090
be used to help prove the subgoal.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2091
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2092
For example, consider this theorem about the divides relation.  The first
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2093
proof step inserts the distributive law for
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2094
\isa{gcd}.  We specify its variables as shown. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2095
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2096
\isacommand{lemma}\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2097
relprime_dvd_mult:\isanewline
11179
bee6673b020a subst method and a new section on rule, rule_tac, etc
paulson
parents: 11159
diff changeset
  2098
\ \ \ \ \ \ \ "\isasymlbrakk gcd(k,n){=}1;\ k\ dvd\ m*n\isasymrbrakk\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2099
\isasymLongrightarrow\ k\ dvd\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2100
m"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2101
\isacommand{apply}\ (insert\ gcd_mult_distrib2\ [of\ m\ k\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2102
n])
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2103
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2104
In the resulting subgoal, note how the equation has been 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2105
inserted: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2106
\begin{isabelle}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  2107
\ 1.\ \isasymlbrakk gcd\ (k,\ n)\ =\ 1;\ k\ dvd\ m\ *\ n{;}\ m\ *\ gcd\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2108
(k,\ n)\
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2109
=\ gcd\ (m\ *\ k,\ m\ *\ n)\isasymrbrakk\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2110
\ \ \ \ \isasymLongrightarrow\ k\ dvd\ m
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2111
\end{isabelle}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2112
The next proof step utilizes the assumption \isa{gcd(k,n)\ =\ 1}: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2113
\begin{isabelle}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2114
\isacommand{apply}(simp)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2115
\ 1.\ \isasymlbrakk gcd\ (k,\ n)\ =\ 1;\ k\ dvd\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2116
(m\ *\ n){;}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  2117
\ m\ =\ gcd\ (m\ *\ k,\ m\ *\ n)\isasymrbrakk\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2118
\ \ \ \ \isasymLongrightarrow\ k\ dvd\ m
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2119
\end{isabelle}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2120
Simplification has yielded an equation for~\isa{m}.  The rest of the proof
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2121
is omitted.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2122
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2123
\medskip
11417
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  2124
Here is another demonstration of \isa{insert}.  Division and
499435b4084e less indexing of theorem names
paulson
parents: 11411
diff changeset
  2125
remainder obey a well-known law: 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2126
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2127
(?m\ div\ ?n)\ *\ ?n\ +\ ?m\ mod\ ?n\ =\ ?m
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2128
\rulename{mod_div_equality}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2129
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2130
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2131
We refer to this law explicitly in the following proof: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2132
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2133
\isacommand{lemma}\ div_mult_self_is_m:\ \isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2134
\ \ \ \ \ \ "0{\isacharless}n\ \isasymLongrightarrow\ (m*n)\ div\ n\ =\
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2135
(m::nat)"\isanewline
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2136
\isacommand{apply}\ (insert\ mod_div_equality\ [of\ "m*n"\ n])\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2137
\isacommand{apply}\ (simp)\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2138
\isacommand{done}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2139
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2140
The first step inserts the law, specifying \isa{m*n} and
10301
paulson
parents: 10295
diff changeset
  2141
\isa{n} for its variables.  Notice that non-trivial expressions must be
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2142
enclosed in quotation marks.  Here is the resulting 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2143
subgoal, with its new assumption: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2144
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2145
%0\ \isacharless\ n\ \isasymLongrightarrow\ (m\
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2146
%*\ n)\ div\ n\ =\ m\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2147
\ 1.\ \isasymlbrakk0\ \isacharless\
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2148
n;\ \ (m\ *\ n)\ div\ n\ *\ n\ +\ (m\ *\ n)\ mod\ n\
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2149
=\ m\ *\ n\isasymrbrakk\isanewline
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2150
\ \ \ \ \isasymLongrightarrow\ (m\ *\ n)\ div\ n\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2151
=\ m
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2152
\end{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2153
Simplification reduces \isa{(m\ *\ n)\ mod\ n} to zero.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2154
Then it cancels the factor~\isa{n} on both
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2155
sides of the equation \isa{(m\ *\ n)\ div\ n\ *\ n\ =\ m\ *\ n}, proving the
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2156
theorem.
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2157
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2158
\begin{warn}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2159
Any unknowns in the theorem given to \methdx{insert} will be universally
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2160
quantified in the new assumption.
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2161
\end{warn}%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2162
\index{*insert (method)|)}
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2163
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2164
\subsection{The Method {\tt\slshape subgoal_tac}}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2165
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2166
\index{*subgoal_tac (method)}%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2167
A related method is \isa{subgoal_tac}, but instead
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2168
of inserting  a theorem as an assumption, it inserts an arbitrary formula. 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2169
This formula must be proved later as a separate subgoal. The 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2170
idea is to claim that the formula holds on the basis of the current 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2171
assumptions, to use this claim to complete the proof, and finally 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2172
to justify the claim. It gives the proof 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2173
some structure.  If you find yourself generating a complex assumption by a
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2174
long series of forward steps, consider using \isa{subgoal_tac} instead: you can
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2175
state the formula you are aiming for, and perhaps prove it automatically.
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2176
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2177
Look at the following example. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2178
\begin{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2179
\isacommand{lemma}\ "\isasymlbrakk(z::int)\ <\ \#37;\ \#66\ <\ \#2*z;\ z*z\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2180
\isasymnoteq\ \#1225;\ Q(\#34);\ Q(\#36)\isasymrbrakk\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2181
\ \ \ \ \ \ \ \ \,\isasymLongrightarrow\ Q(z)"\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2182
\isacommand{apply}\ (subgoal_tac\ "z\ =\ \#34\ \isasymor\ z\ =\
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2183
\#36")\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2184
\isacommand{apply}\ blast\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2185
\isacommand{apply}\ (subgoal_tac\ "z\ \isasymnoteq\ \#35")\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2186
\isacommand{apply}\ arith\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2187
\isacommand{apply}\ force\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2188
\isacommand{done}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2189
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2190
The first assumption tells us 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2191
that \isa{z} is no greater than~36. The second tells us that \isa{z} 
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2192
is at least~34. The third assumption tells us that \isa{z} cannot be 35, since
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2193
$35\times35=1225$.  So \isa{z} is either 34 or~36, and since \isa{Q} holds for
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2194
both of those  values, we have the conclusion. 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2195
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2196
The Isabelle proof closely follows this reasoning. The first 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2197
step is to claim that \isa{z} is either 34 or 36. The resulting proof 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2198
state gives us two subgoals: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2199
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2200
%\isasymlbrakk z\ <\ \#37;\ \#66\ <\ \#2\ *\ z;\ z\ *\ z\ \isasymnoteq\ \#1225;\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2201
%Q\ \#34;\ Q\ \#36\isasymrbrakk\ \isasymLongrightarrow\ Q\ z\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2202
\ 1.\ \isasymlbrakk z\ <\ \#37;\ \#66\ <\ \#2\ *\ z;\ z\ *\ z\ \isasymnoteq\ \#1225;\ Q\ \#34;\ Q\ \#36;\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2203
\ \ \ \ \ z\ =\ \#34\ \isasymor\ z\ =\ \#36\isasymrbrakk\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2204
\ \ \ \ \isasymLongrightarrow\ Q\ z\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2205
\ 2.\ \isasymlbrakk z\ <\ \#37;\ \#66\ <\ \#2\ *\ z;\ z\ *\ z\ \isasymnoteq\ \#1225;\ Q\ \#34;\ Q\ \#36\isasymrbrakk\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2206
\ \ \ \ \isasymLongrightarrow\ z\ =\ \#34\ \isasymor\ z\ =\ \#36
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2207
\end{isabelle}
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  2208
The first subgoal is trivial (\isa{blast}), but for the second Isabelle needs help to eliminate
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2209
the case
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2210
\isa{z}=35.  The second invocation  of {\isa{subgoal_tac}} leaves two
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2211
subgoals: 
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2212
\begin{isabelle}
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2213
\ 1.\ \isasymlbrakk z\ <\ \#37;\ \#66\ <\ \#2\ *\ z;\ z\ *\ z\ \isasymnoteq\
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2214
\#1225;\ Q\ \#34;\ Q\ \#36;\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2215
\ \ \ \ \ z\ \isasymnoteq\ \#35\isasymrbrakk\isanewline
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2216
\ \ \ \ \isasymLongrightarrow\ z\ =\ \#34\ \isasymor\ z\ =\ \#36\isanewline
10596
77951eaeb5b0 tidying
paulson
parents: 10578
diff changeset
  2217
\ 2.\ \isasymlbrakk z\ <\ \#37;\ \#66\ <\ \#2\ *\ z;\ z\ *\ z\ \isasymnoteq\ \#1225;\ Q\ \#34;\ Q\ \#36\isasymrbrakk\isanewline
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2218
\ \ \ \ \isasymLongrightarrow\ z\ \isasymnoteq\ \#35
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2219
\end{isabelle}
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2220
10971
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  2221
Assuming that \isa{z} is not 35, the first subgoal follows by linear arithmetic
6852682eaf16 *** empty log message ***
nipkow
parents: 10967
diff changeset
  2222
(\isa{arith}). For the second subgoal we apply the method \isa{force}, 
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2223
which proceeds by assuming that \isa{z}=35 and arriving at a contradiction.
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2224
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2225
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2226
\medskip
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2227
Summary of these methods:
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2228
\begin{itemize}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2229
\item \methdx{insert} adds a theorem as a new assumption
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2230
\item \methdx{subgoal_tac} adds a formula as a new assumption and leaves the
10295
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2231
subgoal of proving that formula
8eb12693cead the Rules chapter and theories
paulson
parents:
diff changeset
  2232
\end{itemize}
11077
8f4fa58e6fba snapshot of a new version
paulson
parents: 10983
diff changeset
  2233
\index{forward proof|)}
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2234
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2235
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2236
\section{Managing Large Proofs}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2237
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2238
Naturally you should try to divide proofs into manageable parts.  Look for lemmas
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2239
that can be proved separately.  Sometimes you will observe that they are
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2240
instances of much simpler facts.  On other occasions, no lemmas suggest themselves
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2241
and you are forced to cope with a long proof involving many subgoals.  
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2242
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2243
\subsection{Tacticals, or Control Structures}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2244
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2245
\index{tacticals|(}%
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2246
If the proof is long, perhaps it at least has some regularity.  Then you can
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2247
express it more concisely using \textbf{tacticals}, which provide control
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2248
structures.  Here is a proof (it would be a one-liner using
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2249
\isa{blast}, but forget that) that contains a series of repeated
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2250
commands:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2251
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2252
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2253
\isacommand{lemma}\ "\isasymlbrakk P\isasymlongrightarrow Q;\
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2254
Q\isasymlongrightarrow R;\ R\isasymlongrightarrow S;\ P\isasymrbrakk \
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2255
\isasymLongrightarrow \ S"\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2256
\isacommand{apply}\ (drule\ mp,\ assumption)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2257
\isacommand{apply}\ (drule\ mp,\ assumption)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2258
\isacommand{apply}\ (drule\ mp,\ assumption)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2259
\isacommand{apply}\ (assumption)\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2260
\isacommand{done}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2261
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2262
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2263
Each of the three identical commands finds an implication and proves its
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2264
antecedent by assumption.  The first one finds \isa{P\isasymlongrightarrow Q} and
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2265
\isa{P}, concluding~\isa{Q}; the second one concludes~\isa{R} and the third one
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2266
concludes~\isa{S}.  The final step matches the assumption \isa{S} with the goal to
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2267
be proved.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2268
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2269
Suffixing a method with a plus sign~(\isa+)\index{*"+ (tactical)}
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2270
expresses one or more repetitions:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2271
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2272
\isacommand{lemma}\ "\isasymlbrakk P\isasymlongrightarrow Q;\ Q\isasymlongrightarrow R;\ R\isasymlongrightarrow S;\ P\isasymrbrakk \ \isasymLongrightarrow \ S"\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2273
\isacommand{by}\ (drule\ mp,\ assumption)+
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2274
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2275
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2276
Using \isacommand{by} takes care of the final use of \isa{assumption}.  The new
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2277
proof is more concise.  It is also more general: the repetitive method works
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2278
for a chain of implications having any length, not just three.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2279
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2280
Choice is another control structure.  Separating two methods by a vertical
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2281
% we must use ?? rather than "| as the sorting item because somehow the presence
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2282
% of | (even quoted) stops hyperref from putting |hyperpage at the end of the index
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2283
% entry.
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2284
bar~(\isa|)\index{??@\texttt{"|} (tactical)}  gives the effect of applying the
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2285
first method, and if that fails, trying the second.  It can be combined with
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2286
repetition, when the choice must be made over and over again.  Here is a chain of
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2287
implications in which most of the antecedents are proved by assumption, but one is
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2288
proved by arithmetic:
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2289
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2290
\isacommand{lemma}\ "\isasymlbrakk Q\isasymlongrightarrow R;\ P\isasymlongrightarrow Q;\ x<\#5\isasymlongrightarrow P;\
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2291
Suc\ x\ <\ \#5\isasymrbrakk \ \isasymLongrightarrow \ R"\ \isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2292
\isacommand{by}\ (drule\ mp,\ (assumption|arith))+
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2293
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2294
The \isa{arith}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2295
method can prove $x<5$ from $x+1<5$, but it cannot duplicate the effect of
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2296
\isa{assumption}.  Therefore, we combine these methods using the choice
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2297
operator.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2298
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2299
A postfixed question mark~(\isa?)\index{*"? (tactical)} expresses zero or one
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2300
repetitions of a method.  It can also be viewed as the choice between executing a
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2301
method and doing nothing.  It is useless at top level but may be valuable within
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2302
other control structures.%
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2303
\index{tacticals|)}
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2304
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2305
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2306
\subsection{Subgoal Numbering}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2307
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2308
Another problem in large proofs is contending with huge
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2309
subgoals or many subgoals.  Induction can produce a proof state that looks
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2310
like this:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2311
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2312
\ 1.\ bigsubgoal1\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2313
\ 2.\ bigsubgoal2\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2314
\ 3.\ bigsubgoal3\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2315
\ 4.\ bigsubgoal4\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2316
\ 5.\ bigsubgoal5\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2317
\ 6.\ bigsubgoal6
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2318
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2319
If each \isa{bigsubgoal} is 15 lines or so, the proof state will be too big to
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2320
scroll through.  By default, Isabelle displays at most 10 subgoals.  The 
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2321
\commdx{pr} command lets you change this limit:
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2322
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2323
\isacommand{pr}\ 2\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2324
\ 1.\ bigsubgoal1\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2325
\ 2.\ bigsubgoal2\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2326
A total of 6 subgoals...
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2327
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2328
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2329
\medskip
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2330
All methods apply to the first subgoal.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2331
Sometimes, not only in a large proof, you may want to focus on some other
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2332
subgoal.  Then you should try the commands \isacommand{defer} or \isacommand{prefer}.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2333
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2334
In the following example, the first subgoal looks hard, while the others
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2335
look as if \isa{blast} alone could prove them:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2336
%\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2337
%\isacommand{lemma}\ "hard\ \isasymand \ (P\ \isasymor \ \isachartilde P)\ \isasymand \ (Q\isasymlongrightarrow Q)"\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2338
%\isacommand{apply}\ intro
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2339
%\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2340
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2341
\ 1.\ hard\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2342
\ 2.\ \isasymnot \ \isasymnot \ P\ \isasymLongrightarrow \ P\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2343
\ 3.\ Q\ \isasymLongrightarrow \ Q%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2344
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2345
%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2346
The \commdx{defer} command moves the first subgoal into the last position.
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2347
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2348
\isacommand{defer}\ 1\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2349
\ 1.\ \isasymnot \ \isasymnot \ P\ \isasymLongrightarrow \ P\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2350
\ 2.\ Q\ \isasymLongrightarrow \ Q\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2351
\ 3.\ hard%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2352
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2353
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2354
Now we apply \isa{blast} repeatedly to the easy subgoals:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2355
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2356
\isacommand{apply}\ blast+\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2357
\ 1.\ hard%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2358
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2359
Using \isacommand{defer}, we have cleared away the trivial parts of the proof so
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2360
that we can devote attention to the difficult part.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2361
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2362
\medskip
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2363
The \commdx{prefer} command moves the specified subgoal into the
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2364
first position.  For example, if you suspect that one of your subgoals is
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2365
invalid (not a theorem), then you should investigate that subgoal first.  If it
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2366
cannot be proved, then there is no point in proving the other subgoals.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2367
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2368
\ 1.\ ok1\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2369
\ 2.\ ok2\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2370
\ 3.\ doubtful%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2371
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2372
%
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2373
We decide to work on the third subgoal.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2374
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2375
\isacommand{prefer}\ 3\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2376
\ 1.\ doubtful\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2377
\ 2.\ ok1\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2378
\ 3.\ ok2
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2379
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2380
If we manage to prove \isa{doubtful}, then we can work on the other
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2381
subgoals, confident that we are not wasting our time.  Finally we revise the
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2382
proof script to remove the \isacommand{prefer} command, since we needed it only to
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2383
focus our exploration.  The previous example is different: its use of
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2384
\isacommand{defer} stops trivial subgoals from cluttering the rest of the
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2385
proof.  Even there, we should consider proving \isa{hard} as a preliminary
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2386
lemma.  Always seek ways to streamline your proofs.
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2387
 
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2388
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2389
\medskip
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2390
Summary:
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2391
\begin{itemize}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2392
\item the control structures \isa+, \isa? and \isa| help express complicated proofs
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2393
\item the \isacommand{pr} command can limit the number of subgoals to display
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2394
\item the \isacommand{defer} and \isacommand{prefer} commands move a 
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2395
subgoal to the last or first position
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2396
\end{itemize}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2397
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2398
\begin{exercise}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2399
Explain the use of \isa? and \isa+ in this proof.
10967
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2400
\begin{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2401
\isacommand{lemma}\ "\isasymlbrakk P\isasymand Q\isasymlongrightarrow R;\ P\isasymlongrightarrow Q;\ P\isasymrbrakk \ \isasymLongrightarrow \ R"\isanewline
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2402
\isacommand{by}\ (drule\ mp,\ intro?,\ assumption+)+
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2403
\end{isabelle}
69937e62a28e arg_cong, tacticals, pr, defer, prefer
paulson
parents: 10887
diff changeset
  2404
\end{exercise}
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2405
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2406
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2407
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2408
\section{Proving the Correctness of Euclid's Algorithm}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2409
\label{sec:proving-euclid}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2410
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2411
\index{Euclid's algorithm|(}\index{*gcd (constant)|(}\index{divides relation|(}%
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2412
A brief development will demonstrate the techniques of this chapter,
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2413
including \isa{blast} applied with additional rules.  We shall also see
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2414
\isa{case_tac} used to perform a Boolean case split.
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2415
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2416
Let us prove that \isa{gcd} computes the greatest common
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2417
divisor of its two arguments.  
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2418
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2419
We use induction: \isa{gcd.induct} is the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2420
induction rule returned by \isa{recdef}.  We simplify using
11428
332347b9b942 tidying the index
paulson
parents: 11417
diff changeset
  2421
rules proved in {\S}\ref{sec:recdef-simplification}, since rewriting by the
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2422
definition of \isa{gcd} can loop.
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2423
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2424
\isacommand{lemma}\ gcd_dvd_both:\ "(gcd(m,n)\ dvd\ m)\ \isasymand\ (gcd(m,n)\ dvd\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2425
n)"
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2426
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2427
The induction formula must be a conjunction.  In the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2428
inductive step, each conjunct establishes the other. 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2429
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2430
\isacommand{apply}\ (induct_tac\ m\ n\ rule:\ gcd.induct)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2431
\ 1.\ \isasymAnd m\ n.\ n\ \isasymnoteq \ 0\ \isasymlongrightarrow \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2432
\isaindent{\ 1.\ \isasymAnd m\ n.\ }gcd\ (n,\ m\ mod\ n)\ dvd\ n\ \isasymand
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2433
\ gcd\ (n,\ m\ mod\ n)\ dvd\ m\ mod\ n\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2434
\isaindent{\ 1.\ \isasymAnd m\ n.\ }\isasymLongrightarrow\ gcd\ (m,\ n)\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2435
dvd\ m\ \isasymand \ gcd\ (m,\ n)\ dvd\ n%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2436
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2437
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2438
The conditional induction hypothesis suggests doing a case
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2439
analysis on \isa{n=0}.  We apply \methdx{case_tac} with type
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2440
\isa{bool} --- and not with a datatype, as we have done until now.  Since
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2441
\isa{nat} is a datatype, we could have written
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2442
\isa{case_tac~"n"} instead of \isa{case_tac~"n=0"}.  However, the definition
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2443
of \isa{gcd} makes a Boolean decision:
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2444
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2445
\ \ \ \ "gcd\ (m,n)\ =\ (if\ n=0\ then\ m\ else\ gcd(n,\ m\ mod\ n))"
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2446
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2447
Proofs about a function frequently follow the function's definition, so we perform
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2448
case analysis over the same formula.
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2449
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2450
\isacommand{apply}\ (case_tac\ "n=0")\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2451
\ 1.\ \isasymAnd m\ n.\ \isasymlbrakk n\ \isasymnoteq \ 0\ \isasymlongrightarrow \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2452
\isaindent{\ 1.\ \isasymAnd m\ n.\ \isasymlbrakk }gcd\ (n,\ m\ mod\ n)\ dvd\ n\ \isasymand \ gcd\ (n,\ m\ mod\ n)\ dvd\ m\ mod\ n;\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2453
\isaindent{\ 1.\ \isasymAnd m\ n.\ \ }n\ =\ 0\isasymrbrakk \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2454
\isaindent{\ 1.\ \isasymAnd m\ n.\ }\isasymLongrightarrow \ gcd\ (m,\ n)\ dvd\ m\ \isasymand \ gcd\ (m,\ n)\ dvd\ n\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2455
\ 2.\ \isasymAnd m\ n.\ \isasymlbrakk n\ \isasymnoteq \ 0\ \isasymlongrightarrow \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2456
\isaindent{\ 2.\ \isasymAnd m\ n.\ \isasymlbrakk }gcd\ (n,\ m\ mod\ n)\ dvd\ n\ \isasymand \ gcd\ (n,\ m\ mod\ n)\ dvd\ m\ mod\ n;\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2457
\isaindent{\ 2.\ \isasymAnd m\ n.\ \ }n\ \isasymnoteq \ 0\isasymrbrakk
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2458
\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2459
\isaindent{\ 2.\ \isasymAnd m\ n.\ }\isasymLongrightarrow \ gcd\ (m,\ n)\ dvd\ m\ \isasymand \ gcd\ (m,\ n)\ dvd\ n%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2460
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2461
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2462
Simplification leaves one subgoal: 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2463
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2464
\isacommand{apply}\ (simp_all)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2465
\ 1.\ \isasymAnd m\ n.\ \isasymlbrakk 0\ <\ n;\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2466
\isaindent{\ 1.\ \isasymAnd m\ n.\ \ }gcd\ (n,\ m\ mod\ n)\ dvd\ n\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2467
\isasymand \ gcd\ (n,\ m\ mod\ n)\ dvd\ m\ mod\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2468
n\isasymrbrakk \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2469
\isaindent{\ 1.\ \isasymAnd m\ n.\ }\isasymLongrightarrow \ gcd\ (n,\ m\ mod\ n)\ dvd\ m%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2470
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2471
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2472
Here, we can use \isa{blast}.  
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2473
One of the assumptions, the induction hypothesis, is a conjunction. 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2474
The two divides relationships it asserts are enough to prove 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2475
the conclusion, for we have the following theorem at our disposal: 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2476
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2477
\isasymlbrakk?k\ dvd\ (?m\ mod\ ?n){;}\ ?k\ dvd\ ?n\isasymrbrakk\ \isasymLongrightarrow\ ?k\ dvd\ ?m%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2478
\rulename{dvd_mod_imp_dvd}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2479
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2480
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2481
This theorem can be applied in various ways.  As an introduction rule, it
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2482
would cause backward chaining from  the conclusion (namely
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2483
\isa{?k~dvd~?m}) to the two premises, which 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2484
also involve the divides relation. This process does not look promising
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2485
and could easily loop.  More sensible is  to apply the rule in the forward
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2486
direction; each step would eliminate an occurrence of the \isa{mod} symbol, so the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2487
process must terminate.  
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2488
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2489
\isacommand{apply}\ (blast\ dest:\ dvd_mod_imp_dvd)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2490
\isacommand{done}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2491
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2492
Attaching the \attrdx{dest} attribute to \isa{dvd_mod_imp_dvd} tells
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2493
\isa{blast} to use it as destruction rule; that is, in the forward direction.
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2494
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2495
\medskip
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2496
We have proved a conjunction.  Now, let us give names to each of the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2497
two halves:
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2498
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2499
\isacommand{lemmas}\ gcd_dvd1\ [iff]\ =\ gcd_dvd_both\ [THEN\ conjunct1]\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2500
\isacommand{lemmas}\ gcd_dvd2\ [iff]\ =\ gcd_dvd_both\ [THEN\ conjunct2]%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2501
\end{isabelle}
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2502
Here we see \commdx{lemmas}
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2503
used with the \attrdx{iff} attribute, which supplies the new theorems to the
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2504
classical reasoner and the simplifier.  Recall that \attrdx{THEN} is
11080
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2505
frequently used with destruction rules; \isa{THEN conjunct1} extracts the
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2506
first half of a conjunctive theorem.  Given \isa{gcd_dvd_both} it yields
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2507
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2508
\ \ \ \ \ gcd\ (?m1,\ ?n1)\ dvd\ ?m1
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2509
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2510
The variable names \isa{?m1} and \isa{?n1} arise because
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2511
Isabelle renames schematic variables to prevent 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2512
clashes.  The second \isacommand{lemmas} declaration yields
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2513
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2514
\ \ \ \ \ gcd\ (?m1,\ ?n1)\ dvd\ ?n1
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2515
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2516
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2517
\medskip
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2518
To complete the verification of the \isa{gcd} function, we must 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2519
prove that it returns the greatest of all the common divisors 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2520
of its arguments.  The proof is by induction, case analysis and simplification.
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2521
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2522
\isacommand{lemma}\ gcd_greatest\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2523
[rule_format]:\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2524
\ \ \ \ \ \ \ "k\ dvd\ m\ \isasymlongrightarrow\ k\ dvd\ n\ \isasymlongrightarrow\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2525
k\ dvd\ gcd(m,n)"
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2526
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2527
%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2528
The goal is expressed using HOL implication,
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2529
\isa{\isasymlongrightarrow}, because the induction affects the two
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2530
preconditions.  The directive \isa{rule_format} tells Isabelle to replace
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2531
each \isa{\isasymlongrightarrow} by \isa{\isasymLongrightarrow} before
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2532
storing the eventual theorem.  This directive can also remove outer
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2533
universal quantifiers, converting the theorem into the usual format for
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2534
inference rules.  It can replace any series of applications of
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2535
\isa{THEN} to the rules \isa{mp} and \isa{spec}.  We did not have to
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2536
write this:
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2537
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2538
\ \ \ \ \ \isacommand{lemma}\ gcd_greatest\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2539
[THEN mp, THEN mp]:\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2540
\ \ \ \ \ \ \ \ \ \ \ \ "k\ dvd\ m\ \isasymlongrightarrow\ k\ dvd\ n\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2541
\isasymlongrightarrow\ k\ dvd\ gcd(m,n)"
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2542
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2543
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2544
Because we are again reasoning about \isa{gcd}, we perform the same
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2545
induction and case analysis as in the previous proof:
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2546
\begingroup\samepage
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2547
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2548
\isacommand{apply}\ (induct_tac\ m\ n\ rule:\ gcd.induct)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2549
\isacommand{apply}\ (case_tac\ "n=0")\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2550
\ 1.\ \isasymAnd m\ n.\ \isasymlbrakk n\ \isasymnoteq \ 0\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2551
\isasymlongrightarrow \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2552
\isaindent{\ 1.\ \isasymAnd m\ n.\ \isasymlbrakk }k\ dvd\ n\ \isasymlongrightarrow \ k\ dvd\ m\ mod\ n\ \isasymlongrightarrow \ k\ dvd\ gcd\ (n,\ m\ mod\ n);\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2553
\isaindent{\ 1.\ \isasymAnd m\ n.\ \ }n\ =\ 0\isasymrbrakk \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2554
\isaindent{\ 1.\ \isasymAnd m\ n.\ }\isasymLongrightarrow \ k\ dvd\ m\ \isasymlongrightarrow \ k\ dvd\ n\ \isasymlongrightarrow \ k\ dvd\ gcd\ (m,\ n)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2555
\ 2.\ \isasymAnd m\ n.\ \isasymlbrakk n\ \isasymnoteq \ 0\ \isasymlongrightarrow \isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2556
\isaindent{\ 2.\ \isasymAnd m\ n.\ \isasymlbrakk }k\ dvd\ n\ \isasymlongrightarrow \ k\ dvd\ m\ mod\ n\ \isasymlongrightarrow \ k\ dvd\ gcd\ (n,\ m\ mod\ n);\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2557
\isaindent{\ 2.\ \isasymAnd m\ n.\ \ }n\ \isasymnoteq \ 0\isasymrbrakk
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2558
\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2559
\isaindent{\ 2.\ \isasymAnd m\ n.\ }\isasymLongrightarrow \ k\ dvd\ m\ \isasymlongrightarrow \ k\ dvd\ n\ \isasymlongrightarrow \ k\ dvd\ gcd\ (m,\ n)
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2560
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2561
\endgroup
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2562
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2563
\noindent Simplification proves both subgoals. 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2564
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2565
\isacommand{apply}\ (simp_all\ add:\ dvd_mod)\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2566
\isacommand{done}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2567
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2568
In the first, where \isa{n=0}, the implication becomes trivial: \isa{k\ dvd\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2569
gcd\ (m,\ n)} goes to~\isa{k\ dvd\ m}.  The second subgoal is proved by
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2570
an unfolding of \isa{gcd}, using this rule about divides:
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2571
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2572
\isasymlbrakk ?f\ dvd\ ?m;\ ?f\ dvd\ ?n\isasymrbrakk \
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2573
\isasymLongrightarrow \ ?f\ dvd\ ?m\ mod\ ?n%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2574
\rulename{dvd_mod}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2575
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2576
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2577
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2578
\medskip
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2579
The facts proved above can be summarized as a single logical 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2580
equivalence.  This step gives us a chance to see another application
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2581
of \isa{blast}.
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2582
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2583
\isacommand{theorem}\ gcd_greatest_iff\ [iff]:\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2584
\ \ \ \ \ \ \ \ \ "(k\ dvd\ gcd(m,n))\ =\ (k\ dvd\ m\ \isasymand\ k\ dvd\
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2585
n)"\isanewline
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2586
\isacommand{by}\ (blast\ intro!:\ gcd_greatest\ intro:\ dvd_trans)
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2587
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2588
This theorem concisely expresses the correctness of the \isa{gcd} 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2589
function. 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2590
We state it with the \isa{iff} attribute so that 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2591
Isabelle can use it to remove some occurrences of \isa{gcd}. 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2592
The theorem has a one-line 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2593
proof using \isa{blast} supplied with two additional introduction 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2594
rules. The exclamation mark 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2595
({\isa{intro}}{\isa{!}})\ signifies safe rules, which are 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2596
applied aggressively.  Rules given without the exclamation mark 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2597
are applied reluctantly and their uses can be undone if 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2598
the search backtracks.  Here the unsafe rule expresses transitivity  
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2599
of the divides relation:
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2600
\begin{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2601
\isasymlbrakk?m\ dvd\ ?n;\ ?n\ dvd\ ?p\isasymrbrakk\ \isasymLongrightarrow\ ?m\ dvd\ ?p%
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2602
\rulename{dvd_trans}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2603
\end{isabelle}
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2604
Applying \isa{dvd_trans} as 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2605
an introduction rule entails a risk of looping, for it multiplies 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2606
occurrences of the divides symbol. However, this proof relies 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2607
on transitivity reasoning.  The rule {\isa{gcd\_greatest}} is safe to apply 
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2608
aggressively because it yields simpler subgoals.  The proof implicitly
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2609
uses \isa{gcd_dvd1} and \isa{gcd_dvd2} as safe rules, because they were
22855d091249 various revisions in response to comments from Tobias
paulson
parents: 11077
diff changeset
  2610
declared using \isa{iff}.%
11406
2b17622e1929 indexing and tweaks
paulson
parents: 11300
diff changeset
  2611
\index{Euclid's algorithm|)}\index{*gcd (constant)|)}\index{divides relation|)}