| 10654 |      1 | %
 | 
|  |      2 | \begin{isabellebody}%
 | 
|  |      3 | \def\isabellecontext{Partial}%
 | 
| 11866 |      4 | \isamarkupfalse%
 | 
| 10654 |      5 | %
 | 
|  |      6 | \begin{isamarkuptext}%
 | 
| 11494 |      7 | \noindent Throughout this tutorial, we have emphasized
 | 
|  |      8 | that all functions in HOL are total.  We cannot hope to define
 | 
| 11310 |      9 | truly partial functions, but must make them total.  A straightforward
 | 
|  |     10 | method is to lift the result type of the function from $\tau$ to
 | 
| 11277 |     11 | $\tau$~\isa{option} (see \ref{sec:option}), where \isa{None} is
 | 
|  |     12 | returned if the function is applied to an argument not in its
 | 
|  |     13 | domain. Function \isa{assoc} in \S\ref{sec:Trie} is a simple example.
 | 
|  |     14 | We do not pursue this schema further because it should be clear
 | 
|  |     15 | how it works. Its main drawback is that the result of such a lifted
 | 
|  |     16 | function has to be unpacked first before it can be processed
 | 
|  |     17 | further. Its main advantage is that you can distinguish if the
 | 
|  |     18 | function was applied to an argument in its domain or not. If you do
 | 
|  |     19 | not need to make this distinction, for example because the function is
 | 
|  |     20 | never used outside its domain, it is easier to work with
 | 
| 11428 |     21 | \emph{underdefined}\index{functions!underdefined} functions: for
 | 
| 11277 |     22 | certain arguments we only know that a result exists, but we do not
 | 
|  |     23 | know what it is. When defining functions that are normally considered
 | 
|  |     24 | partial, underdefinedness turns out to be a very reasonable
 | 
|  |     25 | alternative.
 | 
| 10654 |     26 | 
 | 
|  |     27 | We have already seen an instance of underdefinedness by means of
 | 
|  |     28 | non-exhaustive pattern matching: the definition of \isa{last} in
 | 
|  |     29 | \S\ref{sec:recdef-examples}. The same is allowed for \isacommand{primrec}%
 | 
|  |     30 | \end{isamarkuptext}%
 | 
| 11866 |     31 | \isamarkuptrue%
 | 
| 10654 |     32 | \isacommand{consts}\ hd\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharprime}a\ list\ {\isasymRightarrow}\ {\isacharprime}a{\isachardoublequote}\isanewline
 | 
| 11866 |     33 | \isamarkupfalse%
 | 
|  |     34 | \isacommand{primrec}\ {\isachardoublequote}hd\ {\isacharparenleft}x{\isacharhash}xs{\isacharparenright}\ {\isacharequal}\ x{\isachardoublequote}\isamarkupfalse%
 | 
|  |     35 | %
 | 
| 10654 |     36 | \begin{isamarkuptext}%
 | 
|  |     37 | \noindent
 | 
|  |     38 | although it generates a warning.
 | 
|  |     39 | Even ordinary definitions allow underdefinedness, this time by means of
 | 
|  |     40 | preconditions:%
 | 
|  |     41 | \end{isamarkuptext}%
 | 
| 11866 |     42 | \isamarkuptrue%
 | 
| 10654 |     43 | \isacommand{constdefs}\ minus\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}nat\ {\isasymRightarrow}\ nat\ {\isasymRightarrow}\ nat{\isachardoublequote}\isanewline
 | 
| 11866 |     44 | {\isachardoublequote}n\ {\isasymle}\ m\ {\isasymLongrightarrow}\ minus\ m\ n\ {\isasymequiv}\ m\ {\isacharminus}\ n{\isachardoublequote}\isamarkupfalse%
 | 
|  |     45 | %
 | 
| 10654 |     46 | \begin{isamarkuptext}%
 | 
|  |     47 | The rest of this section is devoted to the question of how to define
 | 
| 11256 |     48 | partial recursive functions by other means than non-exhaustive pattern
 | 
| 10654 |     49 | matching.%
 | 
|  |     50 | \end{isamarkuptext}%
 | 
| 11866 |     51 | \isamarkuptrue%
 | 
| 10654 |     52 | %
 | 
| 10878 |     53 | \isamarkupsubsubsection{Guarded Recursion%
 | 
| 10654 |     54 | }
 | 
| 11866 |     55 | \isamarkuptrue%
 | 
| 10654 |     56 | %
 | 
|  |     57 | \begin{isamarkuptext}%
 | 
| 11494 |     58 | \index{recursion!guarded}%
 | 
| 10654 |     59 | Neither \isacommand{primrec} nor \isacommand{recdef} allow to
 | 
|  |     60 | prefix an equation with a condition in the way ordinary definitions do
 | 
|  |     61 | (see \isa{minus} above). Instead we have to move the condition over
 | 
|  |     62 | to the right-hand side of the equation. Given a partial function $f$
 | 
|  |     63 | that should satisfy the recursion equation $f(x) = t$ over its domain
 | 
|  |     64 | $dom(f)$, we turn this into the \isacommand{recdef}
 | 
|  |     65 | \begin{isabelle}%
 | 
|  |     66 | \ \ \ \ \ f\ x\ {\isacharequal}\ {\isacharparenleft}if\ x\ {\isasymin}\ dom\ f\ then\ t\ else\ arbitrary{\isacharparenright}%
 | 
|  |     67 | \end{isabelle}
 | 
|  |     68 | where \isa{arbitrary} is a predeclared constant of type \isa{{\isacharprime}a}
 | 
|  |     69 | which has no definition. Thus we know nothing about its value,
 | 
|  |     70 | which is ideal for specifying underdefined functions on top of it.
 | 
|  |     71 | 
 | 
|  |     72 | As a simple example we define division on \isa{nat}:%
 | 
|  |     73 | \end{isamarkuptext}%
 | 
| 11866 |     74 | \isamarkuptrue%
 | 
| 10654 |     75 | \isacommand{consts}\ divi\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}nat\ {\isasymtimes}\ nat\ {\isasymRightarrow}\ nat{\isachardoublequote}\isanewline
 | 
| 11866 |     76 | \isamarkupfalse%
 | 
| 12334 |     77 | \isacommand{recdef}\ divi\ {\isachardoublequote}measure{\isacharparenleft}{\isasymlambda}{\isacharparenleft}m{\isacharcomma}n{\isacharparenright}{\isachardot}\ m{\isacharparenright}{\isachardoublequote}\isanewline
 | 
|  |     78 | \ \ {\isachardoublequote}divi{\isacharparenleft}m{\isacharcomma}{\isadigit{0}}{\isacharparenright}\ {\isacharequal}\ arbitrary{\isachardoublequote}\isanewline
 | 
|  |     79 | \ \ {\isachardoublequote}divi{\isacharparenleft}m{\isacharcomma}n{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}if\ m\ {\isacharless}\ n\ then\ {\isadigit{0}}\ else\ divi{\isacharparenleft}m{\isacharminus}n{\isacharcomma}n{\isacharparenright}{\isacharplus}{\isadigit{1}}{\isacharparenright}{\isachardoublequote}\isamarkupfalse%
 | 
| 11866 |     80 | %
 | 
| 10654 |     81 | \begin{isamarkuptext}%
 | 
|  |     82 | \noindent Of course we could also have defined
 | 
|  |     83 | \isa{divi\ {\isacharparenleft}m{\isacharcomma}\ {\isadigit{0}}{\isacharparenright}} to be some specific number, for example 0. The
 | 
|  |     84 | latter option is chosen for the predefined \isa{div} function, which
 | 
| 10878 |     85 | simplifies proofs at the expense of deviating from the
 | 
|  |     86 | standard mathematical division function.
 | 
| 10654 |     87 | 
 | 
|  |     88 | As a more substantial example we consider the problem of searching a graph.
 | 
| 11277 |     89 | For simplicity our graph is given by a function \isa{f} of
 | 
| 10654 |     90 | type \isa{{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a} which
 | 
| 12334 |     91 | maps each node to its successor; the graph has out-degree 1.
 | 
| 11196 |     92 | The task is to find the end of a chain, modelled by a node pointing to
 | 
|  |     93 | itself. Here is a first attempt:
 | 
| 10654 |     94 | \begin{isabelle}%
 | 
|  |     95 | \ \ \ \ \ find\ {\isacharparenleft}f{\isacharcomma}\ x{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}if\ f\ x\ {\isacharequal}\ x\ then\ x\ else\ find\ {\isacharparenleft}f{\isacharcomma}\ f\ x{\isacharparenright}{\isacharparenright}%
 | 
|  |     96 | \end{isabelle}
 | 
| 12334 |     97 | This may be viewed as a fixed point finder or as the second half of the well
 | 
|  |     98 | known \emph{Union-Find} algorithm.
 | 
| 11149 |     99 | The snag is that it may not terminate if \isa{f} has non-trivial cycles.
 | 
| 10654 |    100 | Phrased differently, the relation%
 | 
|  |    101 | \end{isamarkuptext}%
 | 
| 11866 |    102 | \isamarkuptrue%
 | 
| 10654 |    103 | \isacommand{constdefs}\ step{\isadigit{1}}\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isacharparenright}\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharprime}a\ {\isasymtimes}\ {\isacharprime}a{\isacharparenright}set{\isachardoublequote}\isanewline
 | 
| 11866 |    104 | \ \ {\isachardoublequote}step{\isadigit{1}}\ f\ {\isasymequiv}\ {\isacharbraceleft}{\isacharparenleft}y{\isacharcomma}x{\isacharparenright}{\isachardot}\ y\ {\isacharequal}\ f\ x\ {\isasymand}\ y\ {\isasymnoteq}\ x{\isacharbraceright}{\isachardoublequote}\isamarkupfalse%
 | 
|  |    105 | %
 | 
| 10654 |    106 | \begin{isamarkuptext}%
 | 
|  |    107 | \noindent
 | 
|  |    108 | must be well-founded. Thus we make the following definition:%
 | 
|  |    109 | \end{isamarkuptext}%
 | 
| 11866 |    110 | \isamarkuptrue%
 | 
| 10654 |    111 | \isacommand{consts}\ find\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isacharparenright}\ {\isasymtimes}\ {\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isachardoublequote}\isanewline
 | 
| 11866 |    112 | \isamarkupfalse%
 | 
| 10654 |    113 | \isacommand{recdef}\ find\ {\isachardoublequote}same{\isacharunderscore}fst\ {\isacharparenleft}{\isasymlambda}f{\isachardot}\ wf{\isacharparenleft}step{\isadigit{1}}\ f{\isacharparenright}{\isacharparenright}\ step{\isadigit{1}}{\isachardoublequote}\isanewline
 | 
|  |    114 | \ \ {\isachardoublequote}find{\isacharparenleft}f{\isacharcomma}x{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}if\ wf{\isacharparenleft}step{\isadigit{1}}\ f{\isacharparenright}\isanewline
 | 
|  |    115 | \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ then\ if\ f\ x\ {\isacharequal}\ x\ then\ x\ else\ find{\isacharparenleft}f{\isacharcomma}\ f\ x{\isacharparenright}\isanewline
 | 
|  |    116 | \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ else\ arbitrary{\isacharparenright}{\isachardoublequote}\isanewline
 | 
| 11866 |    117 | {\isacharparenleft}\isakeyword{hints}\ recdef{\isacharunderscore}simp{\isacharcolon}\ step{\isadigit{1}}{\isacharunderscore}def{\isacharparenright}\isamarkupfalse%
 | 
|  |    118 | %
 | 
| 10654 |    119 | \begin{isamarkuptext}%
 | 
|  |    120 | \noindent
 | 
|  |    121 | The recursion equation itself should be clear enough: it is our aborted
 | 
|  |    122 | first attempt augmented with a check that there are no non-trivial loops.
 | 
| 11277 |    123 | To express the required well-founded relation we employ the
 | 
| 11196 |    124 | predefined combinator \isa{same{\isacharunderscore}fst} of type
 | 
| 10654 |    125 | \begin{isabelle}%
 | 
|  |    126 | \ \ \ \ \ {\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ bool{\isacharparenright}\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharprime}b{\isasymtimes}{\isacharprime}b{\isacharparenright}set{\isacharparenright}\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharparenleft}{\isacharprime}a{\isasymtimes}{\isacharprime}b{\isacharparenright}\ {\isasymtimes}\ {\isacharparenleft}{\isacharprime}a{\isasymtimes}{\isacharprime}b{\isacharparenright}{\isacharparenright}set%
 | 
|  |    127 | \end{isabelle}
 | 
|  |    128 | defined as
 | 
|  |    129 | \begin{isabelle}%
 | 
|  |    130 | \ \ \ \ \ same{\isacharunderscore}fst\ P\ R\ {\isasymequiv}\ {\isacharbraceleft}{\isacharparenleft}{\isacharparenleft}x{\isacharprime}{\isacharcomma}\ y{\isacharprime}{\isacharparenright}{\isacharcomma}\ x{\isacharcomma}\ y{\isacharparenright}{\isachardot}\ x{\isacharprime}\ {\isacharequal}\ x\ {\isasymand}\ P\ x\ {\isasymand}\ {\isacharparenleft}y{\isacharprime}{\isacharcomma}\ y{\isacharparenright}\ {\isasymin}\ R\ x{\isacharbraceright}%
 | 
|  |    131 | \end{isabelle}
 | 
| 11196 |    132 | This combinator is designed for
 | 
|  |    133 | recursive functions on pairs where the first component of the argument is
 | 
|  |    134 | passed unchanged to all recursive calls. Given a constraint on the first
 | 
|  |    135 | component and a relation on the second component, \isa{same{\isacharunderscore}fst} builds the
 | 
|  |    136 | required relation on pairs.  The theorem
 | 
|  |    137 | \begin{isabelle}%
 | 
| 10654 |    138 | \ \ \ \ \ {\isacharparenleft}{\isasymAnd}x{\isachardot}\ P\ x\ {\isasymLongrightarrow}\ wf\ {\isacharparenleft}R\ x{\isacharparenright}{\isacharparenright}\ {\isasymLongrightarrow}\ wf\ {\isacharparenleft}same{\isacharunderscore}fst\ P\ R{\isacharparenright}%
 | 
|  |    139 | \end{isabelle}
 | 
| 11196 |    140 | is known to the well-foundedness prover of \isacommand{recdef}.  Thus
 | 
|  |    141 | well-foundedness of the relation given to \isacommand{recdef} is immediate.
 | 
|  |    142 | Furthermore, each recursive call descends along that relation: the first
 | 
| 11285 |    143 | argument stays unchanged and the second one descends along \isa{step{\isadigit{1}}\ f}. The proof requires unfolding the definition of \isa{step{\isadigit{1}}},
 | 
|  |    144 | as specified in the \isacommand{hints} above.
 | 
| 10654 |    145 | 
 | 
| 11494 |    146 | Normally you will then derive the following conditional variant from
 | 
|  |    147 | the recursion equation:%
 | 
| 10654 |    148 | \end{isamarkuptext}%
 | 
| 11866 |    149 | \isamarkuptrue%
 | 
| 10654 |    150 | \isacommand{lemma}\ {\isacharbrackleft}simp{\isacharbrackright}{\isacharcolon}\isanewline
 | 
|  |    151 | \ \ {\isachardoublequote}wf{\isacharparenleft}step{\isadigit{1}}\ f{\isacharparenright}\ {\isasymLongrightarrow}\ find{\isacharparenleft}f{\isacharcomma}x{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}if\ f\ x\ {\isacharequal}\ x\ then\ x\ else\ find{\isacharparenleft}f{\isacharcomma}\ f\ x{\isacharparenright}{\isacharparenright}{\isachardoublequote}\isanewline
 | 
| 11866 |    152 | \isamarkupfalse%
 | 
| 15481 |    153 | \isamarkupfalse%
 | 
| 11866 |    154 | %
 | 
| 10654 |    155 | \begin{isamarkuptext}%
 | 
| 11494 |    156 | \noindent Then you should disable the original recursion equation:%
 | 
| 10654 |    157 | \end{isamarkuptext}%
 | 
| 11866 |    158 | \isamarkuptrue%
 | 
|  |    159 | \isacommand{declare}\ find{\isachardot}simps{\isacharbrackleft}simp\ del{\isacharbrackright}\isamarkupfalse%
 | 
|  |    160 | %
 | 
| 10654 |    161 | \begin{isamarkuptext}%
 | 
| 11494 |    162 | Reasoning about such underdefined functions is like that for other
 | 
|  |    163 | recursive functions.  Here is a simple example of recursion induction:%
 | 
| 10654 |    164 | \end{isamarkuptext}%
 | 
| 11866 |    165 | \isamarkuptrue%
 | 
| 10654 |    166 | \isacommand{lemma}\ {\isachardoublequote}wf{\isacharparenleft}step{\isadigit{1}}\ f{\isacharparenright}\ {\isasymlongrightarrow}\ f{\isacharparenleft}find{\isacharparenleft}f{\isacharcomma}x{\isacharparenright}{\isacharparenright}\ {\isacharequal}\ find{\isacharparenleft}f{\isacharcomma}x{\isacharparenright}{\isachardoublequote}\isanewline
 | 
| 11866 |    167 | \isamarkupfalse%
 | 
| 15481 |    168 | \isamarkupfalse%
 | 
| 11866 |    169 | \isamarkupfalse%
 | 
|  |    170 | \isamarkupfalse%
 | 
|  |    171 | %
 | 
| 10878 |    172 | \isamarkupsubsubsection{The {\tt\slshape while} Combinator%
 | 
| 10654 |    173 | }
 | 
| 11866 |    174 | \isamarkuptrue%
 | 
| 10654 |    175 | %
 | 
|  |    176 | \begin{isamarkuptext}%
 | 
|  |    177 | If the recursive function happens to be tail recursive, its
 | 
| 11428 |    178 | definition becomes a triviality if based on the predefined \cdx{while}
 | 
| 12332 |    179 | combinator.  The latter lives in the Library theory \thydx{While_Combinator}.
 | 
|  |    180 | % which is not part of {text Main} but needs to
 | 
|  |    181 | % be included explicitly among the ancestor theories.
 | 
| 10654 |    182 | 
 | 
|  |    183 | Constant \isa{while} is of type \isa{{\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ bool{\isacharparenright}\ {\isasymRightarrow}\ {\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isacharparenright}\ {\isasymRightarrow}\ {\isacharprime}a}
 | 
|  |    184 | and satisfies the recursion equation \begin{isabelle}%
 | 
|  |    185 | \ \ \ \ \ while\ b\ c\ s\ {\isacharequal}\ {\isacharparenleft}if\ b\ s\ then\ while\ b\ c\ {\isacharparenleft}c\ s{\isacharparenright}\ else\ s{\isacharparenright}%
 | 
|  |    186 | \end{isabelle}
 | 
|  |    187 | That is, \isa{while\ b\ c\ s} is equivalent to the imperative program
 | 
|  |    188 | \begin{verbatim}
 | 
|  |    189 |      x := s; while b(x) do x := c(x); return x
 | 
|  |    190 | \end{verbatim}
 | 
| 11494 |    191 | In general, \isa{s} will be a tuple or record.  As an example
 | 
|  |    192 | consider the following definition of function \isa{find}:%
 | 
| 10654 |    193 | \end{isamarkuptext}%
 | 
| 11866 |    194 | \isamarkuptrue%
 | 
| 10654 |    195 | \isacommand{constdefs}\ find{\isadigit{2}}\ {\isacharcolon}{\isacharcolon}\ {\isachardoublequote}{\isacharparenleft}{\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isacharparenright}\ {\isasymRightarrow}\ {\isacharprime}a\ {\isasymRightarrow}\ {\isacharprime}a{\isachardoublequote}\isanewline
 | 
|  |    196 | \ \ {\isachardoublequote}find{\isadigit{2}}\ f\ x\ {\isasymequiv}\isanewline
 | 
| 11866 |    197 | \ \ \ fst{\isacharparenleft}while\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}x{\isacharcomma}x{\isacharprime}{\isacharparenright}{\isachardot}\ x{\isacharprime}\ {\isasymnoteq}\ x{\isacharparenright}\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}x{\isacharcomma}x{\isacharprime}{\isacharparenright}{\isachardot}\ {\isacharparenleft}x{\isacharprime}{\isacharcomma}f\ x{\isacharprime}{\isacharparenright}{\isacharparenright}\ {\isacharparenleft}x{\isacharcomma}f\ x{\isacharparenright}{\isacharparenright}{\isachardoublequote}\isamarkupfalse%
 | 
|  |    198 | %
 | 
| 10654 |    199 | \begin{isamarkuptext}%
 | 
|  |    200 | \noindent
 | 
|  |    201 | The loop operates on two ``local variables'' \isa{x} and \isa{x{\isacharprime}}
 | 
|  |    202 | containing the ``current'' and the ``next'' value of function \isa{f}.
 | 
| 11310 |    203 | They are initialized with the global \isa{x} and \isa{f\ x}. At the
 | 
| 10654 |    204 | end \isa{fst} selects the local \isa{x}.
 | 
|  |    205 | 
 | 
| 11158 |    206 | Although the definition of tail recursive functions via \isa{while} avoids
 | 
|  |    207 | termination proofs, there is no free lunch. When proving properties of
 | 
|  |    208 | functions defined by \isa{while}, termination rears its ugly head
 | 
| 11494 |    209 | again. Here is \tdx{while_rule}, the well known proof rule for total
 | 
| 10654 |    210 | correctness of loops expressed with \isa{while}:
 | 
|  |    211 | \begin{isabelle}%
 | 
| 10696 |    212 | \ \ \ \ \ {\isasymlbrakk}P\ s{\isacharsemicolon}\ {\isasymAnd}s{\isachardot}\ {\isasymlbrakk}P\ s{\isacharsemicolon}\ b\ s{\isasymrbrakk}\ {\isasymLongrightarrow}\ P\ {\isacharparenleft}c\ s{\isacharparenright}{\isacharsemicolon}\isanewline
 | 
| 14379 |    213 | \isaindent{\ \ \ \ \ \ }{\isasymAnd}s{\isachardot}\ {\isasymlbrakk}P\ s{\isacharsemicolon}\ {\isasymnot}\ b\ s{\isasymrbrakk}\ {\isasymLongrightarrow}\ Q\ s{\isacharsemicolon}\ wf\ r{\isacharsemicolon}\isanewline
 | 
|  |    214 | \isaindent{\ \ \ \ \ \ }{\isasymAnd}s{\isachardot}\ {\isasymlbrakk}P\ s{\isacharsemicolon}\ b\ s{\isasymrbrakk}\ {\isasymLongrightarrow}\ {\isacharparenleft}c\ s{\isacharcomma}\ s{\isacharparenright}\ {\isasymin}\ r{\isasymrbrakk}\isanewline
 | 
| 10950 |    215 | \isaindent{\ \ \ \ \ }{\isasymLongrightarrow}\ Q\ {\isacharparenleft}while\ b\ c\ s{\isacharparenright}%
 | 
| 11158 |    216 | \end{isabelle} \isa{P} needs to be true of
 | 
|  |    217 | the initial state \isa{s} and invariant under \isa{c} (premises 1
 | 
|  |    218 | and~2). The post-condition \isa{Q} must become true when leaving the loop
 | 
|  |    219 | (premise~3). And each loop iteration must descend along a well-founded
 | 
|  |    220 | relation \isa{r} (premises 4 and~5).
 | 
| 10654 |    221 | 
 | 
|  |    222 | Let us now prove that \isa{find{\isadigit{2}}} does indeed find a fixed point. Instead
 | 
|  |    223 | of induction we apply the above while rule, suitably instantiated.
 | 
|  |    224 | Only the final premise of \isa{while{\isacharunderscore}rule} is left unproved
 | 
|  |    225 | by \isa{auto} but falls to \isa{simp}:%
 | 
|  |    226 | \end{isamarkuptext}%
 | 
| 11866 |    227 | \isamarkuptrue%
 | 
| 11277 |    228 | \isacommand{lemma}\ lem{\isacharcolon}\ {\isachardoublequote}wf{\isacharparenleft}step{\isadigit{1}}\ f{\isacharparenright}\ {\isasymLongrightarrow}\isanewline
 | 
|  |    229 | \ \ {\isasymexists}y{\isachardot}\ while\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}x{\isacharcomma}x{\isacharprime}{\isacharparenright}{\isachardot}\ x{\isacharprime}\ {\isasymnoteq}\ x{\isacharparenright}\ {\isacharparenleft}{\isasymlambda}{\isacharparenleft}x{\isacharcomma}x{\isacharprime}{\isacharparenright}{\isachardot}\ {\isacharparenleft}x{\isacharprime}{\isacharcomma}f\ x{\isacharprime}{\isacharparenright}{\isacharparenright}\ {\isacharparenleft}x{\isacharcomma}f\ x{\isacharparenright}\ {\isacharequal}\ {\isacharparenleft}y{\isacharcomma}y{\isacharparenright}\ {\isasymand}\isanewline
 | 
| 10878 |    230 | \ \ \ \ \ \ \ f\ y\ {\isacharequal}\ y{\isachardoublequote}\isanewline
 | 
| 11866 |    231 | \isamarkupfalse%
 | 
| 15481 |    232 | \isamarkupfalse%
 | 
| 11866 |    233 | \isamarkupfalse%
 | 
|  |    234 | \isamarkupfalse%
 | 
|  |    235 | \isamarkupfalse%
 | 
|  |    236 | %
 | 
| 10654 |    237 | \begin{isamarkuptext}%
 | 
|  |    238 | The theorem itself is a simple consequence of this lemma:%
 | 
|  |    239 | \end{isamarkuptext}%
 | 
| 11866 |    240 | \isamarkuptrue%
 | 
| 10654 |    241 | \isacommand{theorem}\ {\isachardoublequote}wf{\isacharparenleft}step{\isadigit{1}}\ f{\isacharparenright}\ {\isasymLongrightarrow}\ f{\isacharparenleft}find{\isadigit{2}}\ f\ x{\isacharparenright}\ {\isacharequal}\ find{\isadigit{2}}\ f\ x{\isachardoublequote}\isanewline
 | 
| 11866 |    242 | \isamarkupfalse%
 | 
| 15481 |    243 | \isamarkupfalse%
 | 
| 11866 |    244 | \isamarkupfalse%
 | 
|  |    245 | \isamarkupfalse%
 | 
|  |    246 | %
 | 
| 10654 |    247 | \begin{isamarkuptext}%
 | 
|  |    248 | Let us conclude this section on partial functions by a
 | 
|  |    249 | discussion of the merits of the \isa{while} combinator. We have
 | 
| 11494 |    250 | already seen that the advantage of not having to
 | 
| 11310 |    251 | provide a termination argument when defining a function via \isa{while} merely puts off the evil hour. On top of that, tail recursive
 | 
| 10654 |    252 | functions tend to be more complicated to reason about. So why use
 | 
|  |    253 | \isa{while} at all? The only reason is executability: the recursion
 | 
|  |    254 | equation for \isa{while} is a directly executable functional
 | 
|  |    255 | program. This is in stark contrast to guarded recursion as introduced
 | 
|  |    256 | above which requires an explicit test \isa{x\ {\isasymin}\ dom\ f} in the
 | 
|  |    257 | function body.  Unless \isa{dom} is trivial, this leads to a
 | 
| 11196 |    258 | definition that is impossible to execute or prohibitively slow.
 | 
| 10878 |    259 | Thus, if you are aiming for an efficiently executable definition
 | 
| 10654 |    260 | of a partial function, you are likely to need \isa{while}.%
 | 
|  |    261 | \end{isamarkuptext}%
 | 
| 11866 |    262 | \isamarkuptrue%
 | 
|  |    263 | \isamarkupfalse%
 | 
| 10654 |    264 | \end{isabellebody}%
 | 
|  |    265 | %%% Local Variables:
 | 
|  |    266 | %%% mode: latex
 | 
|  |    267 | %%% TeX-master: "root"
 | 
|  |    268 | %%% End:
 |