doc-src/TutorialI/fp.tex
author nipkow
Sat, 06 Jan 2001 11:27:09 +0100
changeset 10800 2d4c058749a7
parent 10795 9e888d60d3e5
child 10824 4a212e635318
permissions -rw-r--r--
*** empty log message ***
     1 \chapter{Functional Programming in HOL}
     2 
     3 Although on the surface this chapter is mainly concerned with how to write
     4 functional programs in HOL and how to verify them, most of the
     5 constructs and proof procedures introduced are general purpose and recur in
     6 any specification or verification task.
     7 
     8 The dedicated functional programmer should be warned: HOL offers only
     9 \emph{total functional programming} --- all functions in HOL must be total;
    10 lazy data structures are not directly available. On the positive side,
    11 functions in HOL need not be computable: HOL is a specification language that
    12 goes well beyond what can be expressed as a program. However, for the time
    13 being we concentrate on the computable.
    14 
    15 \section{An introductory theory}
    16 \label{sec:intro-theory}
    17 
    18 Functional programming needs datatypes and functions. Both of them can be
    19 defined in a theory with a syntax reminiscent of languages like ML or
    20 Haskell. As an example consider the theory in figure~\ref{fig:ToyList}.
    21 We will now examine it line by line.
    22 
    23 \begin{figure}[htbp]
    24 \begin{ttbox}\makeatother
    25 \input{ToyList2/ToyList1}\end{ttbox}
    26 \caption{A theory of lists}
    27 \label{fig:ToyList}
    28 \end{figure}
    29 
    30 {\makeatother\input{ToyList/document/ToyList.tex}}
    31 
    32 The complete proof script is shown in Fig.\ts\ref{fig:ToyList-proofs}. The
    33 concatenation of Figs.\ts\ref{fig:ToyList} and~\ref{fig:ToyList-proofs}
    34 constitutes the complete theory \texttt{ToyList} and should reside in file
    35 \texttt{ToyList.thy}. It is good practice to present all declarations and
    36 definitions at the beginning of a theory to facilitate browsing.
    37 
    38 \begin{figure}[htbp]
    39 \begin{ttbox}\makeatother
    40 \input{ToyList2/ToyList2}\end{ttbox}
    41 \caption{Proofs about lists}
    42 \label{fig:ToyList-proofs}
    43 \end{figure}
    44 
    45 \subsubsection*{Review}
    46 
    47 This is the end of our toy proof. It should have familiarized you with
    48 \begin{itemize}
    49 \item the standard theorem proving procedure:
    50 state a goal (lemma or theorem); proceed with proof until a separate lemma is
    51 required; prove that lemma; come back to the original goal.
    52 \item a specific procedure that works well for functional programs:
    53 induction followed by all-out simplification via \isa{auto}.
    54 \item a basic repertoire of proof commands.
    55 \end{itemize}
    56 
    57 
    58 \section{Some helpful commands}
    59 \label{sec:commands-and-hints}
    60 
    61 This section discusses a few basic commands for manipulating the proof state
    62 and can be skipped by casual readers.
    63 
    64 There are two kinds of commands used during a proof: the actual proof
    65 commands and auxiliary commands for examining the proof state and controlling
    66 the display. Simple proof commands are of the form
    67 \isacommand{apply}\isa{(method)}\indexbold{apply} where \bfindex{method} is a
    68 synonym for ``theorem proving function''. Typical examples are
    69 \isa{induct_tac} and \isa{auto}. Further methods are introduced throughout
    70 the tutorial.  Unless stated otherwise you may assume that a method attacks
    71 merely the first subgoal. An exception is \isa{auto} which tries to solve all
    72 subgoals.
    73 
    74 The most useful auxiliary commands are:
    75 \begin{description}
    76 \item[Undoing:] \isacommand{undo}\indexbold{*undo} undoes the effect of the
    77   last command; \isacommand{undo} can be undone by
    78   \isacommand{redo}\indexbold{*redo}.  Both are only needed at the shell
    79   level and should not occur in the final theory.
    80 \item[Printing the current state:] \isacommand{pr}\indexbold{*pr} redisplays
    81   the current proof state, for example when it has disappeared off the
    82   screen.
    83 \item[Limiting the number of subgoals:] \isacommand{pr}~$n$ tells Isabelle to
    84   print only the first $n$ subgoals from now on and redisplays the current
    85   proof state. This is helpful when there are many subgoals.
    86 \item[Modifying the order of subgoals:]
    87 \isacommand{defer}\indexbold{*defer} moves the first subgoal to the end and
    88 \isacommand{prefer}\indexbold{*prefer}~$n$ moves subgoal $n$ to the front.
    89 \item[Printing theorems:]
    90   \isacommand{thm}\indexbold{*thm}~\textit{name}$@1$~\dots~\textit{name}$@n$
    91   prints the named theorems.
    92 \item[Displaying types:] We have already mentioned the flag
    93   \ttindex{show_types} above. It can also be useful for detecting typos in
    94   formulae early on. For example, if \texttt{show_types} is set and the goal
    95   \isa{rev(rev xs) = xs} is started, Isabelle prints the additional output
    96 \par\noindent
    97 \begin{isabelle}%
    98 Variables:\isanewline
    99 ~~xs~::~'a~list
   100 \end{isabelle}%
   101 \par\noindent
   102 which tells us that Isabelle has correctly inferred that
   103 \isa{xs} is a variable of list type. On the other hand, had we
   104 made a typo as in \isa{rev(re xs) = xs}, the response
   105 \par\noindent
   106 \begin{isabelle}%
   107 Variables:\isanewline
   108 ~~re~::~'a~list~{\isasymRightarrow}~'a~list\isanewline
   109 ~~xs~::~'a~list%
   110 \end{isabelle}%
   111 \par\noindent
   112 would have alerted us because of the unexpected variable \isa{re}.
   113 \item[Reading terms and types:] \isacommand{term}\indexbold{*term}
   114   \textit{string} reads, type-checks and prints the given string as a term in
   115   the current context; the inferred type is output as well.
   116   \isacommand{typ}\indexbold{*typ} \textit{string} reads and prints the given
   117   string as a type in the current context.
   118 \item[(Re)loading theories:] When you start your interaction you must open a
   119   named theory with the line \isa{\isacommand{theory}~T~=~\dots~:}. Isabelle
   120   automatically loads all the required parent theories from their respective
   121   files (which may take a moment, unless the theories are already loaded and
   122   the files have not been modified).
   123   
   124   If you suddenly discover that you need to modify a parent theory of your
   125   current theory you must first abandon your current theory\indexbold{abandon
   126   theory}\indexbold{theory!abandon} (at the shell
   127   level type \isacommand{kill}\indexbold{*kill}). After the parent theory has
   128   been modified you go back to your original theory. When its first line
   129   \isacommand{theory}\texttt{~T~=}~\dots~\texttt{:} is processed, the
   130   modified parent is reloaded automatically.
   131   
   132   The only time when you need to load a theory by hand is when you simply
   133   want to check if it loads successfully without wanting to make use of the
   134   theory itself. This you can do by typing
   135   \isa{\isacommand{use\_thy}\indexbold{*use_thy}~"T"}.
   136 \end{description}
   137 Further commands are found in the Isabelle/Isar Reference Manual.
   138 
   139 We now examine Isabelle's functional programming constructs systematically,
   140 starting with inductive datatypes.
   141 
   142 
   143 \section{Datatypes}
   144 \label{sec:datatype}
   145 
   146 Inductive datatypes are part of almost every non-trivial application of HOL.
   147 First we take another look at a very important example, the datatype of
   148 lists, before we turn to datatypes in general. The section closes with a
   149 case study.
   150 
   151 
   152 \subsection{Lists}
   153 \indexbold{*list}
   154 
   155 Lists are one of the essential datatypes in computing. Readers of this
   156 tutorial and users of HOL need to be familiar with their basic operations.
   157 Theory \isa{ToyList} is only a small fragment of HOL's predefined theory
   158 \isa{List}\footnote{\url{http://isabelle.in.tum.de/library/HOL/List.html}}.
   159 The latter contains many further operations. For example, the functions
   160 \isaindexbold{hd} (``head'') and \isaindexbold{tl} (``tail'') return the first
   161 element and the remainder of a list. (However, pattern-matching is usually
   162 preferable to \isa{hd} and \isa{tl}.)  
   163 Also available are higher-order functions like \isa{map} and \isa{filter}.
   164 Theory \isa{List} also contains
   165 more syntactic sugar: \isa{[}$x@1$\isa{,}\dots\isa{,}$x@n$\isa{]} abbreviates
   166 $x@1$\isa{\#}\dots\isa{\#}$x@n$\isa{\#[]}.  In the rest of the tutorial we
   167 always use HOL's predefined lists.
   168 
   169 
   170 \subsection{The general format}
   171 \label{sec:general-datatype}
   172 
   173 The general HOL \isacommand{datatype} definition is of the form
   174 \[
   175 \isacommand{datatype}~(\alpha@1, \dots, \alpha@n) \, t ~=~
   176 C@1~\tau@{11}~\dots~\tau@{1k@1} ~\mid~ \dots ~\mid~
   177 C@m~\tau@{m1}~\dots~\tau@{mk@m}
   178 \]
   179 where $\alpha@i$ are distinct type variables (the parameters), $C@i$ are distinct
   180 constructor names and $\tau@{ij}$ are types; it is customary to capitalize
   181 the first letter in constructor names. There are a number of
   182 restrictions (such as that the type should not be empty) detailed
   183 elsewhere~\cite{isabelle-HOL}. Isabelle notifies you if you violate them.
   184 
   185 Laws about datatypes, such as \isa{[] \isasymnoteq~x\#xs} and
   186 \isa{(x\#xs = y\#ys) = (x=y \isasymand~xs=ys)}, are used automatically
   187 during proofs by simplification.  The same is true for the equations in
   188 primitive recursive function definitions.
   189 
   190 Every datatype $t$ comes equipped with a \isa{size} function from $t$ into
   191 the natural numbers (see~{\S}\ref{sec:nat} below). For lists, \isa{size} is
   192 just the length, i.e.\ \isa{size [] = 0} and \isa{size(x \# xs) = size xs +
   193   1}.  In general, \isaindexbold{size} returns \isa{0} for all constructors
   194 that do not have an argument of type $t$, and for all other constructors
   195 \isa{1 +} the sum of the sizes of all arguments of type $t$. Note that because
   196 \isa{size} is defined on every datatype, it is overloaded; on lists
   197 \isa{size} is also called \isaindexbold{length}, which is not overloaded.
   198 Isabelle will always show \isa{size} on lists as \isa{length}.
   199 
   200 
   201 \subsection{Primitive recursion}
   202 
   203 Functions on datatypes are usually defined by recursion. In fact, most of the
   204 time they are defined by what is called \bfindex{primitive recursion}.
   205 The keyword \isacommand{primrec}\indexbold{*primrec} is followed by a list of
   206 equations
   207 \[ f \, x@1 \, \dots \, (C \, y@1 \, \dots \, y@k)\, \dots \, x@n = r \]
   208 such that $C$ is a constructor of the datatype $t$ and all recursive calls of
   209 $f$ in $r$ are of the form $f \, \dots \, y@i \, \dots$ for some $i$. Thus
   210 Isabelle immediately sees that $f$ terminates because one (fixed!) argument
   211 becomes smaller with every recursive call. There must be at most one equation
   212 for each constructor.  Their order is immaterial.
   213 A more general method for defining total recursive functions is introduced in
   214 {\S}\ref{sec:recdef}.
   215 
   216 \begin{exercise}\label{ex:Tree}
   217 \input{Misc/document/Tree.tex}%
   218 \end{exercise}
   219 
   220 \input{Misc/document/case_exprs.tex}
   221 
   222 \begin{warn}
   223   Induction is only allowed on free (or \isasymAnd-bound) variables that
   224   should not occur among the assumptions of the subgoal; see
   225   {\S}\ref{sec:ind-var-in-prems} for details. Case distinction
   226   (\isa{case_tac}) works for arbitrary terms, which need to be
   227   quoted if they are non-atomic.
   228 \end{warn}
   229 
   230 
   231 \input{Ifexpr/document/Ifexpr.tex}
   232 
   233 \section{Some basic types}
   234 
   235 
   236 \subsection{Natural numbers}
   237 \label{sec:nat}
   238 \index{arithmetic|(}
   239 
   240 \input{Misc/document/fakenat.tex}
   241 \input{Misc/document/natsum.tex}
   242 
   243 \index{arithmetic|)}
   244 
   245 
   246 \subsection{Pairs}
   247 \input{Misc/document/pairs.tex}
   248 
   249 \subsection{Datatype {\tt\slshape option}}
   250 \label{sec:option}
   251 \input{Misc/document/Option2.tex}
   252 
   253 \section{Definitions}
   254 \label{sec:Definitions}
   255 
   256 A definition is simply an abbreviation, i.e.\ a new name for an existing
   257 construction. In particular, definitions cannot be recursive. Isabelle offers
   258 definitions on the level of types and terms. Those on the type level are
   259 called type synonyms, those on the term level are called (constant)
   260 definitions.
   261 
   262 
   263 \subsection{Type synonyms}
   264 \indexbold{type synonym}
   265 
   266 Type synonyms are similar to those found in ML\@. Their syntax is fairly self
   267 explanatory:
   268 
   269 \input{Misc/document/types.tex}%
   270 
   271 Note that pattern-matching is not allowed, i.e.\ each definition must be of
   272 the form $f\,x@1\,\dots\,x@n~\isasymequiv~t$.
   273 Section~{\S}\ref{sec:Simplification} explains how definitions are used
   274 in proofs.
   275 
   276 \input{Misc/document/prime_def.tex}
   277 
   278 
   279 \chapter{More Functional Programming}
   280 
   281 The purpose of this chapter is to deepen the reader's understanding of the
   282 concepts encountered so far and to introduce advanced forms of datatypes and
   283 recursive functions. The first two sections give a structured presentation of
   284 theorem proving by simplification ({\S}\ref{sec:Simplification}) and discuss
   285 important heuristics for induction ({\S}\ref{sec:InductionHeuristics}). They can
   286 be skipped by readers less interested in proofs. They are followed by a case
   287 study, a compiler for expressions ({\S}\ref{sec:ExprCompiler}). Advanced
   288 datatypes, including those involving function spaces, are covered in
   289 {\S}\ref{sec:advanced-datatypes}, which closes with another case study, search
   290 trees (``tries'').  Finally we introduce \isacommand{recdef}, a very general
   291 form of recursive function definition which goes well beyond what
   292 \isacommand{primrec} allows ({\S}\ref{sec:recdef}).
   293 
   294 
   295 \section{Simplification}
   296 \label{sec:Simplification}
   297 \index{simplification|(}
   298 
   299 So far we have proved our theorems by \isa{auto}, which simplifies
   300 \emph{all} subgoals. In fact, \isa{auto} can do much more than that, except
   301 that it did not need to so far. However, when you go beyond toy examples, you
   302 need to understand the ingredients of \isa{auto}.  This section covers the
   303 method that \isa{auto} always applies first, namely simplification.
   304 
   305 Simplification is one of the central theorem proving tools in Isabelle and
   306 many other systems. The tool itself is called the \bfindex{simplifier}. The
   307 purpose of this section is introduce the many features of the simplifier.
   308 Anybody intending to use HOL should read this section. Later on
   309 ({\S}\ref{sec:simplification-II}) we explain some more advanced features and a
   310 little bit of how the simplifier works. The serious student should read that
   311 section as well, in particular in order to understand what happened if things
   312 do not simplify as expected.
   313 
   314 \subsubsection{What is simplification}
   315 
   316 In its most basic form, simplification means repeated application of
   317 equations from left to right. For example, taking the rules for \isa{\at}
   318 and applying them to the term \isa{[0,1] \at\ []} results in a sequence of
   319 simplification steps:
   320 \begin{ttbox}\makeatother
   321 (0#1#[]) @ []  \(\leadsto\)  0#((1#[]) @ [])  \(\leadsto\)  0#(1#([] @ []))  \(\leadsto\)  0#1#[]
   322 \end{ttbox}
   323 This is also known as \bfindex{term rewriting}\indexbold{rewriting} and the
   324 equations are referred to as \textbf{rewrite rules}\indexbold{rewrite rule}.
   325 ``Rewriting'' is more honest than ``simplification'' because the terms do not
   326 necessarily become simpler in the process.
   327 
   328 \input{Misc/document/simp.tex}
   329 
   330 \index{simplification|)}
   331 
   332 \input{Misc/document/Itrev.tex}
   333 
   334 \begin{exercise}
   335 \input{Misc/document/Tree2.tex}%
   336 \end{exercise}
   337 
   338 \input{CodeGen/document/CodeGen.tex}
   339 
   340 
   341 \section{Advanced datatypes}
   342 \label{sec:advanced-datatypes}
   343 \index{*datatype|(}
   344 \index{*primrec|(}
   345 %|)
   346 
   347 This section presents advanced forms of \isacommand{datatype}s.
   348 
   349 \subsection{Mutual recursion}
   350 \label{sec:datatype-mut-rec}
   351 
   352 \input{Datatype/document/ABexpr.tex}
   353 
   354 \subsection{Nested recursion}
   355 \label{sec:nested-datatype}
   356 
   357 {\makeatother\input{Datatype/document/Nested.tex}}
   358 
   359 
   360 \subsection{The limits of nested recursion}
   361 
   362 How far can we push nested recursion? By the unfolding argument above, we can
   363 reduce nested to mutual recursion provided the nested recursion only involves
   364 previously defined datatypes. This does not include functions:
   365 \begin{isabelle}
   366 \isacommand{datatype} t = C "t \isasymRightarrow\ bool"
   367 \end{isabelle}
   368 This declaration is a real can of worms.
   369 In HOL it must be ruled out because it requires a type
   370 \isa{t} such that \isa{t} and its power set \isa{t \isasymFun\ bool} have the
   371 same cardinality---an impossibility. For the same reason it is not possible
   372 to allow recursion involving the type \isa{set}, which is isomorphic to
   373 \isa{t \isasymFun\ bool}.
   374 
   375 Fortunately, a limited form of recursion
   376 involving function spaces is permitted: the recursive type may occur on the
   377 right of a function arrow, but never on the left. Hence the above can of worms
   378 is ruled out but the following example of a potentially infinitely branching tree is
   379 accepted:
   380 \smallskip
   381 
   382 \input{Datatype/document/Fundata.tex}
   383 \bigskip
   384 
   385 If you need nested recursion on the left of a function arrow, there are
   386 alternatives to pure HOL: LCF~\cite{paulson87} is a logic where types like
   387 \begin{isabelle}
   388 \isacommand{datatype} lam = C "lam \isasymrightarrow\ lam"
   389 \end{isabelle}
   390 do indeed make sense.  Note the different arrow,
   391 \isa{\isasymrightarrow} instead of \isa{\isasymRightarrow},
   392 expressing the type of \textbf{continuous} functions. 
   393 There is even a version of LCF on top of HOL,
   394 called HOLCF~\cite{MuellerNvOS99}.
   395 
   396 \index{*primrec|)}
   397 \index{*datatype|)}
   398 
   399 \subsection{Case study: Tries}
   400 \label{sec:Trie}
   401 
   402 Tries are a classic search tree data structure~\cite{Knuth3-75} for fast
   403 indexing with strings. Figure~\ref{fig:trie} gives a graphical example of a
   404 trie containing the words ``all'', ``an'', ``ape'', ``can'', ``car'' and
   405 ``cat''.  When searching a string in a trie, the letters of the string are
   406 examined sequentially. Each letter determines which subtrie to search next.
   407 In this case study we model tries as a datatype, define a lookup and an
   408 update function, and prove that they behave as expected.
   409 
   410 \begin{figure}[htbp]
   411 \begin{center}
   412 \unitlength1mm
   413 \begin{picture}(60,30)
   414 \put( 5, 0){\makebox(0,0)[b]{l}}
   415 \put(25, 0){\makebox(0,0)[b]{e}}
   416 \put(35, 0){\makebox(0,0)[b]{n}}
   417 \put(45, 0){\makebox(0,0)[b]{r}}
   418 \put(55, 0){\makebox(0,0)[b]{t}}
   419 %
   420 \put( 5, 9){\line(0,-1){5}}
   421 \put(25, 9){\line(0,-1){5}}
   422 \put(44, 9){\line(-3,-2){9}}
   423 \put(45, 9){\line(0,-1){5}}
   424 \put(46, 9){\line(3,-2){9}}
   425 %
   426 \put( 5,10){\makebox(0,0)[b]{l}}
   427 \put(15,10){\makebox(0,0)[b]{n}}
   428 \put(25,10){\makebox(0,0)[b]{p}}
   429 \put(45,10){\makebox(0,0)[b]{a}}
   430 %
   431 \put(14,19){\line(-3,-2){9}}
   432 \put(15,19){\line(0,-1){5}}
   433 \put(16,19){\line(3,-2){9}}
   434 \put(45,19){\line(0,-1){5}}
   435 %
   436 \put(15,20){\makebox(0,0)[b]{a}}
   437 \put(45,20){\makebox(0,0)[b]{c}}
   438 %
   439 \put(30,30){\line(-3,-2){13}}
   440 \put(30,30){\line(3,-2){13}}
   441 \end{picture}
   442 \end{center}
   443 \caption{A sample trie}
   444 \label{fig:trie}
   445 \end{figure}
   446 
   447 Proper tries associate some value with each string. Since the
   448 information is stored only in the final node associated with the string, many
   449 nodes do not carry any value. This distinction is modeled with the help
   450 of the predefined datatype \isa{option} (see {\S}\ref{sec:option}).
   451 \input{Trie/document/Trie.tex}
   452 
   453 \begin{exercise}
   454   Write an improved version of \isa{update} that does not suffer from the
   455   space leak in the version above. Prove the main theorem for your improved
   456   \isa{update}.
   457 \end{exercise}
   458 
   459 \begin{exercise}
   460   Write a function to \emph{delete} entries from a trie. An easy solution is
   461   a clever modification of \isa{update} which allows both insertion and
   462   deletion with a single function.  Prove (a modified version of) the main
   463   theorem above. Optimize you function such that it shrinks tries after
   464   deletion, if possible.
   465 \end{exercise}
   466 
   467 \section{Total recursive functions}
   468 \label{sec:recdef}
   469 \index{*recdef|(}
   470 
   471 Although many total functions have a natural primitive recursive definition,
   472 this is not always the case. Arbitrary total recursive functions can be
   473 defined by means of \isacommand{recdef}: you can use full pattern-matching,
   474 recursion need not involve datatypes, and termination is proved by showing
   475 that the arguments of all recursive calls are smaller in a suitable (user
   476 supplied) sense. In this section we ristrict ourselves to measure functions;
   477 more advanced termination proofs are discussed in {\S}\ref{sec:beyond-measure}.
   478 
   479 \subsection{Defining recursive functions}
   480 \label{sec:recdef-examples}
   481 \input{Recdef/document/examples.tex}
   482 
   483 \subsection{Proving termination}
   484 
   485 \input{Recdef/document/termination.tex}
   486 
   487 \subsection{Simplification with recdef}
   488 \label{sec:recdef-simplification}
   489 
   490 \input{Recdef/document/simplification.tex}
   491 
   492 \subsection{Induction}
   493 \index{induction!recursion|(}
   494 \index{recursion induction|(}
   495 
   496 \input{Recdef/document/Induction.tex}
   497 \label{sec:recdef-induction}
   498 
   499 \index{induction!recursion|)}
   500 \index{recursion induction|)}
   501 \index{*recdef|)}