doc-src/TutorialI/Recdef/simplification.thy
author nipkow
Sun, 06 Aug 2000 15:26:53 +0200
changeset 9541 d17c0b34d5c8
parent 9458 c613cd06d5cf
child 9754 a123a64cadeb
permissions -rw-r--r--
*** empty log message ***
     1 (*<*)
     2 theory simplification = Main:;
     3 (*>*)
     4 
     5 text{*
     6 Once we have succeeded in proving all termination conditions, the recursion
     7 equations become simplification rules, just as with
     8 \isacommand{primrec}. In most cases this works fine, but there is a subtle
     9 problem that must be mentioned: simplification may not
    10 terminate because of automatic splitting of \isa{if}.
    11 Let us look at an example:
    12 *}
    13 
    14 consts gcd :: "nat*nat \\<Rightarrow> nat";
    15 recdef gcd "measure (\\<lambda>(m,n).n)"
    16   "gcd (m, n) = (if n=0 then m else gcd(n, m mod n))";
    17 
    18 text{*\noindent
    19 According to the measure function, the second argument should decrease with
    20 each recursive call. The resulting termination condition
    21 \begin{quote}
    22 @{term[display]"n ~= 0 ==> m mod n < n"}
    23 \end{quote}
    24 is provded automatically because it is already present as a lemma in the
    25 arithmetic library. Thus the recursion equation becomes a simplification
    26 rule. Of course the equation is nonterminating if we are allowed to unfold
    27 the recursive call inside the \isa{else} branch, which is why programming
    28 languages and our simplifier don't do that. Unfortunately the simplifier does
    29 something else which leads to the same problem: it splits \isa{if}s if the
    30 condition simplifies to neither \isa{True} nor \isa{False}. For
    31 example, simplification reduces
    32 \begin{quote}
    33 @{term[display]"gcd(m,n) = k"}
    34 \end{quote}
    35 in one step to
    36 \begin{quote}
    37 @{term[display]"(if n=0 then m else gcd(n, m mod n)) = k"}
    38 \end{quote}
    39 where the condition cannot be reduced further, and splitting leads to
    40 \begin{quote}
    41 @{term[display]"(n=0 --> m=k) & (n ~= 0 --> gcd(n, m mod n)=k)"}
    42 \end{quote}
    43 Since the recursive call @{term"gcd(n, m mod n)"} is no longer protected by
    44 an \isa{if}, it is unfolded again, which leads to an infinite chain of
    45 simplification steps. Fortunately, this problem can be avoided in many
    46 different ways.
    47 
    48 The most radical solution is to disable the offending
    49 \isa{split_if} as shown in the section on case splits in
    50 \S\ref{sec:SimpFeatures}.
    51 However, we do not recommend this because it means you will often have to
    52 invoke the rule explicitly when \isa{if} is involved.
    53 
    54 If possible, the definition should be given by pattern matching on the left
    55 rather than \isa{if} on the right. In the case of \isa{gcd} the
    56 following alternative definition suggests itself:
    57 *}
    58 
    59 consts gcd1 :: "nat*nat \\<Rightarrow> nat";
    60 recdef gcd1 "measure (\\<lambda>(m,n).n)"
    61   "gcd1 (m, 0) = m"
    62   "gcd1 (m, n) = gcd1(n, m mod n)";
    63 
    64 
    65 text{*\noindent
    66 Note that the order of equations is important and hides the side condition
    67 \isa{n \isasymnoteq\ 0}. Unfortunately, in general the case distinction
    68 may not be expressible by pattern matching.
    69 
    70 A very simple alternative is to replace \isa{if} by \isa{case}, which
    71 is also available for \isa{bool} but is not split automatically:
    72 *}
    73 
    74 consts gcd2 :: "nat*nat \\<Rightarrow> nat";
    75 recdef gcd2 "measure (\\<lambda>(m,n).n)"
    76   "gcd2(m,n) = (case n=0 of True \\<Rightarrow> m | False \\<Rightarrow> gcd2(n,m mod n))";
    77 
    78 text{*\noindent
    79 In fact, this is probably the neatest solution next to pattern matching.
    80 
    81 A final alternative is to replace the offending simplification rules by
    82 derived conditional ones. For \isa{gcd} it means we have to prove
    83 *}
    84 
    85 lemma [simp]: "gcd (m, 0) = m";
    86 by(simp);
    87 lemma [simp]: "n \\<noteq> 0 \\<Longrightarrow> gcd(m, n) = gcd(n, m mod n)";
    88 by(simp);
    89 
    90 text{*\noindent
    91 after which we can disable the original simplification rule:
    92 *}
    93 
    94 lemmas [simp del] = gcd.simps;
    95 
    96 (*<*)
    97 end
    98 (*>*)