doc-src/TutorialI/Advanced/document/WFrec.tex
author wenzelm
Fri, 28 Sep 2001 19:18:46 +0200
changeset 11627 abf9cda4a4d2
parent 11494 23a118849801
child 11636 0bec857c9871
permissions -rw-r--r--
updated;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10187
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     1
%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     2
\begin{isabellebody}%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     3
\def\isabellecontext{WFrec}%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     4
%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     5
\begin{isamarkuptext}%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     6
\noindent
11161
166f7d87b37f *** empty log message ***
nipkow
parents: 10878
diff changeset
     7
So far, all recursive definitions were shown to terminate via measure
11494
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
     8
functions. Sometimes this can be inconvenient or
10187
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
     9
impossible. Fortunately, \isacommand{recdef} supports much more
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    10
general definitions. For example, termination of Ackermann's function
10654
458068404143 *** empty log message ***
nipkow
parents: 10577
diff changeset
    11
can be shown by means of the \rmindex{lexicographic product} \isa{{\isacharless}{\isacharasterisk}lex{\isacharasterisk}{\isachargreater}}:%
10187
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    12
\end{isamarkuptext}%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    13
\isacommand{consts}\ ack\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}nat{\isasymtimes}nat\ {\isasymRightarrow}\ nat{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    14
\isacommand{recdef}\ ack\ {\isachardoublequote}measure{\isacharparenleft}{\isasymlambda}m{\isachardot}\ m{\isacharparenright}\ {\isacharless}{\isacharasterisk}lex{\isacharasterisk}{\isachargreater}\ measure{\isacharparenleft}{\isasymlambda}n{\isachardot}\ n{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    15
\ \ {\isachardoublequote}ack{\isacharparenleft}{\isadigit{0}}{\isacharcomma}n{\isacharparenright}\ \ \ \ \ \ \ \ \ {\isacharequal}\ Suc\ n{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    16
\ \ {\isachardoublequote}ack{\isacharparenleft}Suc\ m{\isacharcomma}{\isadigit{0}}{\isacharparenright}\ \ \ \ \ {\isacharequal}\ ack{\isacharparenleft}m{\isacharcomma}\ {\isadigit{1}}{\isacharparenright}{\isachardoublequote}\isanewline
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    17
\ \ {\isachardoublequote}ack{\isacharparenleft}Suc\ m{\isacharcomma}Suc\ n{\isacharparenright}\ {\isacharequal}\ ack{\isacharparenleft}m{\isacharcomma}ack{\isacharparenleft}Suc\ m{\isacharcomma}n{\isacharparenright}{\isacharparenright}{\isachardoublequote}%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    18
\begin{isamarkuptext}%
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    19
\noindent
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    20
The lexicographic product decreases if either its first component
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    21
decreases (as in the second equation and in the outer call in the
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    22
third equation) or its first component stays the same and the second
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    23
component decreases (as in the inner call in the third equation).
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    24
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    25
In general, \isacommand{recdef} supports termination proofs based on
10396
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    26
arbitrary well-founded relations as introduced in \S\ref{sec:Well-founded}.
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    27
This is called \textbf{well-founded
11494
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    28
recursion}\indexbold{recursion!well-founded}.  A function definition
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    29
is total if and only if the set of 
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    30
all pairs $(r,l)$, where $l$ is the argument on the
10396
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    31
left-hand side of an equation and $r$ the argument of some recursive call on
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    32
the corresponding right-hand side, induces a well-founded relation.  For a
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    33
systematic account of termination proofs via well-founded relations see, for
10878
b254d5ad6dd4 auto update
paulson
parents: 10842
diff changeset
    34
example, Baader and Nipkow~\cite{Baader-Nipkow}.
10187
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    35
11494
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    36
Each \isacommand{recdef} definition should be accompanied (after the function's
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    37
name) by a well-founded relation on the function's argument type.  
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    38
Isabelle/HOL formalizes some of the most important
10396
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    39
constructions of well-founded relations (see \S\ref{sec:Well-founded}). For
11494
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    40
example, \isa{measure\ f} is always well-founded.   The lexicographic
10396
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    41
product of two well-founded relations is again well-founded, which we relied
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    42
on when defining Ackermann's function above.
11308
b28bbb153603 *** empty log message ***
nipkow
parents: 11196
diff changeset
    43
Of course the lexicographic product can also be iterated:%
10189
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    44
\end{isamarkuptext}%
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    45
\isacommand{consts}\ contrived\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}nat\ {\isasymtimes}\ nat\ {\isasymtimes}\ nat\ {\isasymRightarrow}\ nat{\isachardoublequote}\isanewline
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    46
\isacommand{recdef}\ contrived\isanewline
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    47
\ \ {\isachardoublequote}measure{\isacharparenleft}{\isasymlambda}i{\isachardot}\ i{\isacharparenright}\ {\isacharless}{\isacharasterisk}lex{\isacharasterisk}{\isachargreater}\ measure{\isacharparenleft}{\isasymlambda}j{\isachardot}\ j{\isacharparenright}\ {\isacharless}{\isacharasterisk}lex{\isacharasterisk}{\isachargreater}\ measure{\isacharparenleft}{\isasymlambda}k{\isachardot}\ k{\isacharparenright}{\isachardoublequote}\isanewline
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    48
{\isachardoublequote}contrived{\isacharparenleft}i{\isacharcomma}j{\isacharcomma}Suc\ k{\isacharparenright}\ {\isacharequal}\ contrived{\isacharparenleft}i{\isacharcomma}j{\isacharcomma}k{\isacharparenright}{\isachardoublequote}\isanewline
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    49
{\isachardoublequote}contrived{\isacharparenleft}i{\isacharcomma}Suc\ j{\isacharcomma}{\isadigit{0}}{\isacharparenright}\ {\isacharequal}\ contrived{\isacharparenleft}i{\isacharcomma}j{\isacharcomma}j{\isacharparenright}{\isachardoublequote}\isanewline
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    50
{\isachardoublequote}contrived{\isacharparenleft}Suc\ i{\isacharcomma}{\isadigit{0}}{\isacharcomma}{\isadigit{0}}{\isacharparenright}\ {\isacharequal}\ contrived{\isacharparenleft}i{\isacharcomma}i{\isacharcomma}i{\isacharparenright}{\isachardoublequote}\isanewline
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    51
{\isachardoublequote}contrived{\isacharparenleft}{\isadigit{0}}{\isacharcomma}{\isadigit{0}}{\isacharcomma}{\isadigit{0}}{\isacharparenright}\ \ \ \ \ {\isacharequal}\ {\isadigit{0}}{\isachardoublequote}%
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    52
\begin{isamarkuptext}%
10396
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    53
Lexicographic products of measure functions already go a long
10878
b254d5ad6dd4 auto update
paulson
parents: 10842
diff changeset
    54
way. Furthermore, you may embed a type in an
10396
5ab08609e6c8 *** empty log message ***
nipkow
parents: 10241
diff changeset
    55
existing well-founded relation via the inverse image construction \isa{inv{\isacharunderscore}image}. All these constructions are known to \isacommand{recdef}. Thus you
10241
e0428c2778f1 wellfounded -> well-founded
paulson
parents: 10190
diff changeset
    56
will never have to prove well-foundedness of any relation composed
10189
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    57
solely of these building blocks. But of course the proof of
11494
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    58
termination of your function definition --- that the arguments
23a118849801 revisions and indexing
paulson
parents: 11429
diff changeset
    59
decrease with every recursive call --- may still require you to provide
10189
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    60
additional lemmas.
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    61
10842
4649e5e3905d auto update
paulson
parents: 10795
diff changeset
    62
It is also possible to use your own well-founded relations with
4649e5e3905d auto update
paulson
parents: 10795
diff changeset
    63
\isacommand{recdef}.  For example, the greater-than relation can be made
4649e5e3905d auto update
paulson
parents: 10795
diff changeset
    64
well-founded by cutting it off at a certain point.  Here is an example
4649e5e3905d auto update
paulson
parents: 10795
diff changeset
    65
of a recursive function that calls itself with increasing values up to ten:%
10187
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    66
\end{isamarkuptext}%
10189
865918597b63 *** empty log message ***
nipkow
parents: 10187
diff changeset
    67
\isacommand{consts}\ f\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}nat\ {\isasymRightarrow}\ nat{\isachardoublequote}\isanewline
11627
abf9cda4a4d2 updated;
wenzelm
parents: 11494
diff changeset
    68
\isacommand{recdef}\ \end{isabellebody}%
10187
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    69
%%% Local Variables:
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    70
%%% mode: latex
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    71
%%% TeX-master: "root"
0376cccd9118 *** empty log message ***
nipkow
parents:
diff changeset
    72
%%% End: