doc-src/TutorialI/Datatype/ABexpr.thy
author nipkow
Fri, 28 Jul 2000 16:02:51 +0200
changeset 9458 c613cd06d5cf
parent 8771 026f37a86ea7
child 9541 d17c0b34d5c8
permissions -rw-r--r--
apply. -> by
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     1
(*<*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     2
theory ABexpr = Main:;
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     3
(*>*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     4
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     5
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     6
Sometimes it is necessary to define two datatypes that depend on each
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     7
other. This is called \textbf{mutual recursion}. As an example consider a
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     8
language of arithmetic and boolean expressions where
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
     9
\begin{itemize}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    10
\item arithmetic expressions contain boolean expressions because there are
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    11
  conditional arithmetic expressions like ``if $m<n$ then $n-m$ else $m-n$'',
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    12
  and
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    13
\item boolean expressions contain arithmetic expressions because of
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    14
  comparisons like ``$m<n$''.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    15
\end{itemize}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    16
In Isabelle this becomes
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    17
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    18
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    19
datatype 'a aexp = IF   "'a bexp" "'a aexp" "'a aexp"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    20
                 | Sum  "'a aexp" "'a aexp"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    21
                 | Diff "'a aexp" "'a aexp"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    22
                 | Var 'a
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    23
                 | Num nat
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    24
and      'a bexp = Less "'a aexp" "'a aexp"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    25
                 | And  "'a bexp" "'a bexp"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    26
                 | Neg  "'a bexp";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    27
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    28
text{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    29
Type \isa{aexp} is similar to \isa{expr} in \S\ref{sec:ExprCompiler},
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    30
except that we have fixed the values to be of type \isa{nat} and that we
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    31
have fixed the two binary operations \isa{Sum} and \isa{Diff}. Boolean
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    32
expressions can be arithmetic comparisons, conjunctions and negations.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    33
The semantics is fixed via two evaluation functions
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    34
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    35
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    36
consts  evala :: "'a aexp \\<Rightarrow> ('a \\<Rightarrow> nat) \\<Rightarrow> nat"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    37
        evalb :: "'a bexp \\<Rightarrow> ('a \\<Rightarrow> nat) \\<Rightarrow> bool";
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    38
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    39
text{*\noindent
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    40
that take an expression and an environment (a mapping from variables \isa{'a} to values
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    41
\isa{nat}) and return its arithmetic/boolean
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    42
value. Since the datatypes are mutually recursive, so are functions that
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    43
operate on them. Hence they need to be defined in a single \isacommand{primrec}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    44
section:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    45
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    46
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    47
primrec
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    48
  "evala (IF b a1 a2) env =
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    49
     (if evalb b env then evala a1 env else evala a2 env)"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    50
  "evala (Sum a1 a2) env = evala a1 env + evala a2 env"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    51
  "evala (Diff a1 a2) env = evala a1 env - evala a2 env"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    52
  "evala (Var v) env = env v"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    53
  "evala (Num n) env = n"
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    54
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    55
  "evalb (Less a1 a2) env = (evala a1 env < evala a2 env)"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    56
  "evalb (And b1 b2) env = (evalb b1 env \\<and> evalb b2 env)"
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    57
  "evalb (Neg b) env = (\\<not> evalb b env)"
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    58
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    59
text{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    60
In the same fashion we also define two functions that perform substitution:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    61
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    62
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    63
consts substa :: "('a \\<Rightarrow> 'b aexp) \\<Rightarrow> 'a aexp \\<Rightarrow> 'b aexp"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    64
       substb :: "('a \\<Rightarrow> 'b aexp) \\<Rightarrow> 'a bexp \\<Rightarrow> 'b bexp";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    65
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    66
text{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    67
The first argument is a function mapping variables to expressions, the
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    68
substitution. It is applied to all variables in the second argument. As a
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    69
result, the type of variables in the expression may change from \isa{'a}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    70
to \isa{'b}. Note that there are only arithmetic and no boolean variables.
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    71
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    72
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    73
primrec
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    74
  "substa s (IF b a1 a2) =
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    75
     IF (substb s b) (substa s a1) (substa s a2)"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    76
  "substa s (Sum a1 a2) = Sum (substa s a1) (substa s a2)"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    77
  "substa s (Diff a1 a2) = Diff (substa s a1) (substa s a2)"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    78
  "substa s (Var v) = s v"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    79
  "substa s (Num n) = Num n"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    80
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    81
  "substb s (Less a1 a2) = Less (substa s a1) (substa s a2)"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    82
  "substb s (And b1 b2) = And (substb s b1) (substb s b2)"
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    83
  "substb s (Neg b) = Neg (substb s b)";
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    84
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    85
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    86
Now we can prove a fundamental theorem about the interaction between
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    87
evaluation and substitution: applying a substitution $s$ to an expression $a$
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    88
and evaluating the result in an environment $env$ yields the same result as
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    89
evaluation $a$ in the environment that maps every variable $x$ to the value
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    90
of $s(x)$ under $env$. If you try to prove this separately for arithmetic or
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    91
boolean expressions (by induction), you find that you always need the other
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    92
theorem in the induction step. Therefore you need to state and prove both
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    93
theorems simultaneously:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    94
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    95
8771
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    96
lemma "evala (substa s a) env = evala a (\\<lambda>x. evala (s x) env) \\<and>
026f37a86ea7 *** empty log message ***
nipkow
parents: 8745
diff changeset
    97
        evalb (substb s b) env = evalb b (\\<lambda>x. evala (s x) env)";
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    98
apply(induct_tac a and b);
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
    99
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   100
txt{*\noindent
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   101
The resulting 8 goals (one for each constructor) are proved in one fell swoop:
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   102
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   103
9458
c613cd06d5cf apply. -> by
nipkow
parents: 8771
diff changeset
   104
by auto;
8745
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   105
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   106
text{*
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   107
In general, given $n$ mutually recursive datatypes $\tau@1$, \dots, $\tau@n$,
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   108
an inductive proof expects a goal of the form
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   109
\[ P@1(x@1)\ \land \dots \land P@n(x@n) \]
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   110
where each variable $x@i$ is of type $\tau@i$. Induction is started by
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   111
\begin{ttbox}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   112
apply(induct_tac \(x@1\) \texttt{and} \(\dots\) \texttt{and} \(x@n\));
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   113
\end{ttbox}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   114
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   115
\begin{exercise}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   116
  Define a function \isa{norma} of type \isa{'a aexp \isasymFun\ 'a aexp} that
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   117
  replaces \isa{IF}s with complex boolean conditions by nested
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   118
  \isa{IF}s where each condition is a \isa{Less} --- \isa{And} and
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   119
  \isa{Neg} should be eliminated completely. Prove that \isa{norma}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   120
  preserves the value of an expression and that the result of \isa{norma}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   121
  is really normal, i.e.\ no more \isa{And}s and \isa{Neg}s occur in
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   122
  it.  ({\em Hint:} proceed as in \S\ref{sec:boolex}).
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   123
\end{exercise}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   124
*}
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   125
(*<*)
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   126
end
13b32661dde4 I wonder which files i forgot.
nipkow
parents:
diff changeset
   127
(*>*)