doc-src/TutorialI/ToyList/ToyList.thy
author paulson
Mon, 23 Oct 2000 17:38:07 +0200
changeset 10302 74be38751d06
parent 10236 7626cb4e1407
child 10328 bf33cbd76c05
permissions -rw-r--r--
fixed crossref
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     1
theory ToyList = PreList:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     2
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     3
text{*\noindent
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
     4
HOL already has a predefined theory of lists called @{text"List"} ---
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
     5
@{text"ToyList"} is merely a small fragment of it chosen as an example. In
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     6
contrast to what is recommended in \S\ref{sec:Basic:Theories},
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
     7
@{text"ToyList"} is not based on @{text"Main"} but on @{text"PreList"}, a
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     8
theory that contains pretty much everything but lists, thus avoiding
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     9
ambiguities caused by defining lists twice.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    10
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    11
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    12
datatype 'a list = Nil                          ("[]")
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    13
                 | Cons 'a "'a list"            (infixr "#" 65);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    14
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    15
text{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    16
The datatype\index{*datatype} \isaindexbold{list} introduces two
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    17
constructors \isaindexbold{Nil} and \isaindexbold{Cons}, the
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    18
empty~list and the operator that adds an element to the front of a list. For
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    19
example, the term \isa{Cons True (Cons False Nil)} is a value of
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    20
type @{typ"bool list"}, namely the list with the elements @{term"True"} and
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    21
@{term"False"}. Because this notation becomes unwieldy very quickly, the
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    22
datatype declaration is annotated with an alternative syntax: instead of
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    23
@{term[source]Nil} and \isa{Cons x xs} we can write
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    24
@{term"[]"}\index{$HOL2list@\texttt{[]}|bold} and
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    25
@{term"x # xs"}\index{$HOL2list@\texttt{\#}|bold}. In fact, this
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    26
alternative syntax is the standard syntax. Thus the list \isa{Cons True
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    27
(Cons False Nil)} becomes @{term"True # False # []"}. The annotation
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    28
\isacommand{infixr}\indexbold{*infixr} means that @{text"#"} associates to
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    29
the right, i.e.\ the term @{term"x # y # z"} is read as @{text"x # (y # z)"}
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    30
and not as @{text"(x # y) # z"}.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    31
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    32
\begin{warn}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    33
  Syntax annotations are a powerful but completely optional feature. You
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    34
  could drop them from theory @{text"ToyList"} and go back to the identifiers
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    35
  @{term[source]Nil} and @{term[source]Cons}. However, lists are such a
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    36
  central datatype
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    37
  that their syntax is highly customized. We recommend that novices should
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    38
  not use syntax annotations in their own theories.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    39
\end{warn}
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    40
Next, two functions @{text"app"} and \isaindexbold{rev} are declared:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    41
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    42
10236
7626cb4e1407 *** empty log message ***
nipkow
parents: 10171
diff changeset
    43
consts app :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list"   (infixr "@" 65)
7626cb4e1407 *** empty log message ***
nipkow
parents: 10171
diff changeset
    44
       rev :: "'a list \<Rightarrow> 'a list";
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    45
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    46
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    47
\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    48
In contrast to ML, Isabelle insists on explicit declarations of all functions
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    49
(keyword \isacommand{consts}).  (Apart from the declaration-before-use
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    50
restriction, the order of items in a theory file is unconstrained.) Function
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    51
@{term"app"} is annotated with concrete syntax too. Instead of the prefix
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    52
syntax \isa{app xs ys} the infix
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
    53
@{term"xs @ ys"}\index{$HOL2list@\texttt{\at}|bold} becomes the preferred
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    54
form. Both functions are defined recursively:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    55
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    56
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    57
primrec
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    58
"[] @ ys       = ys"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    59
"(x # xs) @ ys = x # (xs @ ys)";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    60
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    61
primrec
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    62
"rev []        = []"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    63
"rev (x # xs)  = (rev xs) @ (x # [])";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    64
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    65
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    66
\noindent
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    67
The equations for @{term"app"} and @{term"rev"} hardly need comments:
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
    68
@{term"app"} appends two lists and @{term"rev"} reverses a list.  The keyword
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    69
\isacommand{primrec}\index{*primrec} indicates that the recursion is of a
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    70
particularly primitive kind where each recursive call peels off a datatype
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    71
constructor from one of the arguments.  Thus the
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    72
recursion always terminates, i.e.\ the function is \bfindex{total}.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    73
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    74
The termination requirement is absolutely essential in HOL, a logic of total
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    75
functions. If we were to drop it, inconsistencies would quickly arise: the
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    76
``definition'' $f(n) = f(n)+1$ immediately leads to $0 = 1$ by subtracting
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    77
$f(n)$ on both sides.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    78
% However, this is a subtle issue that we cannot discuss here further.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    79
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    80
\begin{warn}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    81
  As we have indicated, the desire for total functions is not a gratuitously
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    82
  imposed restriction but an essential characteristic of HOL. It is only
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    83
  because of totality that reasoning in HOL is comparatively easy.  More
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    84
  generally, the philosophy in HOL is not to allow arbitrary axioms (such as
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    85
  function definitions whose totality has not been proved) because they
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    86
  quickly lead to inconsistencies. Instead, fixed constructs for introducing
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    87
  types and functions are offered (such as \isacommand{datatype} and
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    88
  \isacommand{primrec}) which are guaranteed to preserve consistency.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    89
\end{warn}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    90
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    91
A remark about syntax.  The textual definition of a theory follows a fixed
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    92
syntax with keywords like \isacommand{datatype} and \isacommand{end} (see
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    93
Fig.~\ref{fig:keywords} in Appendix~\ref{sec:Appendix} for a full list).
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    94
Embedded in this syntax are the types and formulae of HOL, whose syntax is
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    95
extensible, e.g.\ by new user-defined infix operators
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    96
(see~\ref{sec:infix-syntax}). To distinguish the two levels, everything
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    97
HOL-specific (terms and types) should be enclosed in
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    98
\texttt{"}\dots\texttt{"}. 
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    99
To lessen this burden, quotation marks around a single identifier can be
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   100
dropped, unless the identifier happens to be a keyword, as in
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   101
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   102
10236
7626cb4e1407 *** empty log message ***
nipkow
parents: 10171
diff changeset
   103
consts "end" :: "'a list \<Rightarrow> 'a"
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   104
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   105
text{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   106
When Isabelle prints a syntax error message, it refers to the HOL syntax as
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
   107
the \bfindex{inner syntax} and the enclosing theory language as the \bfindex{outer syntax}.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   108
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   109
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   110
\section{An introductory proof}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   111
\label{sec:intro-proof}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   112
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   113
Assuming you have input the declarations and definitions of \texttt{ToyList}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   114
presented so far, we are ready to prove a few simple theorems. This will
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   115
illustrate not just the basic proof commands but also the typical proof
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   116
process.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   117
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   118
\subsubsection*{Main goal: @{text"rev(rev xs) = xs"}}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   119
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   120
Our goal is to show that reversing a list twice produces the original
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   121
list. The input line
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   122
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   123
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   124
theorem rev_rev [simp]: "rev(rev xs) = xs";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   125
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
   126
txt{*\index{*theorem|bold}\index{*simp (attribute)|bold}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   127
\begin{itemize}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   128
\item
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   129
establishes a new theorem to be proved, namely @{prop"rev(rev xs) = xs"},
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   130
\item
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   131
gives that theorem the name @{text"rev_rev"} by which it can be
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   132
referred to,
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   133
\item
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   134
and tells Isabelle (via @{text"[simp]"}) to use the theorem (once it has been
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   135
proved) as a simplification rule, i.e.\ all future proofs involving
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   136
simplification will replace occurrences of @{term"rev(rev xs)"} by
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   137
@{term"xs"}.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   138
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   139
The name and the simplification attribute are optional.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   140
\end{itemize}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   141
Isabelle's response is to print
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   142
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   143
proof(prove):~step~0\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   144
\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   145
goal~(theorem~rev\_rev):\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   146
rev~(rev~xs)~=~xs\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   147
~1.~rev~(rev~xs)~=~xs
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   148
\end{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   149
The first three lines tell us that we are 0 steps into the proof of
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   150
theorem @{text"rev_rev"}; for compactness reasons we rarely show these
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   151
initial lines in this tutorial. The remaining lines display the current
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   152
proof state.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   153
Until we have finished a proof, the proof state always looks like this:
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   154
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   155
$G$\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   156
~1.~$G\sb{1}$\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   157
~~\vdots~~\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   158
~$n$.~$G\sb{n}$
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   159
\end{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   160
where $G$
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   161
is the overall goal that we are trying to prove, and the numbered lines
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   162
contain the subgoals $G\sb{1}$, \dots, $G\sb{n}$ that we need to prove to
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   163
establish $G$. At @{text"step 0"} there is only one subgoal, which is
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   164
identical with the overall goal.  Normally $G$ is constant and only serves as
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   165
a reminder. Hence we rarely show it in this tutorial.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   166
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   167
Let us now get back to @{prop"rev(rev xs) = xs"}. Properties of recursively
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   168
defined functions are best established by induction. In this case there is
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   169
not much choice except to induct on @{term"xs"}:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   170
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   171
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   172
apply(induct_tac xs);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   173
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   174
txt{*\noindent\index{*induct_tac}%
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   175
This tells Isabelle to perform induction on variable @{term"xs"}. The suffix
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   176
@{term"tac"} stands for ``tactic'', a synonym for ``theorem proving function''.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   177
By default, induction acts on the first subgoal. The new proof state contains
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   178
two subgoals, namely the base case (@{term[source]Nil}) and the induction step
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   179
(@{term[source]Cons}):
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   180
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   181
~1.~rev~(rev~[])~=~[]\isanewline
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   182
~2.~{\isasymAnd}a~list.~rev(rev~list)~=~list~{\isasymLongrightarrow}~rev(rev(a~\#~list))~=~a~\#~list
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   183
\end{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   184
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   185
The induction step is an example of the general format of a subgoal:
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   186
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   187
~$i$.~{\indexboldpos{\isasymAnd}{$IsaAnd}}$x\sb{1}$~\dots~$x\sb{n}$.~{\it assumptions}~{\isasymLongrightarrow}~{\it conclusion}
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   188
\end{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   189
The prefix of bound variables \isasymAnd$x\sb{1}$~\dots~$x\sb{n}$ can be
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   190
ignored most of the time, or simply treated as a list of variables local to
10302
74be38751d06 fixed crossref
paulson
parents: 10236
diff changeset
   191
this subgoal. Their deeper significance is explained in Chapter~\ref{chap:rules}.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   192
The {\it assumptions} are the local assumptions for this subgoal and {\it
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   193
  conclusion} is the actual proposition to be proved. Typical proof steps
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   194
that add new assumptions are induction or case distinction. In our example
9541
d17c0b34d5c8 *** empty log message ***
nipkow
parents: 9494
diff changeset
   195
the only assumption is the induction hypothesis @{term"rev (rev list) =
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   196
  list"}, where @{term"list"} is a variable name chosen by Isabelle. If there
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   197
are multiple assumptions, they are enclosed in the bracket pair
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   198
\indexboldpos{\isasymlbrakk}{$Isabrl} and
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   199
\indexboldpos{\isasymrbrakk}{$Isabrr} and separated by semicolons.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   200
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   201
Let us try to solve both goals automatically:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   202
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   203
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   204
apply(auto);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   205
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   206
txt{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   207
This command tells Isabelle to apply a proof strategy called
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   208
@{text"auto"} to all subgoals. Essentially, @{text"auto"} tries to
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   209
``simplify'' the subgoals.  In our case, subgoal~1 is solved completely (thanks
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   210
to the equation @{prop"rev [] = []"}) and disappears; the simplified version
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   211
of subgoal~2 becomes the new subgoal~1:
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   212
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   213
~1.~\dots~rev(rev~list)~=~list~{\isasymLongrightarrow}~rev(rev~list~@~a~\#~[])~=~a~\#~list
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   214
\end{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   215
In order to simplify this subgoal further, a lemma suggests itself.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   216
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   217
(*<*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   218
oops
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   219
(*>*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   220
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   221
subsubsection{*First lemma: @{text"rev(xs @ ys) = (rev ys) @ (rev xs)"}*}
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   222
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   223
text{*
9494
44fefb6e9994 *** empty log message ***
nipkow
parents: 9458
diff changeset
   224
After abandoning the above proof attempt\indexbold{abandon
44fefb6e9994 *** empty log message ***
nipkow
parents: 9458
diff changeset
   225
proof}\indexbold{proof!abandon} (at the shell level type
44fefb6e9994 *** empty log message ***
nipkow
parents: 9458
diff changeset
   226
\isacommand{oops}\indexbold{*oops}) we start a new proof:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   227
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   228
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   229
lemma rev_app [simp]: "rev(xs @ ys) = (rev ys) @ (rev xs)";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   230
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   231
txt{*\noindent The keywords \isacommand{theorem}\index{*theorem} and
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   232
\isacommand{lemma}\indexbold{*lemma} are interchangable and merely indicate
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   233
the importance we attach to a proposition. In general, we use the words
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   234
\emph{theorem}\index{theorem} and \emph{lemma}\index{lemma} pretty much
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   235
interchangeably.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   236
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   237
There are two variables that we could induct on: @{term"xs"} and
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   238
@{term"ys"}. Because @{text"@"} is defined by recursion on
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   239
the first argument, @{term"xs"} is the correct one:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   240
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   241
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   242
apply(induct_tac xs);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   243
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   244
txt{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   245
This time not even the base case is solved automatically:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   246
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   247
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   248
apply(auto);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   249
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   250
txt{*
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   251
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   252
~1.~rev~ys~=~rev~ys~@~[]\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   253
~2. \dots
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   254
\end{isabelle}
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
   255
Again, we need to abandon this proof attempt and prove another simple lemma first.
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
   256
In the future the step of abandoning an incomplete proof before embarking on
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
   257
the proof of a lemma usually remains implicit.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   258
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   259
(*<*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   260
oops
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   261
(*>*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   262
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   263
subsubsection{*Second lemma: @{text"xs @ [] = xs"}*}
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   264
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   265
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   266
This time the canonical proof procedure
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   267
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   268
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   269
lemma app_Nil2 [simp]: "xs @ [] = xs";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   270
apply(induct_tac xs);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   271
apply(auto);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   272
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   273
txt{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   274
\noindent
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   275
leads to the desired message @{text"No subgoals!"}:
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   276
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   277
xs~@~[]~=~xs\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   278
No~subgoals!
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   279
\end{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   280
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   281
We still need to confirm that the proof is now finished:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   282
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   283
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   284
done
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   285
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   286
text{*\noindent\indexbold{done}%
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   287
As a result of that final \isacommand{done}, Isabelle associates the lemma just proved
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   288
with its name. In this tutorial, we sometimes omit to show that final \isacommand{done}
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   289
if it is obvious from the context that the proof is finished.
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   290
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   291
% Instead of \isacommand{apply} followed by a dot, you can simply write
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   292
% \isacommand{by}\indexbold{by}, which we do most of the time.
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   293
Notice that in lemma @{thm[source]app_Nil2}
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   294
(as printed out after the final \isacommand{done}) the free variable @{term"xs"} has been
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   295
replaced by the unknown @{text"?xs"}, just as explained in
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   296
\S\ref{sec:variables}.
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   297
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   298
Going back to the proof of the first lemma
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   299
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   300
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   301
lemma rev_app [simp]: "rev(xs @ ys) = (rev ys) @ (rev xs)";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   302
apply(induct_tac xs);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   303
apply(auto);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   304
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   305
txt{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   306
\noindent
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   307
we find that this time @{text"auto"} solves the base case, but the
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   308
induction step merely simplifies to
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   309
\begin{isabelle}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   310
~1.~{\isasymAnd}a~list.\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   311
~~~~~~~rev~(list~@~ys)~=~rev~ys~@~rev~list~{\isasymLongrightarrow}\isanewline
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   312
~~~~~~~(rev~ys~@~rev~list)~@~a~\#~[]~=~rev~ys~@~rev~list~@~a~\#~[]
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   313
\end{isabelle}
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   314
Now we need to remember that @{text"@"} associates to the right, and that
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   315
@{text"#"} and @{text"@"} have the same priority (namely the @{text"65"}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   316
in their \isacommand{infixr} annotation). Thus the conclusion really is
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   317
\begin{isabelle}
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   318
~~~~~(rev~ys~@~rev~list)~@~(a~\#~[])~=~rev~ys~@~(rev~list~@~(a~\#~[]))
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   319
\end{isabelle}
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   320
and the missing lemma is associativity of @{text"@"}.
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   321
*}
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   322
(*<*)oops(*>*)
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   323
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   324
subsubsection{*Third lemma: @{text"(xs @ ys) @ zs = xs @ (ys @ zs)"}*}
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   325
9723
a977245dfc8a *** empty log message ***
nipkow
parents: 9541
diff changeset
   326
text{*
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   327
Abandoning the previous proof, the canonical proof procedure
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   328
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   329
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   330
lemma app_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   331
apply(induct_tac xs);
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   332
apply(auto);
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   333
done
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   334
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   335
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   336
\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   337
succeeds without further ado.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   338
Now we can go back and prove the first lemma
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   339
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   340
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   341
lemma rev_app [simp]: "rev(xs @ ys) = (rev ys) @ (rev xs)";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   342
apply(induct_tac xs);
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   343
apply(auto);
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   344
done
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   345
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   346
text{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   347
and then solve our main theorem:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   348
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   349
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   350
theorem rev_rev [simp]: "rev(rev xs) = xs";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   351
apply(induct_tac xs);
10171
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   352
apply(auto);
59d6633835fa *** empty log message ***
nipkow
parents: 9792
diff changeset
   353
done
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   354
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   355
text{*\noindent
9792
bbefb6ce5cb2 *** empty log message ***
nipkow
parents: 9723
diff changeset
   356
The final \isacommand{end} tells Isabelle to close the current theory because
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   357
we are finished with its development:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   358
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   359
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   360
end