LMCS-Paper/Paper.thy
author Christian Urban <urbanc@in.tum.de>
Sat, 10 Sep 2011 00:03:42 +0100
changeset 3007 c5de60da0bcf
parent 3006 4baa2fccfb61
child 3008 21674aea64e0
permissions -rw-r--r--
more
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
(*<*)
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
theory Paper
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
imports "../Nominal/Nominal2" 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
        "~~/src/HOL/Library/LaTeXsugar"
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
begin
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
consts
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
  fv :: "'a \<Rightarrow> 'b"
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
  abs_set :: "'a \<Rightarrow> 'b \<Rightarrow> 'c"
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
  alpha_bn :: "'a \<Rightarrow> 'a \<Rightarrow> bool"
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
  abs_set2 :: "'a \<Rightarrow> perm \<Rightarrow> 'b \<Rightarrow> 'c"
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    12
  Abs_dist :: "'a \<Rightarrow> 'b \<Rightarrow> 'c" 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
  Abs_print :: "'a \<Rightarrow> 'b \<Rightarrow> 'c" 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    15
definition
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
 "equal \<equiv> (op =)" 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    17
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    18
fun alpha_set_ex where
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    19
  "alpha_set_ex (bs, x) R f (cs, y) = (\<exists>pi. alpha_set (bs, x) R f pi (cs, y))"
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    20
 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    21
fun alpha_res_ex where
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    22
  "alpha_res_ex (bs, x) R f pi (cs, y) = (\<exists>pi. alpha_res (bs, x) R f pi (cs, y))"
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    23
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    24
fun alpha_lst_ex where
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    25
  "alpha_lst_ex (bs, x) R f pi (cs, y) = (\<exists>pi. alpha_lst (bs, x) R f pi (cs, y))"
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    26
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    27
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    28
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
notation (latex output)
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
  swap ("'(_ _')" [1000, 1000] 1000) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
  fresh ("_ # _" [51, 51] 50) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
  fresh_star ("_ #\<^sup>* _" [51, 51] 50) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    33
  supp ("supp _" [78] 73) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
  uminus ("-_" [78] 73) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    35
  If  ("if _ then _ else _" 10) and
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    36
  alpha_set_ex ("_ \<approx>\<^raw:\,\raisebox{-1pt}{\makebox[0mm][l]{$_{\textit{set}}$}}>\<^bsup>_, _\<^esup> _") and
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    37
  alpha_lst_ex ("_ \<approx>\<^raw:\,\raisebox{-1pt}{\makebox[0mm][l]{$_{\textit{list}}$}}>\<^bsup>_, _\<^esup> _") and
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
    38
  alpha_res_ex ("_ \<approx>\<^raw:\,\raisebox{-1pt}{\makebox[0mm][l]{$_{\textit{set+}}$}}>\<^bsup>_, _\<^esup> _") and
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
  abs_set ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set}}$}> _") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
  abs_set2 ("_ \<approx>\<^raw:\raisebox{-1pt}{\makebox[0mm][l]{$\,_{\textit{list}}$}}>\<^bsup>_\<^esup>  _") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
  fv ("fa'(_')" [100] 100) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
  equal ("=") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
  alpha_abs_set ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set}}$}> _") and 
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
    44
  alpha_abs_lst ("_ \<approx>\<^raw:{$\,_{\textit{abs\_list}}$}> _") and 
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
    45
  alpha_abs_res ("_ \<approx>\<^raw:{$\,_{\textit{abs\_set+}}$}> _") and 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
  Abs_set ("[_]\<^bsub>set\<^esub>._" [20, 101] 999) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
  Abs_lst ("[_]\<^bsub>list\<^esub>._") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
  Abs_dist ("[_]\<^bsub>#list\<^esub>._") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
  Abs_res ("[_]\<^bsub>set+\<^esub>._") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    50
  Abs_print ("_\<^bsub>set\<^esub>._") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    51
  Cons ("_::_" [78,77] 73) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    52
  supp_set ("aux _" [1000] 10) and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    53
  alpha_bn ("_ \<approx>bn _")
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
consts alpha_trm ::'a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
consts fa_trm :: 'a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
consts alpha_trm2 ::'a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
consts fa_trm2 :: 'a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
consts ast :: 'a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
consts ast' :: 'a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
notation (latex output) 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
  alpha_trm ("\<approx>\<^bsub>trm\<^esub>") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
  fa_trm ("fa\<^bsub>trm\<^esub>") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    64
  alpha_trm2 ("'(\<approx>\<^bsub>assn\<^esub>, \<approx>\<^bsub>trm\<^esub>')") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
  fa_trm2 ("'(fa\<^bsub>assn\<^esub>, fa\<^bsub>trm\<^esub>')") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    66
  ast ("'(as, t')") and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
  ast' ("'(as', t\<PRIME> ')")
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    69
(*>*)
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    70
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    71
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    72
section {* Introduction *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
text {*
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    75
  So far, Nominal Isabelle provided a mechanism for constructing alpha-equated
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    76
  terms, for example lambda-terms
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    77
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    78
  \[
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    79
  @{text "t ::= x | t t | \<lambda>x. t"}
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    80
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    81
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    82
  \noindent
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    83
  where free and bound variables have names.  For such alpha-equated terms,
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
  Nominal Isabelle derives automatically a reasoning infrastructure that has
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    85
  been used successfully in formalisations of an equivalence checking
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    86
  algorithm for LF \cite{UrbanCheneyBerghofer08}, Typed
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    87
  Scheme~\cite{TobinHochstadtFelleisen08}, several calculi for concurrency
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    88
  \cite{BengtsonParow09} and a strong normalisation result for cut-elimination
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    89
  in classical logic \cite{UrbanZhu08}. It has also been used by Pollack for
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    90
  formalisations in the locally-nameless approach to binding
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    91
  \cite{SatoPollack10}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    92
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    93
  However, Nominal Isabelle has fared less well in a formalisation of the
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    94
  algorithm W \cite{UrbanNipkow09}, where types and type-schemes are,
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    95
  respectively, of the form
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    96
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
  \begin{equation}\label{tysch}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    98
  \begin{array}{l}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
    99
  @{text "T ::= x | T \<rightarrow> T"}\hspace{15mm}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   100
  @{text "S ::= \<forall>{x\<^isub>1,\<dots>, x\<^isub>n}. T"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   101
  \end{array}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   102
  \end{equation}\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   103
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   104
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   105
  and the @{text "\<forall>"}-quantification binds a finite (possibly empty) set of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   106
  type-variables.  While it is possible to implement this kind of more general
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   107
  binders by iterating single binders, this leads to a rather clumsy
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   108
  formalisation of W. The need of iterating single binders is also one reason
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   109
  why Nominal Isabelle and similar theorem provers that only provide
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   110
  mechanisms for binding single variables have not fared extremely well with
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   111
  the more advanced tasks in the POPLmark challenge \cite{challenge05},
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   112
  because also there one would like to bind multiple variables at once.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   113
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   114
  Binding multiple variables has interesting properties that cannot be captured
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
  easily by iterating single binders. For example in the case of type-schemes we do not
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
  want to make a distinction about the order of the bound variables. Therefore
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   117
  we would like to regard in \eqref{ex1} below  the first pair of type-schemes as alpha-equivalent,
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   118
  but assuming that @{text x}, @{text y} and @{text z} are distinct variables,
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   119
  the second pair should \emph{not} be alpha-equivalent:
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   120
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
  \begin{equation}\label{ex1}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
  @{text "\<forall>{x, y}. x \<rightarrow> y  \<approx>\<^isub>\<alpha>  \<forall>{y, x}. y \<rightarrow> x"}\hspace{10mm}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   123
  @{text "\<forall>{x, y}. x \<rightarrow> y  \<notapprox>\<^isub>\<alpha>  \<forall>{z}. z \<rightarrow> z"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   124
  \end{equation}\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   125
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   127
  Moreover, we like to regard type-schemes as alpha-equivalent, if they differ
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   128
  only on \emph{vacuous} binders, such as
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   129
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   130
  \begin{equation}\label{ex3}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   131
  @{text "\<forall>{x}. x \<rightarrow> y  \<approx>\<^isub>\<alpha>  \<forall>{x, z}. x \<rightarrow> y"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   132
  \end{equation}\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   133
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   134
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   135
  where @{text z} does not occur freely in the type.  In this paper we will
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   136
  give a general binding mechanism and associated notion of alpha-equivalence
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   137
  that can be used to faithfully represent this kind of binding in Nominal
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   138
  Isabelle.  The difficulty of finding the right notion for alpha-equivalence
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   139
  can be appreciated in this case by considering that the definition given for
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   140
  type-schemes by Leroy in \cite[Page 18--19]{Leroy92} is incorrect (it omits a side-condition).
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   141
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   142
  However, the notion of alpha-equivalence that is preserved by vacuous
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   143
  binders is not always wanted. For example in terms like
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   144
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
  \begin{equation}\label{one}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
  @{text "\<LET> x = 3 \<AND> y = 2 \<IN> x - y \<END>"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   147
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   148
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   149
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
  we might not care in which order the assignments @{text "x = 3"} and
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   151
  \mbox{@{text "y = 2"}} are given, but it would be often unusual (particularly
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   152
  in strict languages) to regard \eqref{one} as alpha-equivalent with
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   153
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   154
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   155
  @{text "\<LET> x = 3 \<AND> y = 2 \<AND> z = foo \<IN> x - y \<END>"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   156
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   157
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   158
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
  Therefore we will also provide a separate binding mechanism for cases in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
  which the order of binders does not matter, but the ``cardinality'' of the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   161
  binders has to agree.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   162
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   163
  However, we found that this is still not sufficient for dealing with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   164
  language constructs frequently occurring in programming language
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   165
  research. For example in @{text "\<LET>"}s containing patterns like
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   166
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   167
  \begin{equation}\label{two}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   168
  @{text "\<LET> (x, y) = (3, 2) \<IN> x - y \<END>"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   169
  \end{equation}\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   170
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
  we want to bind all variables from the pattern inside the body of the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173
  $\mathtt{let}$, but we also care about the order of these variables, since
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   174
  we do not want to regard \eqref{two} as alpha-equivalent with
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   175
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   176
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   177
  @{text "\<LET> (y, x) = (3, 2) \<IN> x - y \<END>"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   178
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   179
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   180
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   181
  As a result, we provide three general binding mechanisms each of which binds
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   182
  multiple variables at once, and let the user chose which one is intended
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   183
  when formalising a term-calculus.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   184
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   185
  By providing these general binding mechanisms, however, we have to work
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   186
  around a problem that has been pointed out by Pottier \cite{Pottier06} and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   187
  Cheney \cite{Cheney05}: in @{text "\<LET>"}-constructs of the form
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   188
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   189
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   190
  @{text "\<LET> x\<^isub>1 = t\<^isub>1 \<AND> \<dots> \<AND> x\<^isub>n = t\<^isub>n \<IN> s \<END>"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   191
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   192
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   193
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   194
  we care about the information that there are as many bound variables @{text
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   195
  "x\<^isub>i"} as there are @{text "t\<^isub>i"}. We lose this information if
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   196
  we represent the @{text "\<LET>"}-constructor by something like
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   197
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   198
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   199
  @{text "\<LET> (\<lambda>x\<^isub>1\<dots>x\<^isub>n . s)  [t\<^isub>1,\<dots>,t\<^isub>n]"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   200
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   201
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   202
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   203
  where the notation @{text "\<lambda>_ . _"} indicates that the list of @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   204
  "x\<^isub>i"} becomes bound in @{text s}. In this representation the term
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   205
  \mbox{@{text "\<LET> (\<lambda>x . s) [t\<^isub>1, t\<^isub>2]"}} is a perfectly
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   206
  legal instance, but the lengths of the two lists do not agree. To exclude
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   207
  such terms, additional predicates about well-formed terms are needed in
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   208
  order to ensure that the two lists are of equal length. This can result in
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   209
  very messy reasoning (see for example~\cite{BengtsonParow09}). To avoid
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   210
  this, we will allow type specifications for @{text "\<LET>"}s as follows
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   211
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   212
  \[
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   213
  \mbox{\begin{tabular}{r@ {\hspace{2mm}}r@ {\hspace{2mm}}ll}
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   214
  @{text trm} & @{text "::="}  & @{text "\<dots>"} \\
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   215
              & @{text "|"}    & @{text "\<LET>  as::assn  s::trm"}\hspace{2mm} 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   216
                                 \isacommand{binds} @{text "bn(as)"} \isacommand{in} @{text "s"}\\[1mm]
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   217
  @{text assn} & @{text "::="} & @{text "\<ANIL>"}\\
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   218
               &  @{text "|"}  & @{text "\<ACONS>  name  trm  assn"}
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   219
  \end{tabular}}
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   220
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   221
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   222
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   223
  where @{text assn} is an auxiliary type representing a list of assignments
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   224
  and @{text bn} an auxiliary function identifying the variables to be bound
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   225
  by the @{text "\<LET>"}. This function can be defined by recursion over @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   226
  assn} as follows
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   227
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   228
  \[
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   229
  @{text "bn(\<ANIL>) ="} @{term "{}"} \hspace{10mm} 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   230
  @{text "bn(\<ACONS> x t as) = {x} \<union> bn(as)"} 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   231
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   232
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   233
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   234
  The scope of the binding is indicated by labels given to the types, for
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   235
  example @{text "s::trm"}, and a binding clause, in this case
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   236
  \isacommand{binds} @{text "bn(as)"} \isacommand{in} @{text "s"}. This binding
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   237
  clause states that all the names the function @{text "bn(as)"} returns
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   238
  should be bound in @{text s}.  This style of specifying terms and bindings
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   239
  is heavily inspired by the syntax of the Ott-tool \cite{ott-jfp}. Our work
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   240
  extends Ott in several aspects: one is that we support three binding
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   241
  modes---Ott has only one, namely the one where the order of binders matters.
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   242
  Another is that our reasoning infrastructure, like strong induction principles
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   243
  and the notion of free variables, is derived from first principles within 
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   244
  the Isabelle/HOL theorem prover.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   245
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   246
  However, we will not be able to cope with all specifications that are
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   247
  allowed by Ott. One reason is that Ott lets the user specify ``empty'' types
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   248
  like \mbox{@{text "t ::= t t | \<lambda>x. t"}} where no clause for variables is
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   249
  given. Arguably, such specifications make some sense in the context of Coq's
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   250
  type theory (which Ott supports), but not at all in a HOL-based environment
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   251
  where every datatype must have a non-empty set-theoretic model
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   252
  \cite{Berghofer99}.  Another reason is that we establish the reasoning
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   253
  infrastructure for alpha-\emph{equated} terms. In contrast, Ott produces a
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   254
  reasoning infrastructure in Isabelle/HOL for \emph{non}-alpha-equated, or
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   255
  ``raw'', terms. While our alpha-equated terms and the raw terms produced by
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   256
  Ott use names for bound variables, there is a key difference: working with
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   257
  alpha-equated terms means, for example, that the two type-schemes
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   258
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   259
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   260
  @{text "\<forall>{x}. x \<rightarrow> y  = \<forall>{x, z}. x \<rightarrow> y"} 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   261
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   262
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   263
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   264
  are not just alpha-equal, but actually \emph{equal}! As a result, we can
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   265
  only support specifications that make sense on the level of alpha-equated
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   266
  terms (offending specifications, which for example bind a variable according
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   267
  to a variable bound somewhere else, are not excluded by Ott, but we have
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   268
  to).  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   269
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   270
  Our insistence on reasoning with alpha-equated terms comes from the
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   271
  wealth of experience we gained with the older version of Nominal Isabelle:
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   272
  for non-trivial properties, reasoning with alpha-equated terms is much
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   273
  easier than reasoning with raw terms. The fundamental reason for this is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   274
  that the HOL-logic underlying Nominal Isabelle allows us to replace
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   275
  ``equals-by-equals''. In contrast, replacing
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   276
  ``alpha-equals-by-alpha-equals'' in a representation based on raw terms
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   277
  requires a lot of extra reasoning work.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   278
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   279
  Although in informal settings a reasoning infrastructure for alpha-equated
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   280
  terms is nearly always taken for granted, establishing it automatically in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   281
  Isabelle/HOL is a rather non-trivial task. For every
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   282
  specification we will need to construct type(s) containing as elements the
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   283
  alpha-equated terms. To do so, we use the standard HOL-technique of defining
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   284
  a new type by identifying a non-empty subset of an existing type.  The
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   285
  construction we perform in Isabelle/HOL can be illustrated by the following picture:
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   286
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   287
  \[
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   288
  \mbox{\begin{tikzpicture}[scale=1.1]
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   289
  %\draw[step=2mm] (-4,-1) grid (4,1);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   290
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   291
  \draw[very thick] (0.7,0.4) circle (4.25mm);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   292
  \draw[rounded corners=1mm, very thick] ( 0.0,-0.8) rectangle ( 1.8, 0.9);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   293
  \draw[rounded corners=1mm, very thick] (-1.95,0.85) rectangle (-2.85,-0.05);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   294
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   295
  \draw (-2.0, 0.845) --  (0.7,0.845);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   296
  \draw (-2.0,-0.045)  -- (0.7,-0.045);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   297
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   298
  \draw ( 0.7, 0.4) node {\footnotesize\begin{tabular}{@ {}c@ {}}$\alpha$-\\[-1mm]clas.\end{tabular}};
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   299
  \draw (-2.4, 0.4) node {\footnotesize\begin{tabular}{@ {}c@ {}}$\alpha$-eq.\\[-1mm]terms\end{tabular}};
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   300
  \draw (1.8, 0.48) node[right=-0.1mm]
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   301
    {\small\begin{tabular}{@ {}l@ {}}existing\\[-1mm] type\\ (sets of raw terms)\end{tabular}};
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   302
  \draw (0.9, -0.35) node {\footnotesize\begin{tabular}{@ {}l@ {}}non-empty\\[-1mm]subset\end{tabular}};
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   303
  \draw (-3.25, 0.55) node {\small\begin{tabular}{@ {}l@ {}}new\\[-1mm]type\end{tabular}};
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   304
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   305
  \draw[<->, very thick] (-1.8, 0.3) -- (-0.1,0.3);
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   306
  \draw (-0.95, 0.3) node[above=0mm] {\footnotesize{}isomorphism};
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   307
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   308
  \end{tikzpicture}}
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   309
  \]\smallskip
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   310
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   311
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   312
  We take as the starting point a definition of raw terms (defined as a
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   313
  datatype in Isabelle/HOL); then identify the alpha-equivalence classes in
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   314
  the type of sets of raw terms according to our alpha-equivalence relation,
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   315
  and finally define the new type as these alpha-equivalence classes (the
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   316
  non-emptiness requirement is always satisfied whenever the raw terms are
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   317
  definable as datatype in Isabelle/HOL and our relation for alpha-equivalence
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   318
  is an equivalence relation).
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   319
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   320
  The fact that we obtain an isomorphism between the new type and the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   321
  non-empty subset shows that the new type is a faithful representation of
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   322
  alpha-equated terms. That is not the case for example for terms using the
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   323
  locally nameless representation of binders \cite{McKinnaPollack99}: in this
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   324
  representation there are ``junk'' terms that need to be excluded by
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   325
  reasoning about a well-formedness predicate.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   326
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   327
  The problem with introducing a new type in Isabelle/HOL is that in order to
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   328
  be useful, a reasoning infrastructure needs to be ``lifted'' from the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   329
  underlying subset to the new type. This is usually a tricky and arduous
2990
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   330
  task. To ease it, we re-implemented in Isabelle/HOL \cite{KaliszykUrban11}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   331
  the quotient package described by Homeier \cite{Homeier05} for the HOL4
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   332
  system. This package allows us to lift definitions and theorems involving
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   333
  raw terms to definitions and theorems involving alpha-equated terms. For
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   334
  example if we define the free-variable function over raw lambda-terms
2991
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   335
  as follows
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   336
2990
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   337
  \[
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   338
  \mbox{\begin{tabular}{l@ {\hspace{1mm}}r@ {\hspace{1mm}}l}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   339
  @{text "fv(x)"}     & @{text "\<equiv>"} & @{text "{x}"}\\
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   340
  @{text "fv(t\<^isub>1 t\<^isub>2)"} & @{text "\<equiv>"} & @{text "fv(t\<^isub>1) \<union> fv(t\<^isub>2)"}\\
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   341
  @{text "fv(\<lambda>x.t)"}  & @{text "\<equiv>"} & @{text "fv(t) - {x}"}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   342
  \end{tabular}}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   343
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   344
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   345
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   346
  then with the help of the quotient package we can obtain a function @{text "fv\<^sup>\<alpha>"}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   347
  operating on quotients, that is alpha-equivalence classes of lambda-terms. This
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   348
  lifted function is characterised by the equations
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   349
2990
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   350
  \[
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   351
  \mbox{\begin{tabular}{l@ {\hspace{1mm}}r@ {\hspace{1mm}}l}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   352
  @{text "fv\<^sup>\<alpha>(x)"}     & @{text "="} & @{text "{x}"}\\
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   353
  @{text "fv\<^sup>\<alpha>(t\<^isub>1 t\<^isub>2)"} & @{text "="} & @{text "fv\<^sup>\<alpha>(t\<^isub>1) \<union> fv\<^sup>\<alpha>(t\<^isub>2)"}\\
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   354
  @{text "fv\<^sup>\<alpha>(\<lambda>x.t)"}  & @{text "="} & @{text "fv\<^sup>\<alpha>(t) - {x}"}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   355
  \end{tabular}}
5d145fe77ec1 a little tuning on the paper
Christian Urban <urbanc@in.tum.de>
parents: 2989
diff changeset
   356
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   357
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   358
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   359
  (Note that this means also the term-constructors for variables, applications
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   360
  and lambda are lifted to the quotient level.)  This construction, of course,
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   361
  only works if alpha-equivalence is indeed an equivalence relation, and the
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   362
  ``raw'' definitions and theorems are respectful w.r.t.~alpha-equivalence.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   363
  For example, we will not be able to lift a bound-variable function. Although
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   364
  this function can be defined for raw terms, it does not respect
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   365
  alpha-equivalence and therefore cannot be lifted. 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   366
  To sum up, every lifting
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   367
  of theorems to the quotient level needs proofs of some respectfulness
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   368
  properties (see \cite{Homeier05}). In the paper we show that we are able to
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   369
  automate these proofs and as a result can automatically establish a reasoning 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   370
  infrastructure for alpha-equated terms.\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   371
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   372
  The examples we have in mind where our reasoning infrastructure will be
3003
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   373
  helpful include the term language of Core-Haskell (see
2991
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   374
  Figure~\ref{corehas}). This term language involves patterns that have lists
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   375
  of type-, coercion- and term-variables, all of which are bound in @{text
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   376
  "\<CASE>"}-expressions. In these patterns we do not know in advance how many
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   377
  variables need to be bound. Another example is the algorithm W,
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   378
  which includes multiple binders in type-schemes.\medskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   379
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   380
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   381
  {\bf Contributions:}  We provide three new definitions for when terms
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   382
  involving general binders are alpha-equivalent. These definitions are
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   383
  inspired by earlier work of Pitts \cite{Pitts04}. By means of automatic
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   384
  proofs, we establish a reasoning infrastructure for alpha-equated
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   385
  terms, including properties about support, freshness and equality
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   386
  conditions for alpha-equated terms. We are also able to derive strong 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   387
  induction principles that have the variable convention already built in.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   388
  The method behind our specification of general binders is taken 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   389
  from the Ott-tool, but we introduce crucial restrictions, and also extensions, so 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   390
  that our specifications make sense for reasoning about alpha-equated terms.  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   391
  The main improvement over Ott is that we introduce three binding modes
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   392
  (only one is present in Ott), provide formalised definitions for alpha-equivalence and 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   393
  for free variables of our terms, and also derive a reasoning infrastructure
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   394
  for our specifications from ``first principles'' inside a theorem prover.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   395
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   396
2991
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   397
  \begin{figure}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   398
  \begin{boxedminipage}{\linewidth}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   399
  \begin{center}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   400
  \begin{tabular}{@ {\hspace{8mm}}r@ {\hspace{2mm}}r@ {\hspace{2mm}}l}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   401
  \multicolumn{3}{@ {}l}{Type Kinds}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   402
  @{text "\<kappa>"} & @{text "::="} & @{text "\<star> | \<kappa>\<^isub>1 \<rightarrow> \<kappa>\<^isub>2"}\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   403
  \multicolumn{3}{@ {}l}{Coercion Kinds}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   404
  @{text "\<iota>"} & @{text "::="} & @{text "\<sigma>\<^isub>1 \<sim> \<sigma>\<^isub>2"}\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   405
  \multicolumn{3}{@ {}l}{Types}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   406
  @{text "\<sigma>"} & @{text "::="} & @{text "a | T | \<sigma>\<^isub>1 \<sigma>\<^isub>2 | S\<^isub>n"}$\;\overline{@{text "\<sigma>"}}$@{text "\<^sup>n"} 
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   407
  @{text "| \<forall>a:\<kappa>. \<sigma> | \<iota> \<Rightarrow> \<sigma>"}\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   408
  \multicolumn{3}{@ {}l}{Coercion Types}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   409
  @{text "\<gamma>"} & @{text "::="} & @{text "c | C | \<gamma>\<^isub>1 \<gamma>\<^isub>2 | S\<^isub>n"}$\;\overline{@{text "\<gamma>"}}$@{text "\<^sup>n"}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   410
  @{text "| \<forall>c:\<iota>. \<gamma> | \<iota> \<Rightarrow> \<gamma> | refl \<sigma> | sym \<gamma> | \<gamma>\<^isub>1 \<circ> \<gamma>\<^isub>2"}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   411
  & @{text "|"} & @{text "\<gamma> @ \<sigma> | left \<gamma> | right \<gamma> | \<gamma>\<^isub>1 \<sim> \<gamma>\<^isub>2 | rightc \<gamma> | leftc \<gamma> | \<gamma>\<^isub>1 \<triangleright> \<gamma>\<^isub>2"}\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   412
  \multicolumn{3}{@ {}l}{Terms}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   413
  @{text "e"} & @{text "::="} & @{text "x | K | \<Lambda>a:\<kappa>. e | \<Lambda>c:\<iota>. e | e \<sigma> | e \<gamma> | \<lambda>x:\<sigma>. e | e\<^isub>1 e\<^isub>2"}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   414
  & @{text "|"} & @{text "\<LET> x:\<sigma> = e\<^isub>1 \<IN> e\<^isub>2 | \<CASE> e\<^isub>1 \<OF>"}$\;\overline{@{text "p \<rightarrow> e\<^isub>2"}}$ @{text "| e \<triangleright> \<gamma>"}\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   415
  \multicolumn{3}{@ {}l}{Patterns}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   416
  @{text "p"} & @{text "::="} & @{text "K"}$\;\overline{@{text "a:\<kappa>"}}\;\overline{@{text "c:\<iota>"}}\;\overline{@{text "x:\<sigma>"}}$\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   417
  \multicolumn{3}{@ {}l}{Constants}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   418
  & @{text C} & coercion constants\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   419
  & @{text T} & value type constructors\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   420
  & @{text "S\<^isub>n"} & n-ary type functions (which need to be fully applied)\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   421
  & @{text K} & data constructors\smallskip\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   422
  \multicolumn{3}{@ {}l}{Variables}\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   423
  & @{text a} & type variables\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   424
  & @{text c} & coercion variables\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   425
  & @{text x} & term variables\\
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   426
  \end{tabular}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   427
  \end{center}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   428
  \end{boxedminipage}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   429
  \caption{The System @{text "F\<^isub>C"}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   430
  \cite{CoreHaskell}, also often referred to as \emph{Core-Haskell}. In this
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   431
  version of @{text "F\<^isub>C"} we made a modification by separating the
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   432
  grammars for type kinds and coercion kinds, as well as for types and coercion
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   433
  types. For this paper the interesting term-constructor is @{text "\<CASE>"},
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   434
  which binds multiple type-, coercion- and term-variables.\label{corehas}}
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   435
  \end{figure}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   436
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   437
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   438
section {* A Short Review of the Nominal Logic Work *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   439
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   440
text {*
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   441
  At its core, Nominal Isabelle is an adaption of the nominal logic work by
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   442
  Pitts \cite{Pitts03}. This adaptation for Isabelle/HOL is described in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   443
  \cite{HuffmanUrban10} (including proofs). We shall briefly review this work
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   444
  to aid the description of what follows. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   445
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   446
  Two central notions in the nominal logic work are sorted atoms and
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   447
  sort-respecting permutations of atoms. We will use the letters @{text "a, b,
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   448
  c, \<dots>"} to stand for atoms and @{text "\<pi>, \<pi>\<^isub>1, \<dots>"} to stand for permutations,
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   449
  which in Nominal Isabelle have type @{typ perm}. The purpose of atoms is to
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   450
  represent variables, be they bound or free. The sorts of atoms can be used
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   451
  to represent different kinds of variables, such as the term-, coercion- and
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   452
  type-variables in Core-Haskell.  It is assumed that there is an infinite
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   453
  supply of atoms for each sort. In the interest of brevity, we shall restrict
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   454
  ourselves in what follows to only one sort of atoms.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   455
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   456
  Permutations are bijective functions from atoms to atoms that are 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   457
  the identity everywhere except on a finite number of atoms. There is a 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   458
  two-place permutation operation written
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   459
  @{text "_ \<bullet> _  ::  perm \<Rightarrow> \<beta> \<Rightarrow> \<beta>"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   460
  where the generic type @{text "\<beta>"} is the type of the object 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   461
  over which the permutation 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   462
  acts. In Nominal Isabelle, the identity permutation is written as @{term "0::perm"},
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   463
  the composition of two permutations @{term "\<pi>\<^isub>1"} and @{term "\<pi>\<^isub>2"} as \mbox{@{term "\<pi>\<^isub>1 + \<pi>\<^isub>2"}}, 
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   464
  and the inverse permutation of @{term "\<pi>"} as @{text "- \<pi>"}. The permutation
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   465
  operation is defined over Isabelle/HOL's type-hierarchy \cite{HuffmanUrban10};
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   466
  for example permutations acting on products, lists, sets, functions and booleans are
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   467
  given by:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   468
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   469
  \begin{equation}\label{permute}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   470
  \mbox{\begin{tabular}{@ {}c@ {\hspace{10mm}}c@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   471
  \begin{tabular}{@ {}l@ {}}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   472
  @{thm permute_prod.simps[where p="\<pi>", no_vars, THEN eq_reflection]}\\[2mm]
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   473
  @{thm permute_list.simps(1)[where p="\<pi>", no_vars, THEN eq_reflection]}\\
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   474
  @{thm permute_list.simps(2)[where p="\<pi>", no_vars, THEN eq_reflection]}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   475
  \end{tabular} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   476
  \begin{tabular}{@ {}l@ {}}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   477
  @{thm permute_set_eq[where p="\<pi>", no_vars, THEN eq_reflection]}\\
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   478
  @{text "\<pi> \<bullet> f \<equiv> \<lambda>x. \<pi> \<bullet> (f (- \<pi> \<bullet> x))"}\\
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   479
  @{thm permute_bool_def[where p="\<pi>", no_vars, THEN eq_reflection]}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   480
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   481
  \end{tabular}}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   482
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   483
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   484
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   485
  Concrete permutations in Nominal Isabelle are built up from swappings, 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   486
  written as \mbox{@{text "(a b)"}}, which are permutations that behave 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   487
  as follows:
2991
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   488
  
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   489
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   490
  @{text "(a b) = \<lambda>c. if a = c then b else if b = c then a else c"}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   491
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   492
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   493
  The most original aspect of the nominal logic work of Pitts is a general
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   494
  definition for the notion of the ``set of free variables of an object @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   495
  "x"}''.  This notion, written @{term "supp x"}, is general in the sense that
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   496
  it applies not only to lambda-terms (alpha-equated or not), but also to lists,
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   497
  products, sets and even functions. The definition depends only on the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   498
  permutation operation and on the notion of equality defined for the type of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   499
  @{text x}, namely:
2991
8146b0ad8212 more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2990
diff changeset
   500
  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   501
  \begin{equation}\label{suppdef}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   502
  @{thm supp_def[no_vars, THEN eq_reflection]}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   503
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   504
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   505
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   506
  There is also the derived notion for when an atom @{text a} is \emph{fresh}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   507
  for an @{text x}, defined as 
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   508
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   509
  \[
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   510
  @{thm fresh_def[no_vars]}
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   511
  \]\smallskip
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   512
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   513
  \noindent
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   514
  We use for sets of atoms the abbreviation 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   515
  @{thm (lhs) fresh_star_def[no_vars]}, defined as 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   516
  @{thm (rhs) fresh_star_def[no_vars]}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   517
  A striking consequence of these definitions is that we can prove
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   518
  without knowing anything about the structure of @{term x} that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   519
  swapping two fresh atoms, say @{text a} and @{text b}, leaves 
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   520
  @{text x} unchanged, namely 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   521
  
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   522
  \begin{prop}\label{swapfreshfresh}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   523
  If @{thm (prem 1) swap_fresh_fresh[no_vars]} and @{thm (prem 2) swap_fresh_fresh[no_vars]}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   524
  then @{thm (concl) swap_fresh_fresh[no_vars]}.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   525
  \end{prop}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   526
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   527
  While often the support of an object can be relatively easily 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   528
  described, for example for atoms, products, lists, function applications, 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   529
  booleans and permutations as follows
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   530
  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   531
  \begin{equation}\label{supps}\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   532
  \begin{tabular}{c@ {\hspace{10mm}}c}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   533
  \begin{tabular}{rcl}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   534
  @{term "supp a"} & $=$ & @{term "{a}"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   535
  @{term "supp (x, y)"} & $=$ & @{term "supp x \<union> supp y"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   536
  @{term "supp []"} & $=$ & @{term "{}"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   537
  @{term "supp (x#xs)"} & $=$ & @{term "supp x \<union> supp xs"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   538
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   539
  &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   540
  \begin{tabular}{rcl}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   541
  @{text "supp (f x)"} & @{text "\<subseteq>"} & @{term "supp f \<union> supp x"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   542
  @{term "supp b"} & $=$ & @{term "{}"}\\
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   543
  @{term "supp \<pi>"} & $=$ & @{term "{a. \<pi> \<bullet> a \<noteq> a}"}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   544
  \end{tabular}
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   545
  \end{tabular}}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   546
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   547
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   548
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   549
  in some cases it can be difficult to characterise the support precisely, and
3000
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   550
  only an approximation can be established (as for function applications
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   551
  above). Reasoning about such approximations can be simplified with the
3c8d3aaf292c more on the lmcs paper
Christian Urban <urbanc@in.tum.de>
parents: 2991
diff changeset
   552
  notion \emph{supports}, defined as follows:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   553
  
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   554
  \begin{defi}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   555
  A set @{text S} \emph{supports} @{text x}, if for all atoms @{text a} and @{text b}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   556
  not in @{text S} we have @{term "(a \<rightleftharpoons> b) \<bullet> x = x"}.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   557
  \end{defi}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   558
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   559
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   560
  The main point of @{text supports} is that we can establish the following 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   561
  two properties.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   562
  
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   563
  \begin{prop}\label{supportsprop}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   564
  Given a set @{text "as"} of atoms.\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   565
  {\it (i)} If @{thm (prem 1) supp_is_subset[where S="as", no_vars]}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   566
  and @{thm (prem 2) supp_is_subset[where S="as", no_vars]} then 
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   567
  @{thm (concl) supp_is_subset[where S="as", no_vars]}.\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   568
  {\it (ii)} @{thm supp_supports[no_vars]}.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   569
  \end{prop}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   570
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   571
  Another important notion in the nominal logic work is \emph{equivariance}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   572
  For a function @{text f}, say of type @{text "\<alpha> \<Rightarrow> \<beta>"}, to be equivariant 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   573
  it is required that every permutation leaves @{text f} unchanged, that is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   574
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   575
  \begin{equation}\label{equivariancedef}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   576
  @{term "\<forall>\<pi>. \<pi> \<bullet> f = f"}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   577
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   578
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   579
  \noindent or equivalently that a permutation applied to the application
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   580
  @{text "f x"} can be moved to the argument @{text x}. That means for equivariant
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   581
  functions @{text f}, we have for all permutations @{text "\<pi>"}:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   582
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   583
  \begin{equation}\label{equivariance}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   584
  @{text "\<pi> \<bullet> f = f"} \;\;\;\;\textit{if and only if}\;\;\;\;
3003
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   585
  @{text "\<forall>x. \<pi> \<bullet> (f x) = f (\<pi> \<bullet> x)"}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   586
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   587
   
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   588
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   589
  From property \eqref{equivariancedef} and the definition of @{text supp}, we 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   590
  can easily deduce that equivariant functions have empty support. There is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   591
  also a similar notion for equivariant relations, say @{text R}, namely the property
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   592
  that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   593
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   594
  \begin{center}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   595
  @{text "x R y"} \;\;\textit{implies}\;\; @{text "(\<pi> \<bullet> x) R (\<pi> \<bullet> y)"}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   596
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   597
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   598
  Using freshness, the nominal logic work provides us with general means for renaming 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   599
  binders. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   600
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   601
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   602
  While in the older version of Nominal Isabelle, we used extensively 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   603
  Property~\ref{swapfreshfresh} to rename single binders, this property 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   604
  proved too unwieldy for dealing with multiple binders. For such binders the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   605
  following generalisations turned out to be easier to use.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   606
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   607
  \begin{prop}\label{supppermeq}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   608
  @{thm[mode=IfThen] supp_perm_eq[where p="\<pi>", no_vars]}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   609
  \end{prop}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   610
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   611
  \begin{prop}\label{avoiding}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   612
  For a finite set @{text as} and a finitely supported @{text x} with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   613
  @{term "as \<sharp>* x"} and also a finitely supported @{text c}, there
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   614
  exists a permutation @{text "\<pi>"} such that @{term "(\<pi> \<bullet> as) \<sharp>* c"} and
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   615
  @{term "supp x \<sharp>* \<pi>"}.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   616
  \end{prop}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   617
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   618
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   619
  The idea behind the second property is that given a finite set @{text as}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   620
  of binders (being bound, or fresh, in @{text x} is ensured by the
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   621
  assumption @{term "as \<sharp>* x"}), then there exists a permutation @{text "\<pi>"} such that
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   622
  the renamed binders @{term "\<pi> \<bullet> as"} avoid @{text c} (which can be arbitrarily chosen
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   623
  as long as it is finitely supported) and also @{text "\<pi>"} does not affect anything
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   624
  in the support of @{text x} (that is @{term "supp x \<sharp>* \<pi>"}). The last 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   625
  fact and Property~\ref{supppermeq} allow us to ``rename'' just the binders 
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   626
  @{text as} in @{text x}, because @{term "\<pi> \<bullet> x = x"}. Note that @{term "supp x \<sharp>* \<pi>"}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   627
  is equivalent with @{term "supp \<pi> \<sharp>* x"}, which means we could also formulate 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   628
  Propositions \ref{supppermeq} and \ref{avoiding} in the other `direction', however the 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   629
  reasoning infrastructure of Nominal Isabelle is set up so that it provides more
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   630
  automation for the original formulation.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   631
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   632
  Most properties given in this section are described in detail in \cite{HuffmanUrban10}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   633
  and all are formalised in Isabelle/HOL. In the next sections we will make 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   634
  use of these properties in order to define alpha-equivalence in 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   635
  the presence of multiple binders.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   636
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   637
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   638
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   639
section {* General Bindings\label{sec:binders} *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   640
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   641
text {*
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   642
  In Nominal Isabelle, the user is expected to write down a specification of a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   643
  term-calculus and then a reasoning infrastructure is automatically derived
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   644
  from this specification (remember that Nominal Isabelle is a definitional
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   645
  extension of Isabelle/HOL, which does not introduce any new axioms).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   646
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   647
  In order to keep our work with deriving the reasoning infrastructure
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   648
  manageable, we will wherever possible state definitions and perform proofs
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   649
  on the ``user-level'' of Isabelle/HOL, as opposed to write custom ML-code that
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   650
  generates them anew for each specification. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   651
  To that end, we will consider
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   652
  first pairs @{text "(as, x)"} of type @{text "(atom set) \<times> \<beta>"}.  These pairs
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   653
  are intended to represent the abstraction, or binding, of the set of atoms @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   654
  "as"} in the body @{text "x"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   655
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   656
  The first question we have to answer is when two pairs @{text "(as, x)"} and
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   657
  @{text "(bs, y)"} are alpha-equivalent? (For the moment we are interested in
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   658
  the notion of alpha-equivalence that is \emph{not} preserved by adding
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   659
  vacuous binders.) To answer this question, we identify four conditions: {\it (i)}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   660
  given a free-atom function @{text "fa"} of type \mbox{@{text "\<beta> \<Rightarrow> atom
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   661
  set"}}, then @{text x} and @{text y} need to have the same set of free
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   662
  atoms; moreover there must be a permutation @{text \<pi>} such that {\it
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   663
  (ii)} @{text \<pi>} leaves the free atoms of @{text x} and @{text y} unchanged, but
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   664
  {\it (iii)} ``moves'' their bound names so that we obtain modulo a relation,
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   665
  say \mbox{@{text "_ R _"}}, two equivalent terms. We also require that {\it (iv)}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   666
  @{text \<pi>} makes the sets of abstracted atoms @{text as} and @{text bs} equal. The
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   667
  requirements {\it (i)} to {\it (iv)} can be stated formally as the conjunction of:
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   668
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   669
  \begin{defi}[Alpha-Equivalence for Set-Bindings]\label{alphaset}\mbox{}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   670
  \begin{tabular}{@ {\hspace{10mm}}l@ {\hspace{5mm}}rl}  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   671
  @{term "alpha_set_ex (as, x) R fa (bs, y)"}\hspace{2mm}@{text "\<equiv>"} & 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   672
    \multicolumn{2}{@ {}l}{if there exists a @{text "\<pi>"} such that:}\\ 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   673
       & \mbox{\it (i)}   & @{term "fa(x) - as = fa(y) - bs"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   674
       & \mbox{\it (ii)}  & @{term "(fa(x) - as) \<sharp>* \<pi>"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   675
       & \mbox{\it (iii)} &  @{text "(\<pi> \<bullet> x) R y"} \\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   676
       & \mbox{\it (iv)}  & @{term "(\<pi> \<bullet> as) = bs"} \\ 
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   677
  \end{tabular}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   678
  \end{defi}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   679
 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   680
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   681
  Note that the relation is
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   682
  dependent on a free-atom function @{text "fa"} and a relation @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   683
  "R"}. The reason for this extra generality is that we will use
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   684
  $\approx_{\,\textit{set}}$ for both ``raw'' terms and alpha-equated terms. In
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   685
  the latter case, @{text R} will be replaced by equality @{text "="} and we
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   686
  will prove that @{text "fa"} is equal to @{text "supp"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   687
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   688
  Definition \ref{alphaset} does not make any distinction between the
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   689
  order of abstracted atoms. If we want this, then we can define alpha-equivalence 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   690
  for pairs of the form \mbox{@{text "(as, x)"}} with type @{text "(atom list) \<times> \<beta>"} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   691
  as follows
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   692
  
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   693
  \begin{defi}[Alpha-Equivalence for List-Bindings]\label{alphalist}\mbox{}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   694
  \begin{tabular}{@ {\hspace{10mm}}l@ {\hspace{5mm}}rl}  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   695
  @{term "alpha_lst_ex (as, x) R fa (bs, y)"}\hspace{2mm}@{text "\<equiv>"} &
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   696
  \multicolumn{2}{@ {}l}{if there exists a @{text "\<pi>"} such that:}\\ 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   697
         & \mbox{\it (i)}   & @{term "fa(x) - (set as) = fa(y) - (set bs)"}\\ 
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   698
         & \mbox{\it (ii)}  & @{term "(fa(x) - set as) \<sharp>* \<pi>"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   699
         & \mbox{\it (iii)} & @{text "(\<pi> \<bullet> x) R y"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   700
         & \mbox{\it (iv)}  & @{term "(\<pi> \<bullet> as) = bs"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   701
  \end{tabular}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   702
  \end{defi}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   703
  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   704
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   705
  where @{term set} is the function that coerces a list of atoms into a set of atoms.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   706
  Now the last clause ensures that the order of the binders matters (since @{text as}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   707
  and @{text bs} are lists of atoms).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   708
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   709
  If we do not want to make any difference between the order of binders \emph{and}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   710
  also allow vacuous binders, that means \emph{restrict} names, then we keep sets of binders, but drop 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   711
  condition {\it (iv)} in Definition~\ref{alphaset}:
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   712
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   713
  \begin{defi}[Alpha-Equivalence for Set+-Bindings]\label{alphares}\mbox{}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   714
  \begin{tabular}{@ {\hspace{10mm}}l@ {\hspace{5mm}}rl}  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   715
  @{term "alpha_res_ex (as, x) R fa (bs, y)"}\hspace{2mm}@{text "\<equiv>"} &
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   716
  \multicolumn{2}{@ {}l}{if there exists a @{text "\<pi>"} such that:}\\ 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   717
             & \mbox{\it (i)}   & @{term "fa(x) - as = fa(y) - bs"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   718
             & \mbox{\it (ii)}  & @{term "(fa(x) - as) \<sharp>* \<pi>"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   719
             & \mbox{\it (iii)} & @{text "(\<pi> \<bullet> x) R y"}\\
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   720
  \end{tabular}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   721
  \end{defi}
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   722
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   723
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   724
  It might be useful to consider first some examples how these definitions
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   725
  of alpha-equivalence pan out in practice.  For this consider the case of
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   726
  abstracting a set of atoms over types (as in type-schemes). We set
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   727
  @{text R} to be the usual equality @{text "="} and for @{text "fa(T)"} we
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   728
  define
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   729
  
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   730
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   731
  @{text "fa(x) = {x}"}  \hspace{5mm} @{text "fa(T\<^isub>1 \<rightarrow> T\<^isub>2) = fa(T\<^isub>1) \<union> fa(T\<^isub>2)"}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   732
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   733
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   734
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   735
  Now recall the examples shown in \eqref{ex1} and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   736
  \eqref{ex3}. It can be easily checked that @{text "({x, y}, x \<rightarrow> y)"} and
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   737
  @{text "({y, x}, y \<rightarrow> x)"} are alpha-equivalent according to
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   738
  $\approx_{\,\textit{set}}$ and $\approx_{\,\textit{set+}}$ by taking @{text "\<pi>"} to
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   739
  be the swapping @{term "(x \<rightleftharpoons> y)"}. In case of @{text "x \<noteq> y"}, then @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   740
  "([x, y], x \<rightarrow> y)"} $\not\approx_{\,\textit{list}}$ @{text "([y, x], x \<rightarrow> y)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   741
  since there is no permutation that makes the lists @{text "[x, y]"} and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   742
  @{text "[y, x]"} equal, and also leaves the type \mbox{@{text "x \<rightarrow> y"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   743
  unchanged. Another example is @{text "({x}, x)"} $\approx_{\,\textit{set+}}$
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   744
  @{text "({x, y}, x)"} which holds by taking @{text "\<pi>"} to be the identity
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   745
  permutation.  However, if @{text "x \<noteq> y"}, then @{text "({x}, x)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   746
  $\not\approx_{\,\textit{set}}$ @{text "({x, y}, x)"} since there is no
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   747
  permutation that makes the sets @{text "{x}"} and @{text "{x, y}"} equal
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   748
  (similarly for $\approx_{\,\textit{list}}$).  It can also relatively easily be
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   749
  shown that all three notions of alpha-equivalence coincide, if we only
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   750
  abstract a single atom.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   751
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   752
  In the rest of this section we are going to show that the alpha-equivalences really 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   753
  lead to abstractions where some atoms are bound.  For this we are going to introduce 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   754
  three abstraction types that are quotients with respect to the relations
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   755
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   756
  \begin{equation}
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   757
  \begin{array}{r}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   758
  @{term "alpha_abs_set (as, x) (bs, y)"}~~@{text "\<equiv>"}~~@{term "alpha_set_ex (as, x) equal supp (bs, y)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   759
  @{term "alpha_abs_res (as, x) (bs, y)"}~~@{text "\<equiv>"}~~@{term "alpha_res_ex (as, x) equal supp (bs, y)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   760
  @{term "alpha_abs_lst (as, x) (bs, y)"}~~@{text "\<equiv>"}~~@{term "alpha_lst_ex (as, x) equal supp (bs, y)"}\\
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   761
  \end{array}
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   762
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   763
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   764
  \noindent
3007
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
   765
  Note that in these relation we replaced the free-atom function @{text "fa"}
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
   766
  with @{term "supp"} and the relation @{text R} with equality. We can show
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
   767
  the following properties:
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
   768
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   769
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   770
  \begin{lem}\label{alphaeq} 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   771
  The relations $\approx_{\,\textit{abs\_set}}$, $\approx_{\,\textit{abs\_set+}}$
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   772
  and $\approx_{\,\textit{abs\_list}}$ are equivalence relations and equivariant. 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   773
  \end{lem}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   774
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   775
  \begin{proof}
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   776
  Reflexivity is by taking @{text "\<pi>"} to be @{text "0"}. For symmetry we have
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   777
  a permutation @{text "\<pi>"} and for the proof obligation take @{term "- \<pi>"}. In case 
3001
8d7d85e915b5 more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3000
diff changeset
   778
  of transitivity, we have two permutations @{text "\<pi>\<^isub>1"} and @{text "\<pi>\<^isub>2"}, and for the
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   779
  proof obligation use @{text "\<pi>\<^isub>1 + \<pi>\<^isub>2"}. Equivariance means
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   780
  @{term "abs_set (\<pi> \<bullet> as, \<pi> \<bullet> x) (\<pi> \<bullet> bs, \<pi> \<bullet> y)"} holds provided 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   781
  \mbox{@{term "abs_set (as, x) (bs, y)"}} holds. To show this, we need to unfold the
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   782
  definitions and `pull out' the permutations, which is possible since all
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   783
  operators, such as @{text "#\<^sup>*, -, set"} and @{text "supp"}, are equivariant
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   784
  (see \cite{HuffmanUrban10}). Finally we apply the permutation operation on booleans.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   785
  \end{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   786
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   787
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   788
  This lemma allows us to use our quotient package for introducing 
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   789
  new types @{text "\<beta> abs\<^bsub>set\<^esub>"}, @{text "\<beta> abs\<^bsub>set+\<^esub>"} and @{text "\<beta> abs\<^bsub>list\<^esub>"}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   790
  representing alpha-equivalence classes of pairs of type 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   791
  @{text "(atom set) \<times> \<beta>"} (in the first two cases) and of type @{text "(atom list) \<times> \<beta>"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   792
  (in the third case). 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   793
  The elements in these types will be, respectively, written as
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   794
  
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   795
  \[
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   796
  @{term "Abs_set as x"} \hspace{10mm} 
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   797
  @{term "Abs_res as x"} \hspace{10mm}
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   798
  @{term "Abs_lst as x"} 
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   799
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   800
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   801
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   802
  indicating that a set (or list) of atoms @{text as} is abstracted in @{text x}. We will
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   803
  call the types \emph{abstraction types} and their elements
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   804
  \emph{abstractions}. The important property we need to derive is the support of 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   805
  abstractions, namely:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   806
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   807
  \begin{thm}[Support of Abstractions]\label{suppabs} 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   808
  Assuming @{text x} has finite support, then
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   809
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   810
  \[
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   811
  \begin{array}{l@ {\;=\;}l}
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   812
  @{thm (lhs) supp_Abs(1)[no_vars]} & @{thm (rhs) supp_Abs(1)[no_vars]}\\
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   813
  @{thm (lhs) supp_Abs(2)[no_vars]} & @{thm (rhs) supp_Abs(2)[no_vars]}\\
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   814
  @{thm (lhs) supp_Abs(3)[where bs="as", no_vars]} &
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   815
  @{thm (rhs) supp_Abs(3)[where bs="as", no_vars]}\\
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   816
  \end{array}
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   817
  \]\smallskip
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   818
  \end{thm}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   819
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   820
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   821
  In effect, this theorem states that the atoms @{text "as"} are bound in the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   822
  abstraction. As stated earlier, this can be seen as test that our
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   823
  Definitions \ref{alphaset}, \ref{alphalist} and \ref{alphares} capture the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   824
  idea of alpha-equivalence relations. Below we will give the proof for the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   825
  first equation of Theorem \ref{suppabs}. The others follow by similar
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   826
  arguments. By definition of the abstraction type @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   827
  "abs\<^bsub>set\<^esub>"} we have
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   828
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   829
  \begin{equation}\label{abseqiff}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   830
  @{thm (lhs) Abs_eq_iff(1)[where bs="as" and cs="bs", no_vars]} \;\;\;\text{if and only if}\;\;\; 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   831
  @{term "alpha_set_ex (as, x) equal supp (bs, y)"}
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   832
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   833
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   834
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   835
  and also
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   836
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   837
  \begin{equation}\label{absperm}
3002
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   838
  @{thm permute_Abs(1)[where p="\<pi>", no_vars]}
02d98590454d more on the paper
Christian Urban <urbanc@in.tum.de>
parents: 3001
diff changeset
   839
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   840
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   841
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   842
  The second fact derives from the definition of permutations acting on pairs 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   843
  \eqref{permute} and alpha-equivalence being equivariant 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   844
  (see Lemma~\ref{alphaeq}). With these two facts at our disposal, we can show 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   845
  the following lemma about swapping two atoms in an abstraction.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   846
  
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   847
  \begin{lem}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   848
  If @{thm (prem 1) Abs_swap1(1)[where bs="as", no_vars]} and
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   849
  @{thm (prem 2) Abs_swap1(1)[where bs="as", no_vars]} then 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   850
  @{thm (concl) Abs_swap1(1)[where bs="as", no_vars]}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   851
  \end{lem}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   852
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   853
  \begin{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   854
  This lemma is straightforward using \eqref{abseqiff} and observing that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   855
  the assumptions give us @{term "(a \<rightleftharpoons> b) \<bullet> (supp x - as) = (supp x - as)"}.
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   856
  We therefore can use as permutation the swapping @{term "(a \<rightleftharpoons> b)"}.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   857
  \end{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   858
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   859
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   860
  Assuming that @{text "x"} has finite support, this lemma together 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   861
  with \eqref{absperm} allows us to show
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   862
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   863
  \begin{equation}\label{halfone}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   864
  @{thm Abs_supports(1)[no_vars]}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   865
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   866
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   867
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   868
  which by Property~\ref{supportsprop} gives us ``one half'' of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   869
  Theorem~\ref{suppabs}. The ``other half'' is a bit more involved. To establish 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   870
  it, we use a trick from \cite{Pitts04} and first define an auxiliary 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   871
  function @{text aux}, taking an abstraction as argument
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   872
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   873
  \[
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   874
  @{thm supp_set.simps[THEN eq_reflection, no_vars]}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   875
  \]\smallskip 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   876
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   877
  \noindent
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   878
  Using the second equation in \eqref{equivariance}, we can show that 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   879
  @{text "aux"} is equivariant (since @{term "\<pi> \<bullet> (supp x - as) = (supp (\<pi> \<bullet> x)) - (\<pi> \<bullet> as)"}) 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   880
  and therefore has empty support. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   881
  This in turn means
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   882
  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   883
  \[
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   884
  @{term "supp (supp_set (Abs_set as x)) \<subseteq> supp (Abs_set as x)"}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   885
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   886
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   887
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   888
  using the fact about the support of function applications in \eqref{supps}. Assuming 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   889
  @{term "supp x - as"} is a finite set, we further obtain
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   890
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   891
  \begin{equation}\label{halftwo}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   892
  @{thm (concl) Abs_supp_subset1(1)[no_vars]}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   893
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   894
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   895
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   896
  This is because for every finite sets of atoms, say @{text "bs"}, we have 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   897
  @{thm (concl) supp_finite_atom_set[where S="bs", no_vars]}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   898
  Finally, taking \eqref{halfone} and \eqref{halftwo} together establishes 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   899
  Theorem~\ref{suppabs}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   900
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   901
  The method of first considering abstractions of the form @{term "Abs_set as
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   902
  x"} etc is motivated by the fact that we can conveniently establish at the
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   903
  Isabelle/HOL level properties about them.  It would be extremely laborious
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   904
  to write custom ML-code that derives automatically such properties for every
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   905
  term-constructor that binds some atoms. Also the generality of the
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   906
  definitions for alpha-equivalence will help us in the next sections.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   907
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   908
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   909
section {* Specifying General Bindings\label{sec:spec} *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   910
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   911
text {*
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   912
  Our choice of syntax for specifications is influenced by the existing
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   913
  datatype package of Isabelle/HOL \cite{Berghofer99} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   914
  and by the syntax of the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   915
  Ott-tool \cite{ott-jfp}. For us a specification of a term-calculus is a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   916
  collection of (possibly mutual recursive) type declarations, say @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   917
  "ty\<AL>\<^isub>1, \<dots>, ty\<AL>\<^isub>n"}, and an associated collection of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   918
  binding functions, say @{text "bn\<AL>\<^isub>1, \<dots>, bn\<AL>\<^isub>m"}. The
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   919
  syntax in Nominal Isabelle for such specifications is schematically as follows:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   920
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   921
  \begin{equation}\label{scheme}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   922
  \mbox{\begin{tabular}{@ {}p{2.5cm}l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   923
  type \mbox{declaration part} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   924
  $\begin{cases}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   925
  \mbox{\begin{tabular}{l}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   926
  \isacommand{nominal\_datatype} @{text "ty\<AL>\<^isub>1 = \<dots>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   927
  \isacommand{and} @{text "ty\<AL>\<^isub>2 = \<dots>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   928
  \raisebox{2mm}{$\ldots$}\\[-2mm] 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   929
  \isacommand{and} @{text "ty\<AL>\<^isub>n = \<dots>"}\\ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   930
  \end{tabular}}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
   931
  \end{cases}$\\[2mm]
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   932
  binding \mbox{function part} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   933
  $\begin{cases}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
   934
  \mbox{\begin{tabular}{l}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   935
  \isacommand{binder} @{text "bn\<AL>\<^isub>1"} \isacommand{and} \ldots \isacommand{and} @{text "bn\<AL>\<^isub>m"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   936
  \isacommand{where}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   937
  \raisebox{2mm}{$\ldots$}\\[-2mm]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   938
  \end{tabular}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   939
  \end{cases}$\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   940
  \end{tabular}}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   941
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   942
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   943
  \noindent
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   944
  Every type declaration @{text ty}$^\alpha_{1..n}$ consists of a collection
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   945
  of term-constructors, each of which comes with a list of labelled types that
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   946
  stand for the types of the arguments of the term-constructor.  For example a
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   947
  term-constructor @{text "C\<^sup>\<alpha>"} might be specified with
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   948
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   949
  \[
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   950
  @{text "C\<^sup>\<alpha> label\<^isub>1::ty"}\mbox{$'_1$} @{text "\<dots> label\<^isub>l::ty"}\mbox{$'_l\;\;$}  @{text "binding_clauses"} 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   951
  \]\smallskip
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   952
  
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   953
  \noindent
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   954
  whereby some of the @{text ty}$'_{1..l}$ (or their components) can be
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   955
  contained in the collection of @{text ty}$^\alpha_{1..n}$ declared in
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   956
  \eqref{scheme}. In this case we will call the corresponding argument a
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   957
  \emph{recursive argument} of @{text "C\<^sup>\<alpha>"}. The types of such
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   958
  recursive arguments need to satisfy a ``positivity'' restriction, which
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   959
  ensures that the type has a set-theoretic semantics (see
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   960
  \cite{Berghofer99}).  The labels annotated on the types are optional. Their
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   961
  purpose is to be used in the (possibly empty) list of \emph{binding
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   962
  clauses}, which indicate the binders and their scope in a term-constructor.
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   963
  They come in three \emph{modes}:
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   964
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   965
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   966
  \[\mbox{
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   967
  \begin{tabular}{@ {}l@ {}}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   968
  \isacommand{binds} {\it binders} \isacommand{in} {\it bodies}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   969
  \isacommand{binds (set)} {\it binders} \isacommand{in} {\it bodies}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   970
  \isacommand{binds (set+)} {\it binders} \isacommand{in} {\it bodies}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   971
  \end{tabular}}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   972
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   973
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   974
  \noindent
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   975
  The first mode is for binding lists of atoms (the order of bound atoms
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   976
  matters); the second is for sets of binders (the order does not matter, but
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   977
  the cardinality does) and the last is for sets of binders (with vacuous
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   978
  binders preserving alpha-equivalence). As indicated, the labels in the
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   979
  ``\isacommand{in}-part'' of a binding clause will be called \emph{bodies};
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   980
  the ``\isacommand{binds}-part'' will be called \emph{binders}. In contrast to
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   981
  Ott, we allow multiple labels in binders and bodies.  For example we allow
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   982
  binding clauses of the form:
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   983
 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   984
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   985
  \begin{tabular}{@ {}ll@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   986
  @{text "Foo\<^isub>1 x::name y::name t::trm s::trm"} &  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   987
      \isacommand{binds} @{text "x y"} \isacommand{in} @{text "t s"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   988
  @{text "Foo\<^isub>2 x::name y::name t::trm s::trm"} &  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   989
      \isacommand{binds} @{text "x y"} \isacommand{in} @{text "t"}, 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   990
      \isacommand{binds} @{text "x y"} \isacommand{in} @{text "s"}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   991
  \end{tabular}}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   992
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   993
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   994
  \noindent
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   995
  Similarly for the other binding modes. Interestingly, in case of
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   996
  \isacommand{binds (set)} and \isacommand{binds (set+)} the binding clauses
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   997
  above will make a difference to the semantics of the specifications (the
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   998
  corresponding alpha-equivalence will differ). We will show this later with
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
   999
  an example.
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1000
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1001
  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1002
  There are also some restrictions we need to impose on our binding clauses in
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1003
  comparison to the ones of Ott. The main idea behind these restrictions is
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1004
  that we obtain a sensible notion of alpha-equivalence where it is ensured
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1005
  that within a given scope an atom occurrence cannot be both bound and free
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1006
  at the same time.  The first restriction is that a body can only occur in
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1007
  \emph{one} binding clause of a term constructor. So for example
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1008
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1009
  \[\mbox{
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1010
  @{text "Foo x::name y::name t::trm"}\hspace{3mm}  
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1011
  \isacommand{binds} @{text "x"} \isacommand{in} @{text "t"},
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1012
  \isacommand{binds} @{text "y"} \isacommand{in} @{text "t"}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1013
  \]\smallskip
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1014
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1015
  \noindent
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1016
  is not allowed. This ensures that the bound atoms of a body cannot be free
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1017
  at the same time by specifying an alternative binder for the same body.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1018
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1019
  For binders we distinguish between \emph{shallow} and \emph{deep} binders.
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1020
  Shallow binders are just labels. The restriction we need to impose on them
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1021
  is that in case of \isacommand{binds (set)} and \isacommand{binds (set+)} the
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1022
  labels must either refer to atom types or to sets of atom types; in case of
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1023
  \isacommand{binds} the labels must refer to atom types or lists of atom
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1024
  types. Two examples for the use of shallow binders are the specification of
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1025
  lambda-terms, where a single name is bound, and type-schemes, where a finite
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1026
  set of names is bound:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1027
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1028
  \[\mbox{
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1029
  \begin{tabular}{@ {}c@ {\hspace{5mm}}c@ {}}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1030
  \begin{tabular}{@ {}l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1031
  \isacommand{nominal\_datatype} @{text lam} $=$\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1032
  \hspace{2mm}\phantom{$\mid$}~@{text "Var name"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1033
  \hspace{2mm}$\mid$~@{text "App lam lam"}\\
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1034
  \hspace{2mm}$\mid$~@{text "Lam x::name t::lam"}\hspace{3mm}%
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1035
  \isacommand{binds} @{text x} \isacommand{in} @{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1036
  \end{tabular} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1037
  \begin{tabular}{@ {}l@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1038
  \isacommand{nominal\_datatype}~@{text ty} $=$\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1039
  \hspace{5mm}\phantom{$\mid$}~@{text "TVar name"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1040
  \hspace{5mm}$\mid$~@{text "TFun ty ty"}\\
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1041
  \isacommand{and}~@{text "tsc = All xs::(name fset) T::ty"}\hspace{3mm}%
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1042
  \isacommand{binds (set+)} @{text xs} \isacommand{in} @{text T}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1043
  \end{tabular}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1044
  \end{tabular}}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1045
  \]\smallskip
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1046
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1047
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1048
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1049
  In these specifications @{text "name"} refers to an atom type, and @{text
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1050
  "fset"} to the type of finite sets.  Note that for @{text Lam} it does not
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1051
  matter which binding mode we use. The reason is that we bind only a single
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1052
  @{text name}. However, having \isacommand{binds (set)} or just \isacommand{binds}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1053
  in the second case makes a difference to the semantics of the specification
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1054
  (which we will define in the next section).
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1055
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1056
  A \emph{deep} binder uses an auxiliary binding function that ``picks'' out
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1057
  the atoms in one argument of the term-constructor, which can be bound in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1058
  other arguments and also in the same argument (we will call such binders
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1059
  \emph{recursive}, see below). The binding functions are
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1060
  expected to return either a set of atoms (for \isacommand{binds (set)} and
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1061
  \isacommand{binds (set+)}) or a list of atoms (for \isacommand{binds}). They need
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1062
  to be defined by recursion over the corresponding type; the equations
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1063
  must be given in the binding function part of the scheme shown in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1064
  \eqref{scheme}. For example a term-calculus containing @{text "Let"}s with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1065
  tuple patterns might be specified as:
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1066
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1067
  \begin{equation}\label{letpat}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1068
  \mbox{%
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1069
  \begin{tabular}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1070
  \isacommand{nominal\_datatype} @{text trm} $=$\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1071
  \hspace{5mm}\phantom{$\mid$}~@{term "Var name"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1072
  \hspace{5mm}$\mid$~@{term "App trm trm"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1073
  \hspace{5mm}$\mid$~@{text "Lam x::name t::trm"} 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1074
     \;\;\isacommand{binds} @{text x} \isacommand{in} @{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1075
  \hspace{5mm}$\mid$~@{text "Let p::pat trm t::trm"} 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1076
     \;\;\isacommand{binds} @{text "bn(p)"} \isacommand{in} @{text t}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1077
  \isacommand{and} @{text pat} $=$\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1078
  \hspace{5mm}\phantom{$\mid$}~@{text PNil}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1079
  \hspace{5mm}$\mid$~@{text "PVar name"}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1080
  \hspace{5mm}$\mid$~@{text "PTup pat pat"}\\ 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1081
  \isacommand{binder}~@{text "bn::pat \<Rightarrow> atom list"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1082
  \isacommand{where}~@{text "bn(PNil) = []"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1083
  \hspace{5mm}$\mid$~@{text "bn(PVar x) = [atom x]"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1084
  \hspace{5mm}$\mid$~@{text "bn(PTup p\<^isub>1 p\<^isub>2) = bn(p\<^isub>1) @ bn(p\<^isub>2)"}\smallskip\\ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1085
  \end{tabular}}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1086
  \end{equation}\smallskip
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1087
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1088
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1089
  In this specification the function @{text "bn"} determines which atoms of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1090
  the pattern @{text p} are bound in the argument @{text "t"}. Note that in the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1091
  second-last @{text bn}-clause the function @{text "atom"} coerces a name
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1092
  into the generic atom type of Nominal Isabelle \cite{HuffmanUrban10}. This
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1093
  allows us to treat binders of different atom type uniformly.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1094
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1095
  As said above, for deep binders we allow binding clauses such as
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1096
  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1097
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1098
  \begin{tabular}{ll}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1099
  @{text "Bar p::pat t::trm"} &  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1100
     \isacommand{binds} @{text "bn(p)"} \isacommand{in} @{text "p t"} \\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1101
  \end{tabular}}
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1102
  \]\smallskip
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1103
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1104
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1105
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1106
  where the argument of the deep binder also occurs in the body. We call such
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1107
  binders \emph{recursive}.  To see the purpose of such recursive binders,
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1108
  compare ``plain'' @{text "Let"}s and @{text "Let_rec"}s in the following
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1109
  specification:
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1110
 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1111
  \begin{equation}\label{letrecs}
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1112
  \mbox{%
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1113
  \begin{tabular}{@ {}l@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1114
  \isacommand{nominal\_datatype}~@{text "trm ="}~\ldots\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1115
  \hspace{5mm}$\mid$~@{text "Let as::assn t::trm"} 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1116
     \;\;\isacommand{binds} @{text "bn(as)"} \isacommand{in} @{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1117
  \hspace{5mm}$\mid$~@{text "Let_rec as::assn t::trm"}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1118
     \;\;\isacommand{binds} @{text "bn(as)"} \isacommand{in} @{text "as t"}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1119
  \isacommand{and} @{text "assn"} $=$\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1120
  \hspace{5mm}\phantom{$\mid$}~@{text "ANil"}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1121
  \hspace{5mm}$\mid$~@{text "ACons name trm assn"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1122
  \isacommand{binder} @{text "bn::assn \<Rightarrow> atom list"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1123
  \isacommand{where}~@{text "bn(ANil) = []"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1124
  \hspace{5mm}$\mid$~@{text "bn(ACons a t as) = [atom a] @ bn(as)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1125
  \end{tabular}}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1126
  \end{equation}\smallskip
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1127
  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1128
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1129
  The difference is that with @{text Let} we only want to bind the atoms @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1130
  "bn(as)"} in the term @{text t}, but with @{text "Let_rec"} we also want to bind the atoms
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1131
  inside the assignment. This difference has consequences for the associated
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1132
  notions of free-atoms and alpha-equivalence.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1133
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1134
  To make sure that atoms bound by deep binders cannot be free at the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1135
  same time, we cannot have more than one binding function for a deep binder. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1136
  Consequently we exclude specifications such as
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1137
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1138
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1139
  \begin{tabular}{@ {}l@ {\hspace{2mm}}l@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1140
  @{text "Baz\<^isub>1 p::pat t::trm"} & 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1141
     \isacommand{binds} @{text "bn\<^isub>1(p) bn\<^isub>2(p)"} \isacommand{in} @{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1142
  @{text "Baz\<^isub>2 p::pat t\<^isub>1::trm t\<^isub>2::trm"} & 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1143
     \isacommand{binds} @{text "bn\<^isub>1(p)"} \isacommand{in} @{text "t\<^isub>1"},
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1144
     \isacommand{binds} @{text "bn\<^isub>2(p)"} \isacommand{in} @{text "t\<^isub>2"}\\
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1145
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1146
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1147
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1148
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1149
  Otherwise it is possible that @{text "bn\<^isub>1"} and @{text "bn\<^isub>2"}  pick 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1150
  out different atoms to become bound, respectively be free, in @{text "p"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1151
  (Since the Ott-tool does not derive a reasoning infrastructure for 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1152
  alpha-equated terms with deep binders, it can permit such specifications.)
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1153
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1154
  We also need to restrict the form of the binding functions in order to
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1155
  ensure the @{text "bn"}-functions can be defined for alpha-equated
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1156
  terms. The main restriction is that we cannot return an atom in a binding
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1157
  function that is also bound in the corresponding term-constructor.
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1158
  Consider again the specification for @{text "trm"} and a contrived
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1159
  version for assignments, @{text "assn"}:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1160
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1161
  \begin{equation}\label{bnexp}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1162
  \mbox{%
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1163
  \begin{tabular}{@ {}l@ {}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1164
  \isacommand{nominal\_datatype}~@{text "trm ="}~\ldots\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1165
  \isacommand{and} @{text "assn"} $=$\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1166
  \hspace{5mm}\phantom{$\mid$}~@{text "ANil"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1167
  \hspace{5mm}$\mid$~@{text "ACons x::name y::name t::trm assn"}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1168
     \;\;\isacommand{binds} @{text "y"} \isacommand{in} @{text t}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1169
  \isacommand{binder} @{text "bn::assn \<Rightarrow> atom list"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1170
  \isacommand{where}~@{text "bn(ANil) = []"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1171
  \hspace{5mm}$\mid$~@{text "bn(ACons x y t as) = [atom x] @ bn(as)"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1172
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1173
  \end{equation}\smallskip
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1174
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1175
  \noindent
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1176
  In this example the term constructor @{text "ACons"} contains a binding 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1177
  clause, and also is used in the definition of the binding function. The
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1178
  restriction we have to impose is that the binding function can only return
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1179
  free atoms, that is the ones that are not mentioned in a binding clause.
3007
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
  1180
  Therefore @{text "y"} cannot be used in the binding function @{text "bn"}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1181
  (since it is bound in @{text "ACons"} by the binding clause), but @{text x}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1182
  can (since it is a free atom). This restriction is sufficient for lifting 
3007
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
  1183
  the binding function to alpha-equated terms. If we would permit that @{text "bn"}
Christian Urban <urbanc@in.tum.de>
parents: 3006
diff changeset
  1184
  can also return @{text "y"}, then it would not be respectful and therefore
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1185
  cannot be lifted.
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1186
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1187
  In the version of Nominal Isabelle described here, we also adopted the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1188
  restriction from the Ott-tool that binding functions can only return: the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1189
  empty set or empty list (as in case @{text ANil}), a singleton set or
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1190
  singleton list containing an atom (case @{text PVar} in \eqref{letpat}), or
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1191
  unions of atom sets or appended atom lists (case @{text ACons}). This
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1192
  restriction will simplify some automatic definitions and proofs later on.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1193
  
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1194
  In order to simplify our definitions of free atoms and alpha-equivalence, 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1195
  we shall assume specifications 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1196
  of term-calculi are implicitly \emph{completed}. By this we mean that  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1197
  for every argument of a term-constructor that is \emph{not} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1198
  already part of a binding clause given by the user, we add implicitly a special \emph{empty} binding
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1199
  clause, written \isacommand{binds}~@{term "{}"}~\isacommand{in}~@{text "labels"}. In case
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1200
  of the lambda-terms, the completion produces
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1201
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1202
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1203
  \begin{tabular}{@ {}l@ {\hspace{-1mm}}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1204
  \isacommand{nominal\_datatype} @{text lam} =\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1205
  \hspace{5mm}\phantom{$\mid$}~@{text "Var x::name"}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1206
    \;\;\isacommand{binds}~@{term "{}"}~\isacommand{in}~@{text "x"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1207
  \hspace{5mm}$\mid$~@{text "App t\<^isub>1::lam t\<^isub>2::lam"}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1208
    \;\;\isacommand{binds}~@{term "{}"}~\isacommand{in}~@{text "t\<^isub>1 t\<^isub>2"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1209
  \hspace{5mm}$\mid$~@{text "Lam x::name t::lam"}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1210
    \;\;\isacommand{binds}~@{text x} \isacommand{in} @{text t}\\
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1211
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1212
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1213
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1214
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1215
  The point of completion is that we can make definitions over the binding
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1216
  clauses and be sure to have captured all arguments of a term constructor. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1217
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1218
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1219
section {* Alpha-Equivalence and Free Atoms\label{sec:alpha} *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1220
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1221
text {*
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1222
  Having dealt with all syntax matters, the problem now is how we can turn
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1223
  specifications into actual type definitions in Isabelle/HOL and then
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1224
  establish a reasoning infrastructure for them. As Pottier and Cheney pointed
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1225
  out \cite{Cheney05,Pottier06}, just re-arranging the arguments of
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1226
  term-constructors so that binders and their bodies are next to each other
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1227
  will result in inadequate representations in cases like \mbox{@{text "Let
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1228
  x\<^isub>1 = t\<^isub>1\<dots>x\<^isub>n = t\<^isub>n in s"}}. Therefore we will
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1229
  first extract ``raw'' datatype definitions from the specification and then
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1230
  define explicitly an alpha-equivalence relation over them. We subsequently
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1231
  construct the quotient of the datatypes according to our alpha-equivalence.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1232
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1233
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1234
  The ``raw'' datatype definition can be obtained by stripping off the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1235
  binding clauses and the labels from the types. We also have to invent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1236
  new names for the types @{text "ty\<^sup>\<alpha>"} and term-constructors @{text "C\<^sup>\<alpha>"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1237
  given by the user. In our implementation we just use the affix ``@{text "_raw"}''.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1238
  But for the purpose of this paper, we use the superscript @{text "_\<^sup>\<alpha>"} to indicate 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1239
  that a notion is given for alpha-equivalence classes and leave it out 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1240
  for the corresponding notion given on the ``raw'' level. So for example 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1241
  we have @{text "ty\<^sup>\<alpha> \<mapsto> ty"} and @{text "C\<^sup>\<alpha> \<mapsto> C"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1242
  where @{term ty} is the type used in the quotient construction for 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1243
  @{text "ty\<^sup>\<alpha>"} and @{text "C"} is the term-constructor on the ``raw'' type @{text "ty"}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1244
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1245
  The resulting datatype definition is legal in Isabelle/HOL provided the datatypes are 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1246
  non-empty and the types in the constructors only occur in positive 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1247
  position (see \cite{Berghofer99} for an in-depth description of the datatype package
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1248
  in Isabelle/HOL). 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1249
  We subsequently define each of the user-specified binding 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1250
  functions @{term "bn"}$_{1..m}$ by recursion over the corresponding 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1251
  raw datatype. We can also easily define permutation operations by 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1252
  recursion so that for each term constructor @{text "C"} we have that
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1253
  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1254
  \begin{equation}\label{ceqvt}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1255
  @{text "\<pi> \<bullet> (C z\<^isub>1 \<dots> z\<^isub>n) = C (\<pi> \<bullet> z\<^isub>1) \<dots> (\<pi> \<bullet> z\<^isub>n)"}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1256
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1257
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1258
  The first non-trivial step we have to perform is the generation of
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1259
  \emph{free-atom functions} from the specification.\footnote{Admittedly, the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1260
  details of our definitions are somewhat involved. However they are still
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1261
  conceptually simple in comparison with the ``positional'' approach taken in
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1262
  Ott \cite[Pages 88--95]{ott-jfp}, which uses \emph{occurences} and
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1263
  \emph{partial equivalence relations} over sets of occurences.} For the
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1264
  \emph{raw} types @{text "ty"}$_{1..n}$ we define the free-atom functions
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1265
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1266
  \begin{equation}\label{fvars}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1267
  \mbox{@{text "fa_ty"}$_{1..n}$}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1268
  \end{equation}\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1269
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1270
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1271
  by recursion.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1272
  We define these functions together with auxiliary free-atom functions for
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1273
  the binding functions. Given raw binding functions @{text "bn"}$_{1..m}$ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1274
  we define
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1275
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1276
  \[
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1277
  @{text "fa_bn"}\mbox{$_{1..m}$}.
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1278
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1279
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1280
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1281
  The reason for this setup is that in a deep binder not all atoms have to be
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1282
  bound, as we saw in the example with ``plain'' @{text Let}s. We need therefore a function
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1283
  that calculates those free atoms in a deep binder.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1284
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1285
  While the idea behind these free-atom functions is clear (they just
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1286
  collect all atoms that are not bound), because of our rather complicated
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1287
  binding mechanisms their definitions are somewhat involved.  Given
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1288
  a term-constructor @{text "C"} of type @{text ty} and some associated
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1289
  binding clauses @{text "bc\<^isub>1\<dots>bc\<^isub>k"}, the result of @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1290
  "fa_ty (C z\<^isub>1 \<dots> z\<^isub>n)"} will be the union @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1291
  "fa(bc\<^isub>1) \<union> \<dots> \<union> fa(bc\<^isub>k)"} where we will define below what @{text "fa"} for a binding
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1292
  clause means. We only show the details for the mode \isacommand{binds (set)} (the other modes are similar). 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1293
  Suppose the binding clause @{text bc\<^isub>i} is of the form 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1294
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1295
  \[
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1296
  \mbox{\isacommand{binds (set)} @{text "b\<^isub>1\<dots>b\<^isub>p"} \isacommand{in} @{text "d\<^isub>1\<dots>d\<^isub>q"}}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1297
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1298
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1299
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1300
  in which the body-labels @{text "d"}$_{1..q}$ refer to types @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1301
  ty}$_{1..q}$, and the binders @{text b}$_{1..p}$ either refer to labels of
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1302
  atom types (in case of shallow binders) or to binding functions taking a
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1303
  single label as argument (in case of deep binders). Assuming @{text "D"}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1304
  stands for the set of free atoms of the bodies, @{text B} for the set of
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1305
  binding atoms in the binders and @{text "B'"} for the set of free atoms in
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1306
  non-recursive deep binders, then the free atoms of the binding clause @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1307
  bc\<^isub>i} are
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1308
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1309
  \begin{equation}\label{fadef}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1310
  \mbox{@{text "fa(bc\<^isub>i) \<equiv> (D - B) \<union> B'"}}.
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1311
  \end{equation}\smallskip
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1312
  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1313
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1314
  The set @{text D} is formally defined as
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1315
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1316
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1317
  @{text "D \<equiv> fa_ty\<^isub>1 d\<^isub>1 \<union> ... \<union> fa_ty\<^isub>q d\<^isub>q"}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1318
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1319
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1320
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1321
  where in case @{text "d\<^isub>i"} refers to one of the raw types @{text "ty"}$_{1..n}$ from the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1322
  specification, the function @{text "fa_ty\<^isub>i"} is the corresponding free-atom function 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1323
  we are defining by recursion; otherwise we set \mbox{@{text "fa_ty\<^isub>i d\<^isub>i = supp d\<^isub>i"}}. The reason
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1324
  for the latter choice is that @{text "ty"}$_i$ is not a type that is part of the specification, and
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1325
  we assume @{text supp} is the generic notion that characterises the free variables of 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1326
  a type (in fact in the next section we will show that the free-variable functions we
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1327
  define here, are equal to the support once lifted to alpha-equivalence classes).
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1328
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1329
  In order to formally define the set @{text B} we use the following auxiliary @{text "bn"}-functions
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1330
  for atom types to which shallow binders may refer\\[-4mm]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1331
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1332
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1333
  \begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1334
  @{text "bn\<^bsub>atom\<^esup> a"} & @{text "\<equiv>"} & @{text "{atom a}"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1335
  @{text "bn\<^bsub>atom_set\<^esup> as"} & @{text "\<equiv>"} & @{text "atoms as"}\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1336
  @{text "bn\<^bsub>atom_list\<^esub> as"} & @{text "\<equiv>"} & @{text "atoms (set as)"}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1337
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1338
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1339
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1340
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1341
  Like the function @{text atom}, the function @{text "atoms"} coerces 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1342
  a set of atoms to a set of the generic atom type. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1343
  It is defined as  @{text "atoms as \<equiv> {atom a | a \<in> as}"}. 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1344
  The set @{text B} is then formally defined as
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1345
  
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1346
  \begin{equation}\label{bdef}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1347
  @{text "B \<equiv> bn_ty\<^isub>1 b\<^isub>1 \<union> ... \<union> bn_ty\<^isub>p b\<^isub>p"}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1348
  \end{equation}\smallskip
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1349
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1350
  \noindent 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1351
  where we use the auxiliary binding functions for shallow binders (that means
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1352
  when @{text "ty"}$_i$ is of type @{text "atom"}, @{text "atom set"} or
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1353
  @{text "atom list"}). The set @{text "B'"} collects all free atoms in
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1354
  non-recursive deep binders. Let us assume these binders in the binding 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1355
  clause @{text "bc\<^isub>i"} are
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1356
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1357
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1358
  \mbox{@{text "bn\<^isub>1 l\<^isub>1, \<dots>, bn\<^isub>r l\<^isub>r"}}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1359
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1360
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1361
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1362
  with @{text "l"}$_{1..r}$ $\subseteq$ @{text "b"}$_{1..p}$ (see
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1363
  \eqref{bdef}) and none of the @{text "l"}$_{1..r}$ being among the bodies
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1364
  @{text "d"}$_{1..q}$. The set @{text "B'"} is defined as
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1365
  
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1366
  \begin{equation}\label{bprimedef}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1367
  @{text "B' \<equiv> fa_bn\<^isub>1 l\<^isub>1 \<union> ... \<union> fa_bn\<^isub>r l\<^isub>r"}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1368
  \end{equation}\smallskip
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1369
  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1370
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1371
  This completes the definition of the free-atom functions @{text "fa_ty"}$_{1..n}$.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1372
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1373
  Note that for non-recursive deep binders, we have to add in \eqref{fadef}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1374
  the set of atoms that are left unbound by the binding functions @{text
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1375
  "bn"}$_{1..m}$, see also the definition in \eqref{bprimedef}. We used for
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1376
  the definition of this set the functions @{text "fa_bn"}$_{1..m}$. The
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1377
  definition for those functions needs to be extracted from the clauses the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1378
  user provided for @{text "bn"}$_{1..m}$ Assume the user specified a @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1379
  bn}-clause of the form
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1380
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1381
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1382
  @{text "bn (C z\<^isub>1 \<dots> z\<^isub>s) = rhs"}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1383
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1384
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1385
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1386
  where the @{text "z"}$_{1..s}$ are of types @{text "ty"}$_{1..s}$. For 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1387
  each of the arguments we calculate the free atoms as follows:
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1388
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1389
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1390
  \begin{tabular}{c@ {\hspace{2mm}}p{0.9\textwidth}}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1391
  $\bullet$ & @{term "fa_ty\<^isub>i z\<^isub>i"} provided @{text "z\<^isub>i"} does not occur in @{text "rhs"}\\ 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1392
  & (that means nothing is bound in @{text "z\<^isub>i"} by the binding function),\smallskip\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1393
  $\bullet$ & @{term "fa_bn\<^isub>i z\<^isub>i"} provided @{text "z\<^isub>i"} occurs in  @{text "rhs"}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1394
  with the recursive call @{text "bn\<^isub>i z\<^isub>i"}, and\smallskip\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1395
  $\bullet$ & @{term "{}"} provided @{text "z\<^isub>i"} occurs in  @{text "rhs"},
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1396
  but without a recursive call\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1397
  & (that means @{text "z\<^isub>i"} is supposed to become bound by the binding function)\\
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1398
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1399
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1400
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1401
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1402
  For defining @{text "fa_bn (C z\<^isub>1 \<dots> z\<^isub>n)"} we just union up all these sets.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1403
 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1404
  To see how these definitions work in practice, let us reconsider the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1405
  term-constructors @{text "Let"} and @{text "Let_rec"} shown in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1406
  \eqref{letrecs} together with the term-constructors for assignments @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1407
  "ANil"} and @{text "ACons"}. Since there is a binding function defined for
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1408
  assignments, we have three free-atom functions, namely @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1409
  "fa\<^bsub>trm\<^esub>"}, @{text "fa\<^bsub>assn\<^esub>"} and @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1410
  "fa\<^bsub>bn\<^esub>"} as follows:
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1411
  
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1412
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1413
  \begin{tabular}{@ {}l@ {\hspace{1mm}}c@ {\hspace{1mm}}l@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1414
  @{text "fa\<^bsub>trm\<^esub> (Let as t)"} & @{text "="} & @{text "(fa\<^bsub>trm\<^esub> t - set (bn as)) \<union> fa\<^bsub>bn\<^esub> as"}\\
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1415
  @{text "fa\<^bsub>trm\<^esub> (Let_rec as t)"} & @{text "="} & @{text "(fa\<^bsub>assn\<^esub> as \<union> fa\<^bsub>trm\<^esub> t) - set (bn as)"}\smallskip\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1416
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1417
  @{text "fa\<^bsub>assn\<^esub> (ANil)"} & @{text "="} & @{term "{}"}\\
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1418
  @{text "fa\<^bsub>assn\<^esub> (ACons a t as)"} & @{text "="} & @{text "(supp a) \<union> (fa\<^bsub>trm\<^esub> t) \<union> (fa\<^bsub>assn\<^esub> as)"}\smallskip\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1419
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1420
  @{text "fa\<^bsub>bn\<^esub> (ANil)"} & @{text "="} & @{term "{}"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1421
  @{text "fa\<^bsub>bn\<^esub> (ACons a t as)"} & @{text "="} & @{text "(fa\<^bsub>trm\<^esub> t) \<union> (fa\<^bsub>bn\<^esub> as)"}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1422
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1423
  \]\smallskip
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1424
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1425
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1426
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1427
  Recall that @{text ANil} and @{text "ACons"} have no binding clause in the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1428
  specification. The corresponding free-atom function @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1429
  "fa\<^bsub>assn\<^esub>"} therefore returns all free atoms of an assignment
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1430
  (in case of @{text "ACons"}, they are given in terms of @{text supp}, @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1431
  "fa\<^bsub>trm\<^esub>"} and @{text "fa\<^bsub>assn\<^esub>"}). The binding
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1432
  only takes place in @{text Let} and @{text "Let_rec"}. In case of @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1433
  "Let"}, the binding clause specifies that all atoms given by @{text "set (bn
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1434
  as)"} have to be bound in @{text t}. Therefore we have to subtract @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1435
  "set (bn as)"} from @{text "fa\<^bsub>trm\<^esub> t"}. However, we also need
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1436
  to add all atoms that are free in @{text "as"}. This is in contrast with
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1437
  @{text "Let_rec"} where we have a recursive binder to bind all occurrences
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1438
  of the atoms in @{text "set (bn as)"} also inside @{text "as"}. Therefore we
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1439
  have to subtract @{text "set (bn as)"} from both @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1440
  "fa\<^bsub>trm\<^esub> t"} and @{text "fa\<^bsub>assn\<^esub> as"}. Like the
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1441
  function @{text "bn"}, the function @{text "fa\<^bsub>bn\<^esub>"} traverses
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1442
  the list of assignments, but instead returns the free atoms, which means in
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1443
  this example the free atoms in the argument @{text "t"}.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1444
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1445
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1446
  An interesting point in this example is that a ``naked'' assignment (@{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1447
  "ANil"} or @{text "ACons"}) does not bind any atoms, even if the binding
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1448
  function is specified over assignments. Only in the context of a @{text Let}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1449
  or @{text "Let_rec"}, where the binding clauses are given, will some atoms
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1450
  actually become bound.  This is a phenomenon that has also been pointed out
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1451
  in \cite{ott-jfp}. For us this observation is crucial, because we would not
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1452
  be able to lift the @{text "bn"}-functions to alpha-equated terms if they
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1453
  act on atoms that are bound. In that case, these functions would \emph{not}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1454
  respect alpha-equivalence.
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1455
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1456
  Having the free atom functions at our disposal, we can next define the 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1457
  alpha-equivalence relations for the raw types @{text
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1458
  "ty"}$_{1..n}$. We write them as
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1459
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1460
  \[
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1461
  \mbox{@{text "\<approx>ty"}$_{1..n}$}.
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1462
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1463
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1464
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1465
  Like with the free-atom functions, we also need to
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1466
  define auxiliary alpha-equivalence relations 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1467
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1468
  \[
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1469
  \mbox{@{text "\<approx>bn\<^isub>"}$_{1..m}$}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1470
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1471
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1472
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1473
  for the binding functions @{text "bn"}$_{1..m}$, 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1474
  To simplify our definitions we will use the following abbreviations for
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1475
  \emph{compound equivalence relations} and \emph{compound free-atom functions} acting on tuples.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1476
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1477
  \[\mbox{
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1478
  \begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1479
  @{text "(x\<^isub>1,\<dots>, x\<^isub>n) (R\<^isub>1,\<dots>, R\<^isub>n) (y\<^isub>1,\<dots>, y\<^isub>n)"} & @{text "\<equiv>"} &
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1480
  @{text "x\<^isub>1 R\<^isub>1 y\<^isub>1 \<and> \<dots> \<and> x\<^isub>n R\<^isub>n y\<^isub>n"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1481
  @{text "(fa\<^isub>1,\<dots>, fa\<^isub>n) (x\<^isub>1,\<dots>, x\<^isub>n)"} & @{text "\<equiv>"} & @{text "fa\<^isub>1 x\<^isub>1 \<union> \<dots> \<union> fa\<^isub>n x\<^isub>n"}\\
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1482
  \end{tabular}}
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1483
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1484
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1485
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1486
  The alpha-equivalence relations are defined as inductive predicates
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1487
  having a single clause for each term-constructor. Assuming a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1488
  term-constructor @{text C} is of type @{text ty} and has the binding clauses
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1489
  @{term "bc"}$_{1..k}$, then the alpha-equivalence clause has the form
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1490
  
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1491
  \[
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1492
  \mbox{\infer{@{text "C z\<^isub>1 \<dots> z\<^isub>n  \<approx>ty  C z\<PRIME>\<^isub>1 \<dots> z\<PRIME>\<^isub>n"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1493
  {@{text "prems(bc\<^isub>1) \<dots> prems(bc\<^isub>k)"}}} 
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1494
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1495
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1496
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1497
  The task below is to specify what the premises corresponding to a binding
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1498
  clause are. To understand better whet the general pattern is, let us first 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1499
  treat the special instance where @{text "bc\<^isub>i"} is the empty binding clause 
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1500
  of the form
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1501
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1502
  \[
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1503
  \mbox{\isacommand{binds (set)} @{term "{}"} \isacommand{in} @{text "d\<^isub>1\<dots>d\<^isub>q"}.}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1504
  \]\smallskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1505
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1506
  \noindent
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1507
  In this binding clause no atom is bound and we only have to `alpha-relate' the bodies. For this
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1508
  we build first the tuples @{text "D \<equiv> (d\<^isub>1,\<dots>, d\<^isub>q)"} and @{text "D' \<equiv> (d\<PRIME>\<^isub>1,\<dots>, d\<PRIME>\<^isub>q)"}  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1509
  whereby the labels @{text "d"}$_{1..q}$ refer to arguments @{text "z"}$_{1..n}$ and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1510
  respectively @{text "d\<PRIME>"}$_{1..q}$ to @{text "z\<PRIME>"}$_{1..n}$. In order to relate
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1511
  two such tuples we define the compound alpha-equivalence relation @{text "R"} as follows
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1512
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1513
  \begin{equation}\label{rempty}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1514
  \mbox{@{text "R \<equiv> (R\<^isub>1,\<dots>, R\<^isub>q)"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1515
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1516
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1517
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1518
  with @{text "R\<^isub>i"} being @{text "\<approx>ty\<^isub>i"} if the corresponding labels @{text "d\<^isub>i"} and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1519
  @{text "d\<PRIME>\<^isub>i"} refer
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1520
  to a recursive argument of @{text C} with type @{text "ty\<^isub>i"}; otherwise
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1521
  we take @{text "R\<^isub>i"} to be the equality @{text "="}. This lets us define
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1522
  the premise for an empty binding clause succinctly as @{text "prems(bc\<^isub>i) \<equiv> D R D'"},
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1523
  which can be unfolded to the series of premises
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1524
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1525
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1526
  @{text "d\<^isub>1 R\<^isub>1 d\<PRIME>\<^isub>1  \<dots> d\<^isub>q R\<^isub>q d\<PRIME>\<^isub>q"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1527
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1528
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1529
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1530
  We will use the unfolded version in the examples below.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1531
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1532
  Now suppose the binding clause @{text "bc\<^isub>i"} is of the general form 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1533
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1534
  \begin{equation}\label{nonempty}
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1535
  \mbox{\isacommand{binds (set)} @{text "b\<^isub>1\<dots>b\<^isub>p"} \isacommand{in} @{text "d\<^isub>1\<dots>d\<^isub>q"}.}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1536
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1537
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1538
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1539
  In this case we define a premise @{text P} using the relation
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1540
  $\approx_{\,\textit{set}}$ given in Section~\ref{sec:binders} (similarly
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1541
  $\approx_{\,\textit{set+}}$ and $\approx_{\,\textit{list}}$ for the other
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1542
  binding modes). This premise defines alpha-equivalence of two abstractions
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1543
  involving multiple binders. As above, we first build the tuples @{text "D"} and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1544
  @{text "D'"} for the bodies @{text "d"}$_{1..q}$, and the corresponding
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1545
  compound alpha-relation @{text "R"} (shown in \eqref{rempty}). 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1546
  For $\approx_{\,\textit{set}}$  we also need
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1547
  a compound free-atom function for the bodies defined as
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1548
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1549
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1550
  \mbox{@{text "fa \<equiv> (fa_ty\<^isub>1,\<dots>, fa_ty\<^isub>q)"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1551
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1552
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1553
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1554
  with the assumption that the @{text "d"}$_{1..q}$ refer to arguments of types @{text "ty"}$_{1..q}$.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1555
  The last ingredient we need are the sets of atoms bound in the bodies.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1556
  For this we take
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1557
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1558
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1559
  @{text "B \<equiv> bn_ty\<^isub>1 b\<^isub>1 \<union> \<dots> \<union> bn_ty\<^isub>p b\<^isub>p"}\;.\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1560
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1561
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1562
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1563
  Similarly for @{text "B'"} using the labels @{text "b\<PRIME>"}$_{1..p}$. This 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1564
  lets us formally define the premise @{text P} for a non-empty binding clause as:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1565
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1566
  \begin{center}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1567
  \mbox{@{term "P \<equiv> alpha_set_ex (B, D) R fa (B', D')"}}\;.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1568
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1569
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1570
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1571
  This premise accounts for alpha-equivalence of the bodies of the binding
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1572
  clause. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1573
  However, in case the binders have non-recursive deep binders, this premise
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1574
  is not enough:
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1575
  we also have to ``propagate'' alpha-equivalence inside the structure of
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1576
  these binders. An example is @{text "Let"} where we have to make sure the
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1577
  right-hand sides of assignments are alpha-equivalent. For this we use 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1578
  relations @{text "\<approx>bn"}$_{1..m}$ (which we will formally define shortly).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1579
  Let us assume the non-recursive deep binders in @{text "bc\<^isub>i"} are
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1580
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1581
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1582
  @{text "bn\<^isub>1 l\<^isub>1, \<dots>, bn\<^isub>r l\<^isub>r"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1583
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1584
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1585
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1586
  The tuple @{text L} is then @{text "(l\<^isub>1,\<dots>,l\<^isub>r)"} (similarly @{text "L'"})
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1587
  and the compound equivalence relation @{text "R'"} is @{text "(\<approx>bn\<^isub>1,\<dots>,\<approx>bn\<^isub>r)"}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1588
  All premises for @{text "bc\<^isub>i"} are then given by
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1589
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1590
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1591
  @{text "prems(bc\<^isub>i) \<equiv> P  \<and>   L R' L'"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1592
  \end{center} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1593
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1594
  \noindent 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1595
  The auxiliary alpha-equivalence relations @{text "\<approx>bn"}$_{1..m}$ 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1596
  in @{text "R'"} are defined as follows: assuming a @{text bn}-clause is of the form
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1597
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1598
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1599
  @{text "bn (C z\<^isub>1 \<dots> z\<^isub>s) = rhs"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1600
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1601
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1602
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1603
  where the @{text "z"}$_{1..s}$ are of types @{text "ty"}$_{1..s}$,
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1604
  then the corresponding alpha-equivalence clause for @{text "\<approx>bn"} has the form
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1605
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1606
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1607
  \mbox{\infer{@{text "C z\<^isub>1 \<dots> z\<^isub>s \<approx>bn C z\<PRIME>\<^isub>1 \<dots> z\<PRIME>\<^isub>s"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1608
  {@{text "z\<^isub>1 R\<^isub>1 z\<PRIME>\<^isub>1 \<dots> z\<^isub>s R\<^isub>s z\<PRIME>\<^isub>s"}}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1609
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1610
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1611
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1612
  In this clause the relations @{text "R"}$_{1..s}$ are given by 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1613
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1614
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1615
  \begin{tabular}{c@ {\hspace{2mm}}p{0.9\textwidth}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1616
  $\bullet$ & @{text "z\<^isub>i \<approx>ty z\<PRIME>\<^isub>i"} provided @{text "z\<^isub>i"} does not occur in @{text rhs} and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1617
  is a recursive argument of @{text C},\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1618
  $\bullet$ & @{text "z\<^isub>i = z\<PRIME>\<^isub>i"} provided @{text "z\<^isub>i"} does not occur in @{text rhs}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1619
  and is a non-recursive argument of @{text C},\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1620
  $\bullet$ & @{text "z\<^isub>i \<approx>bn\<^isub>i z\<PRIME>\<^isub>i"} provided @{text "z\<^isub>i"} occurs in @{text rhs}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1621
  with the recursive call @{text "bn\<^isub>i x\<^isub>i"} and\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1622
  $\bullet$ & @{text True} provided @{text "z\<^isub>i"} occurs in @{text rhs} but without a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1623
  recursive call.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1624
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1625
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1626
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1627
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1628
  This completes the definition of alpha-equivalence. As a sanity check, we can show
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1629
  that the premises of empty binding clauses are a special case of the clauses for 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1630
  non-empty ones (we just have to unfold the definition of $\approx_{\,\textit{set}}$ and take @{text "0"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1631
  for the existentially quantified permutation).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1632
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1633
  Again let us take a look at a concrete example for these definitions. For \eqref{letrecs}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1634
  we have three relations $\approx_{\textit{trm}}$, $\approx_{\textit{assn}}$ and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1635
  $\approx_{\textit{bn}}$ with the following clauses:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1636
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1637
  \begin{center}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1638
  \begin{tabular}{@ {}c @ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1639
  \infer{@{text "Let as t \<approx>\<^bsub>trm\<^esub> Let as' t'"}}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1640
  {@{term "alpha_lst_ex (bn as, t) alpha_trm fa_trm (bn as', t')"} & @{text "as \<approx>\<^bsub>bn\<^esub> as'"}}\smallskip\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1641
  \makebox[0mm]{\infer{@{text "Let_rec as t \<approx>\<^bsub>trm\<^esub> Let_rec as' t'"}}
3006
Christian Urban <urbanc@in.tum.de>
parents: 3005
diff changeset
  1642
  {@{term "alpha_lst_ex (bn as, ast) alpha_trm2 fa_trm2 (bn as', ast')"}}}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1643
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1644
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1645
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1646
  \begin{center}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1647
  \begin{tabular}{@ {}c @ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1648
  \infer{@{text "ANil \<approx>\<^bsub>assn\<^esub> ANil"}}{}\hspace{9mm}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1649
  \infer{@{text "ACons a t as \<approx>\<^bsub>assn\<^esub> ACons a' t' as"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1650
  {@{text "a = a'"} & @{text "t \<approx>\<^bsub>trm\<^esub> t'"} & @{text "as \<approx>\<^bsub>assn\<^esub> as'"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1651
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1652
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1653
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1654
  \begin{center}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1655
  \begin{tabular}{@ {}c @ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1656
  \infer{@{text "ANil \<approx>\<^bsub>bn\<^esub> ANil"}}{}\hspace{9mm}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1657
  \infer{@{text "ACons a t as \<approx>\<^bsub>bn\<^esub> ACons a' t' as"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1658
  {@{text "t \<approx>\<^bsub>trm\<^esub> t'"} & @{text "as \<approx>\<^bsub>bn\<^esub> as'"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1659
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1660
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1661
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1662
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1663
  Note the difference between  $\approx_{\textit{assn}}$ and
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1664
  $\approx_{\textit{bn}}$: the latter only ``tracks'' alpha-equivalence of 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1665
  the components in an assignment that are \emph{not} bound. This is needed in the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1666
  clause for @{text "Let"} (which has
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1667
  a non-recursive binder). 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1668
  The underlying reason is that the terms inside an assignment are not meant 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1669
  to be ``under'' the binder. Such a premise is \emph{not} needed in @{text "Let_rec"}, 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1670
  because there all components of an assignment are ``under'' the binder. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1671
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1672
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1673
section {* Establishing the Reasoning Infrastructure *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1674
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1675
text {*
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1676
  Having made all necessary definitions for raw terms, we can start
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1677
  with establishing the reasoning infrastructure for the alpha-equated types
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1678
  @{text "ty\<AL>"}$_{1..n}$, that is the types the user originally specified. We sketch
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1679
  in this section the proofs we need for establishing this infrastructure. One
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1680
  main point of our work is that we have completely automated these proofs in Isabelle/HOL.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1681
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1682
  First we establish that the
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1683
  alpha-equivalence relations defined in the previous section are 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1684
  equivalence relations.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1685
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1686
  \begin{lem}\label{equiv} 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1687
  Given the raw types @{text "ty"}$_{1..n}$ and binding functions
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1688
  @{text "bn"}$_{1..m}$, the relations @{text "\<approx>ty"}$_{1..n}$ and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1689
  @{text "\<approx>bn"}$_{1..m}$ are equivalence relations. and equivariant.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1690
  \end{lem}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1691
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1692
  \begin{proof} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1693
  The proof is by mutual induction over the definitions. The non-trivial
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1694
  cases involve premises built up by $\approx_{\textit{set}}$, 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1695
  $\approx_{\textit{set+}}$ and $\approx_{\textit{list}}$. They 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1696
  can be dealt with as in Lemma~\ref{alphaeq}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1697
  \end{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1698
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1699
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1700
  We can feed this lemma into our quotient package and obtain new types @{text
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1701
  "ty"}$^\alpha_{1..n}$ representing alpha-equated terms of types @{text "ty"}$_{1..n}$. 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1702
  We also obtain definitions for the term-constructors @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1703
  "C"}$^\alpha_{1..k}$ from the raw term-constructors @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1704
  "C"}$_{1..k}$, and similar definitions for the free-atom functions @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1705
  "fa_ty"}$^\alpha_{1..n}$ and @{text "fa_bn"}$^\alpha_{1..m}$ as well as the binding functions @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1706
  "bn"}$^\alpha_{1..m}$. However, these definitions are not really useful to the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1707
  user, since they are given in terms of the isomorphisms we obtained by 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1708
  creating new types in Isabelle/HOL (recall the picture shown in the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1709
  Introduction).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1710
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1711
  The first useful property for the user is the fact that distinct 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1712
  term-constructors are not 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1713
  equal, that is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1714
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1715
  \begin{equation}\label{distinctalpha}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1716
  \mbox{@{text "C"}$^\alpha$~@{text "x\<^isub>1 \<dots> x\<^isub>r"}~@{text "\<noteq>"}~% 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1717
  @{text "D"}$^\alpha$~@{text "y\<^isub>1 \<dots> y\<^isub>s"}} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1718
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1719
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1720
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1721
  whenever @{text "C"}$^\alpha$~@{text "\<noteq>"}~@{text "D"}$^\alpha$.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1722
  In order to derive this fact, we use the definition of alpha-equivalence
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1723
  and establish that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1724
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1725
  \begin{equation}\label{distinctraw}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1726
  \mbox{@{text "C x\<^isub>1 \<dots> x\<^isub>r"}\;$\not\approx$@{text ty}\;@{text "D y\<^isub>1 \<dots> y\<^isub>s"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1727
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1728
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1729
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1730
  holds for the corresponding raw term-constructors.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1731
  In order to deduce \eqref{distinctalpha} from \eqref{distinctraw}, our quotient
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1732
  package needs to know that the raw term-constructors @{text "C"} and @{text "D"} 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1733
  are \emph{respectful} w.r.t.~the alpha-equivalence relations (see \cite{Homeier05}).
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1734
  Assuming, for example, @{text "C"} is of type @{text "ty"} with argument types
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1735
  @{text "ty"}$_{1..r}$, respectfulness amounts to showing that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1736
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1737
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1738
  @{text "C x\<^isub>1 \<dots> x\<^isub>r \<approx>ty C x\<PRIME>\<^isub>1 \<dots> x\<PRIME>\<^isub>r"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1739
  \end{center}  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1740
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1741
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1742
  holds under the assumptions that we have \mbox{@{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1743
  "x\<^isub>i \<approx>ty\<^isub>i x\<PRIME>\<^isub>i"}} whenever @{text "x\<^isub>i"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1744
  and @{text "x\<PRIME>\<^isub>i"} are recursive arguments of @{text C} and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1745
  @{text "x\<^isub>i = x\<PRIME>\<^isub>i"} whenever they are non-recursive arguments. We can prove this
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1746
  implication by applying the corresponding rule in our alpha-equivalence
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1747
  definition and by establishing the following auxiliary implications %facts 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1748
  %
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1749
  \begin{equation}\label{fnresp}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1750
  \mbox{%
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1751
  \begin{tabular}{ll@ {\hspace{7mm}}ll}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1752
  \mbox{\it (i)} & @{text "x \<approx>ty\<^isub>i x\<PRIME>"}~~@{text "\<Rightarrow>"}~~@{text "fa_ty\<^isub>i x = fa_ty\<^isub>i x\<PRIME>"} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1753
  \mbox{\it (iii)} & @{text "x \<approx>ty\<^isub>j x\<PRIME>"}~~@{text "\<Rightarrow>"}~~@{text "bn\<^isub>j x = bn\<^isub>j x\<PRIME>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1754
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1755
  \mbox{\it (ii)} & @{text "x \<approx>ty\<^isub>j x\<PRIME>"}~~@{text "\<Rightarrow>"}~~@{text "fa_bn\<^isub>j x = fa_bn\<^isub>j x\<PRIME>"} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1756
  \mbox{\it (iv)} & @{text "x \<approx>ty\<^isub>j x\<PRIME>"}~~@{text "\<Rightarrow>"}~~@{text "x \<approx>bn\<^isub>j x\<PRIME>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1757
  \end{tabular}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1758
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1759
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1760
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1761
  They can be established by induction on @{text "\<approx>ty"}$_{1..n}$. Whereas the first,
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1762
  second and last implication are true by how we stated our definitions, the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1763
  third \emph{only} holds because of our restriction
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1764
  imposed on the form of the binding functions---namely \emph{not} returning 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1765
  any bound atoms. In Ott, in contrast, the user may 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1766
  define @{text "bn"}$_{1..m}$ so that they return bound
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1767
  atoms and in this case the third implication is \emph{not} true. A 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1768
  result is that the lifting of the corresponding binding functions in Ott to alpha-equated
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1769
  terms is impossible.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1770
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1771
  Having established respectfulness for the raw term-constructors, the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1772
  quotient package is able to automatically deduce \eqref{distinctalpha} from 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1773
  \eqref{distinctraw}. Having the facts \eqref{fnresp} at our disposal, we can 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1774
  also lift properties that characterise when two raw terms of the form
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1775
  %
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1776
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1777
  @{text "C x\<^isub>1 \<dots> x\<^isub>r \<approx>ty C x\<PRIME>\<^isub>1 \<dots> x\<PRIME>\<^isub>r"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1778
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1779
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1780
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1781
  are alpha-equivalent. This gives us conditions when the corresponding
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1782
  alpha-equated terms are \emph{equal}, namely
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1783
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1784
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1785
  @{text "C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>r = C\<^sup>\<alpha> x\<PRIME>\<^isub>1 \<dots> x\<PRIME>\<^isub>r"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1786
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1787
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1788
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1789
  We call these conditions as \emph{quasi-injectivity}. They correspond to
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1790
  the premises in our alpha-equivalence relations.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1791
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1792
  Next we can lift the permutation 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1793
  operations defined in \eqref{ceqvt}. In order to make this 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1794
  lifting to go through, we have to show that the permutation operations are respectful. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1795
  This amounts to showing that the 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1796
  alpha-equivalence relations are equivariant \cite{HuffmanUrban10}.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1797
  , which we already established 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1798
  in Lemma~\ref{equiv}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1799
  As a result we can add the equations
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1800
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1801
  \begin{equation}\label{calphaeqvt}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1802
  @{text "p \<bullet> (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>r) = C\<^sup>\<alpha> (p \<bullet> x\<^isub>1) \<dots> (p \<bullet> x\<^isub>r)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1803
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1804
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1805
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1806
  to our infrastructure. In a similar fashion we can lift the defining equations
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1807
  of the free-atom functions @{text "fn_ty\<AL>"}$_{1..n}$ and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1808
  @{text "fa_bn\<AL>"}$_{1..m}$ as well as of the binding functions @{text
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1809
  "bn\<AL>"}$_{1..m}$ and the size functions @{text "size_ty\<AL>"}$_{1..n}$.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1810
  The latter are defined automatically for the raw types @{text "ty"}$_{1..n}$
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1811
  by the datatype package of Isabelle/HOL.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1812
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1813
  Finally we can add to our infrastructure a cases lemma (explained in the next section)
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1814
  and a structural induction principle 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1815
  for the types @{text "ty\<AL>"}$_{1..n}$. The conclusion of the induction principle is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1816
  of the form
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1817
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1818
  \begin{equation}\label{weakinduct}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1819
  \mbox{@{text "P\<^isub>1 x\<^isub>1 \<and> \<dots> \<and> P\<^isub>n x\<^isub>n "}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1820
  \end{equation} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1821
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1822
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1823
  whereby the @{text P}$_{1..n}$ are predicates and the @{text x}$_{1..n}$ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1824
  have types @{text "ty\<AL>"}$_{1..n}$. This induction principle has for each
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1825
  term constructor @{text "C"}$^\alpha$ a premise of the form
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1826
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1827
  \begin{equation}\label{weakprem}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1828
  \mbox{@{text "\<forall>x\<^isub>1\<dots>x\<^isub>r. P\<^isub>i x\<^isub>i \<and> \<dots> \<and> P\<^isub>j x\<^isub>j \<Rightarrow> P (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>r)"}} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1829
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1830
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1831
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1832
  in which the @{text "x"}$_{i..j}$ @{text "\<subseteq>"} @{text "x"}$_{1..r}$ are 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1833
  the recursive arguments of @{text "C\<AL>"}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1834
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1835
  By working now completely on the alpha-equated level, we
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1836
  can first show that the free-atom functions and binding functions are
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1837
  equivariant, namely
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1838
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1839
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1840
  \begin{tabular}{rcl@ {\hspace{10mm}}rcl}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1841
  @{text "p \<bullet> (fa_ty\<AL>\<^isub>i  x)"} & $=$ & @{text "fa_ty\<AL>\<^isub>i (p \<bullet> x)"} &
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1842
  @{text "p \<bullet> (bn\<AL>\<^isub>j  x)"}    & $=$ & @{text "bn\<AL>\<^isub>j (p \<bullet> x)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1843
  @{text "p \<bullet> (fa_bn\<AL>\<^isub>j  x)"} & $=$ & @{text "fa_bn\<AL>\<^isub>j (p \<bullet> x)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1844
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1845
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1846
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1847
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1848
  These properties can be established using the induction principle for the types @{text "ty\<AL>"}$_{1..n}$.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1849
  in \eqref{weakinduct}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1850
  Having these equivariant properties established, we can
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1851
  show that the support of term-constructors @{text "C\<^sup>\<alpha>"} is included in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1852
  the support of its arguments, that means 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1853
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1854
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1855
  @{text "supp (C\<^sup>\<alpha> x\<^isub>1 \<dots> x\<^isub>r) \<subseteq> (supp x\<^isub>1 \<union> \<dots> \<union> supp x\<^isub>r)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1856
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1857
 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1858
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1859
  holds. This allows us to prove by induction that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1860
  every @{text x} of type @{text "ty\<AL>"}$_{1..n}$ is finitely supported. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1861
  This can be again shown by induction 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1862
  over @{text "ty\<AL>"}$_{1..n}$. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1863
  Lastly, we can show that the support of 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1864
  elements in  @{text "ty\<AL>"}$_{1..n}$ is the same as @{text "fa_ty\<AL>"}$_{1..n}$.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1865
  This fact is important in a nominal setting, but also provides evidence 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1866
  that our notions of free-atoms and alpha-equivalence are correct.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1867
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1868
  \begin{thm} 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1869
  For @{text "x"}$_{1..n}$ with type @{text "ty\<AL>"}$_{1..n}$, we have
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1870
  @{text "supp x\<^isub>i = fa_ty\<AL>\<^isub>i x\<^isub>i"}.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1871
  \end{thm}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1872
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1873
  \begin{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1874
  The proof is by induction. In each case
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1875
  we unfold the definition of @{text "supp"}, move the swapping inside the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1876
  term-constructors and then use the quasi-injectivity lemmas in order to complete the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1877
  proof. For the abstraction cases we use the facts derived in Theorem~\ref{suppabs}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1878
  \end{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1879
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1880
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1881
  To sum up this section, we can establish automatically a reasoning infrastructure
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1882
  for the types @{text "ty\<AL>"}$_{1..n}$ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1883
  by first lifting definitions from the raw level to the quotient level and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1884
  then by establishing facts about these lifted definitions. All necessary proofs
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1885
  are generated automatically by custom ML-code. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1886
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1887
  %This code can deal with 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1888
  %specifications such as the one shown in Figure~\ref{nominalcorehas} for Core-Haskell.  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1889
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1890
  %\begin{figure}[t!]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1891
  %\begin{boxedminipage}{\linewidth}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1892
  %\small
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1893
  %\begin{tabular}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1894
  %\isacommand{atom\_decl}~@{text "var cvar tvar"}\\[1mm]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1895
  %\isacommand{nominal\_datatype}~@{text "tkind ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1896
  %\phantom{$|$}~@{text "KStar"}~$|$~@{text "KFun tkind tkind"}\\ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1897
  %\isacommand{and}~@{text "ckind ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1898
  %\phantom{$|$}~@{text "CKSim ty ty"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1899
  %\isacommand{and}~@{text "ty ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1900
  %\phantom{$|$}~@{text "TVar tvar"}~$|$~@{text "T string"}~$|$~@{text "TApp ty ty"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1901
  %$|$~@{text "TFun string ty_list"}~%
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1902
  %$|$~@{text "TAll tv::tvar tkind ty::ty"}  \isacommand{binds}~@{text "tv"}~\isacommand{in}~@{text ty}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1903
  %$|$~@{text "TArr ckind ty"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1904
  %\isacommand{and}~@{text "ty_lst ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1905
  %\phantom{$|$}~@{text "TNil"}~$|$~@{text "TCons ty ty_lst"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1906
  %\isacommand{and}~@{text "cty ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1907
  %\phantom{$|$}~@{text "CVar cvar"}~%
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1908
  %$|$~@{text "C string"}~$|$~@{text "CApp cty cty"}~$|$~@{text "CFun string co_lst"}\\
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1909
  %$|$~@{text "CAll cv::cvar ckind cty::cty"}  \isacommand{binds}~@{text "cv"}~\isacommand{in}~@{text cty}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1910
  %$|$~@{text "CArr ckind cty"}~$|$~@{text "CRefl ty"}~$|$~@{text "CSym cty"}~$|$~@{text "CCirc cty cty"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1911
  %$|$~@{text "CAt cty ty"}~$|$~@{text "CLeft cty"}~$|$~@{text "CRight cty"}~$|$~@{text "CSim cty cty"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1912
  %$|$~@{text "CRightc cty"}~$|$~@{text "CLeftc cty"}~$|$~@{text "Coerce cty cty"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1913
  %\isacommand{and}~@{text "co_lst ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1914
  %\phantom{$|$}@{text "CNil"}~$|$~@{text "CCons cty co_lst"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1915
  %\isacommand{and}~@{text "trm ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1916
  %\phantom{$|$}~@{text "Var var"}~$|$~@{text "K string"}\\
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1917
  %$|$~@{text "LAM_ty tv::tvar tkind t::trm"}  \isacommand{binds}~@{text "tv"}~\isacommand{in}~@{text t}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1918
  %$|$~@{text "LAM_cty cv::cvar ckind t::trm"}   \isacommand{binds}~@{text "cv"}~\isacommand{in}~@{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1919
  %$|$~@{text "App_ty trm ty"}~$|$~@{text "App_cty trm cty"}~$|$~@{text "App trm trm"}\\
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1920
  %$|$~@{text "Lam v::var ty t::trm"}  \isacommand{binds}~@{text "v"}~\isacommand{in}~@{text t}\\
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1921
  %$|$~@{text "Let x::var ty trm t::trm"}  \isacommand{binds}~@{text x}~\isacommand{in}~@{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1922
  %$|$~@{text "Case trm assoc_lst"}~$|$~@{text "Cast trm co"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1923
  %\isacommand{and}~@{text "assoc_lst ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1924
  %\phantom{$|$}~@{text ANil}~%
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  1925
  %$|$~@{text "ACons p::pat t::trm assoc_lst"}  \isacommand{binds}~@{text "bv p"}~\isacommand{in}~@{text t}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1926
  %\isacommand{and}~@{text "pat ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1927
  %\phantom{$|$}~@{text "Kpat string tvtk_lst tvck_lst vt_lst"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1928
  %\isacommand{and}~@{text "vt_lst ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1929
  %\phantom{$|$}~@{text VTNil}~$|$~@{text "VTCons var ty vt_lst"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1930
  %\isacommand{and}~@{text "tvtk_lst ="}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1931
  %\phantom{$|$}~@{text TVTKNil}~$|$~@{text "TVTKCons tvar tkind tvtk_lst"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1932
  %\isacommand{and}~@{text "tvck_lst ="}\\ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1933
  %\phantom{$|$}~@{text TVCKNil}~$|$ @{text "TVCKCons cvar ckind tvck_lst"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1934
  %\isacommand{binder}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1935
  %@{text "bv :: pat \<Rightarrow> atom list"}~\isacommand{and}~%
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1936
  %@{text "bv1 :: vt_lst \<Rightarrow> atom list"}~\isacommand{and}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1937
  %@{text "bv2 :: tvtk_lst \<Rightarrow> atom list"}~\isacommand{and}~%
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1938
  %@{text "bv3 :: tvck_lst \<Rightarrow> atom list"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1939
  %\isacommand{where}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1940
  %\phantom{$|$}~@{text "bv (K s tvts tvcs vs) = (bv3 tvts) @ (bv2 tvcs) @ (bv1 vs)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1941
  %$|$~@{text "bv1 VTNil = []"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1942
  %$|$~@{text "bv1 (VTCons x ty tl) = (atom x)::(bv1 tl)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1943
  %$|$~@{text "bv2 TVTKNil = []"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1944
  %$|$~@{text "bv2 (TVTKCons a ty tl) = (atom a)::(bv2 tl)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1945
  %$|$~@{text "bv3 TVCKNil = []"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1946
  %$|$~@{text "bv3 (TVCKCons c cty tl) = (atom c)::(bv3 tl)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1947
  %\end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1948
  %\end{boxedminipage}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1949
  %\caption{The nominal datatype declaration for Core-Haskell. For the moment we
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1950
  %do not support nested types; therefore we explicitly have to unfold the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1951
  %lists @{text "co_lst"}, @{text "assoc_lst"} and so on. This will be improved
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1952
  %in a future version of Nominal Isabelle. Apart from that, the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1953
  %declaration follows closely the original in Figure~\ref{corehas}. The
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1954
  %point of our work is that having made such a declaration in Nominal Isabelle,
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1955
  %one obtains automatically a reasoning infrastructure for Core-Haskell.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1956
  %\label{nominalcorehas}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1957
  %\end{figure}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1958
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1959
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1960
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1961
section {* Strong Induction Principles *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1962
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1963
text {*
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  1964
  In the previous section we derived induction principles for alpha-equated terms. 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1965
  We call such induction principles \emph{weak}, because for a 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1966
  term-constructor \mbox{@{text "C\<^sup>\<alpha> x\<^isub>1\<dots>x\<^isub>r"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1967
  the induction hypothesis requires us to establish the implications \eqref{weakprem}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1968
  The problem with these implications is that in general they are difficult to establish.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1969
  The reason is that we cannot make any assumption about the bound atoms that might be in @{text "C\<^sup>\<alpha>"}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1970
  (for example we cannot assume the variable convention for them).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1971
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1972
  In \cite{UrbanTasson05} we introduced a method for automatically
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1973
  strengthening weak induction principles for terms containing single
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1974
  binders. These stronger induction principles allow the user to make additional
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1975
  assumptions about bound atoms. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1976
  These additional assumptions amount to a formal
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1977
  version of the informal variable convention for binders. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1978
  To sketch how this strengthening extends to the case of multiple binders, we use as
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1979
  running example the term-constructors @{text "Lam"} and @{text "Let"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1980
  from example \eqref{letpat}. Instead of establishing @{text " P\<^bsub>trm\<^esub> t \<and> P\<^bsub>pat\<^esub> p"},
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1981
  the stronger induction principle for \eqref{letpat} establishes properties @{text " P\<^bsub>trm\<^esub> c t \<and> P\<^bsub>pat\<^esub> c p"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1982
  where the additional parameter @{text c} controls
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1983
  which freshness assumptions the binders should satisfy. For the two term constructors 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1984
  this means that the user has to establish in inductions the implications
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1985
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1986
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1987
  \begin{tabular}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1988
  @{text "\<forall>a t c. {atom a} \<FRESH>\<^sup>* c \<and> (\<forall>d. P\<^bsub>trm\<^esub> d t) \<Rightarrow> P\<^bsub>trm\<^esub> c (Lam a t)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1989
  @{text "\<forall>p t c. (set (bn p)) \<FRESH>\<^sup>* c \<and> (\<forall>d. P\<^bsub>pat\<^esub> d p) \<and> (\<forall>d. P\<^bsub>trm\<^esub> d t) \<and> \<Rightarrow> P\<^bsub>trm\<^esub> c (Let p t)"}\\%[-0mm]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1990
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1991
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1992
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1993
  In \cite{UrbanTasson05} we showed how the weaker induction principles imply
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1994
  the stronger ones. This was done by some quite complicated, nevertheless automated,
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1995
  induction proof. In this paper we simplify this work by leveraging the automated proof
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1996
  methods from the function package of Isabelle/HOL. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1997
  The reasoning principle these methods employ is well-founded induction. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1998
  To use them in our setting, we have to discharge
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1999
  two proof obligations: one is that we have
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2000
  well-founded measures (for each type @{text "ty"}$^\alpha_{1..n}$) that decrease in 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2001
  every induction step and the other is that we have covered all cases. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2002
  As measures we use the size functions 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2003
  @{text "size_ty"}$^\alpha_{1..n}$, which we lifted in the previous section and which are 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2004
  all well-founded. It is straightforward to establish that these measures decrease 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2005
  in every induction step.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2006
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2007
  What is left to show is that we covered all cases. To do so, we use 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2008
  a \emph{cases lemma} derived for each type. For the terms in \eqref{letpat} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2009
  this lemma is of the form
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2010
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2011
  \begin{equation}\label{weakcases}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2012
  \infer{@{text "P\<^bsub>trm\<^esub>"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2013
  {\begin{array}{l@ {\hspace{9mm}}l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2014
  @{text "\<forall>x. t = Var x \<Rightarrow> P\<^bsub>trm\<^esub>"} & @{text "\<forall>a t'. t = Lam a t' \<Rightarrow> P\<^bsub>trm\<^esub>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2015
  @{text "\<forall>t\<^isub>1 t\<^isub>2. t = App t\<^isub>1 t\<^isub>2 \<Rightarrow> P\<^bsub>trm\<^esub>"} & @{text "\<forall>p t'. t = Let p t' \<Rightarrow> P\<^bsub>trm\<^esub>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2016
  \end{array}}\\[-1mm]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2017
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2018
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2019
  where we have a premise for each term-constructor.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2020
  The idea behind such cases lemmas is that we can conclude with a property @{text "P\<^bsub>trm\<^esub>"},
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2021
  provided we can show that this property holds if we substitute for @{text "t"} all 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2022
  possible term-constructors. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2023
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2024
  The only remaining difficulty is that in order to derive the stronger induction
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2025
  principles conveniently, the cases lemma in \eqref{weakcases} is too weak. For this note that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2026
  in order to apply this lemma, we have to establish @{text "P\<^bsub>trm\<^esub>"} for \emph{all} @{text Lam}- and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2027
  \emph{all} @{text Let}-terms. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2028
  What we need instead is a cases lemma where we only have to consider terms that have 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2029
  binders that are fresh w.r.t.~a context @{text "c"}. This gives the implications
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2030
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2031
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2032
  \begin{tabular}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2033
  @{text "\<forall>a t'. t = Lam a t' \<and> {atom a} \<FRESH>\<^sup>* c \<Rightarrow> P\<^bsub>trm\<^esub>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2034
  @{text "\<forall>p t'. t = Let p t' \<and> (set (bn p)) \<FRESH>\<^sup>* c \<Rightarrow> P\<^bsub>trm\<^esub>"}\\[-2mm]
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2035
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2036
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2037
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2038
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2039
  which however can be relatively easily be derived from the implications in \eqref{weakcases} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2040
  by a renaming using Properties \ref{supppermeq} and \ref{avoiding}. In the first case we know
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2041
  that @{text "{atom a} \<FRESH>\<^sup>* Lam a t"}. Property \eqref{avoiding} provides us therefore with 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2042
  a permutation @{text q}, such that @{text "{atom (q \<bullet> a)} \<FRESH>\<^sup>* c"} and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2043
  @{text "supp (Lam a t) \<FRESH>\<^sup>* q"} hold.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2044
  By using Property \ref{supppermeq}, we can infer from the latter 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2045
  that @{text "Lam (q \<bullet> a) (q \<bullet> t) = Lam a t"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2046
  and we are done with this case.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2047
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2048
  The @{text Let}-case involving a (non-recursive) deep binder is a bit more complicated.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2049
  The reason is that the we cannot apply Property \ref{avoiding} to the whole term @{text "Let p t"},
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2050
  because @{text p} might contain names bound by @{text bn}, but also some that are 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2051
  free. To solve this problem we have to introduce a permutation function that only
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2052
  permutes names bound by @{text bn} and leaves the other names unchanged. We do this again
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2053
  by lifting. For a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2054
  clause @{text "bn (C x\<^isub>1 \<dots> x\<^isub>r) = rhs"}, we define 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2055
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2056
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2057
  @{text "p \<bullet>\<^bsub>bn\<^esub> (C x\<^isub>1 \<dots> x\<^isub>r) \<equiv> C y\<^isub>1 \<dots> y\<^isub>r"}  with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2058
  $\begin{cases}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2059
  \text{@{text "y\<^isub>i \<equiv> x\<^isub>i"} provided @{text "x\<^isub>i"} does not occur in @{text "rhs"}}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2060
  \text{@{text "y\<^isub>i \<equiv> p \<bullet>\<^bsub>bn'\<^esub> x\<^isub>i"} provided @{text "bn' x\<^isub>i"} is in @{text "rhs"}}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2061
  \text{@{text "y\<^isub>i \<equiv> p \<bullet> x\<^isub>i"} otherwise}  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2062
  \end{cases}$
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2063
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2064
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2065
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2066
  with @{text "y\<^isub>i"} determined as follows:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2067
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2068
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2069
  \begin{tabular}{c@ {\hspace{2mm}}p{0.9\textwidth}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2070
  $\bullet$ & @{text "y\<^isub>i \<equiv> x\<^isub>i"} provided @{text "x\<^isub>i"} does not occur in @{text "rhs"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2071
  $\bullet$ & @{text "y\<^isub>i \<equiv> p \<bullet>\<^bsub>bn'\<^esub> x\<^isub>i"} provided @{text "bn' x\<^isub>i"} is in @{text "rhs"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2072
  $\bullet$ & @{text "y\<^isub>i \<equiv> p \<bullet> x\<^isub>i"} otherwise
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2073
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2074
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2075
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2076
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2077
  Now Properties \ref{supppermeq} and \ref{avoiding} give us a permutation @{text q} such that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2078
  @{text "(set (bn (q \<bullet>\<^bsub>bn\<^esub> p)) \<FRESH>\<^sup>* c"} holds and such that @{text "[q \<bullet>\<^bsub>bn\<^esub> p]\<^bsub>list\<^esub>.(q \<bullet> t)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2079
  is equal to @{text "[p]\<^bsub>list\<^esub>. t"}. We can also show that @{text "(q \<bullet>\<^bsub>bn\<^esub> p) \<approx>\<^bsub>bn\<^esub> p"}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2080
  These facts establish that @{text "Let (q \<bullet>\<^bsub>bn\<^esub> p) (p \<bullet> t) = Let p t"}, as we need. This
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2081
  completes the non-trivial cases in \eqref{letpat} for strengthening the corresponding induction
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2082
  principle.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2083
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2084
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2085
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2086
  A natural question is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2087
  whether we can also strengthen the weak induction principles involving
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2088
  the general binders presented here. We will indeed be able to so, but for this we need an 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2089
  additional notion for permuting deep binders. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2090
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2091
  Given a binding function @{text "bn"} we define an auxiliary permutation 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2092
  operation @{text "_ \<bullet>\<^bsub>bn\<^esub> _"} which permutes only bound arguments in a deep binder.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2093
  Assuming a clause of @{text bn} is given as 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2094
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2095
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2096
  @{text "bn (C x\<^isub>1 \<dots> x\<^isub>r) = rhs"}, 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2097
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2098
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2099
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2100
  then we define 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2101
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2102
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2103
  @{text "p \<bullet>\<^bsub>bn\<^esub> (C x\<^isub>1 \<dots> x\<^isub>r) \<equiv> C y\<^isub>1 \<dots> y\<^isub>r"} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2104
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2105
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2106
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2107
  with @{text "y\<^isub>i"} determined as follows:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2108
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2109
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2110
  \begin{tabular}{c@ {\hspace{2mm}}p{7cm}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2111
  $\bullet$ & @{text "y\<^isub>i \<equiv> x\<^isub>i"} provided @{text "x\<^isub>i"} does not occur in @{text "rhs"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2112
  $\bullet$ & @{text "y\<^isub>i \<equiv> p \<bullet>\<^bsub>bn'\<^esub> x\<^isub>i"} provided @{text "bn' x\<^isub>i"} is in @{text "rhs"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2113
  $\bullet$ & @{text "y\<^isub>i \<equiv> p \<bullet> x\<^isub>i"} otherwise
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2114
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2115
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2116
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2117
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2118
  Using again the quotient package  we can lift the @{text "_ \<bullet>\<^bsub>bn\<^esub> _"} function to 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2119
  alpha-equated terms. We can then prove the following two facts
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2120
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2121
  \begin{lem}\label{permutebn} 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2122
  Given a binding function @{text "bn\<^sup>\<alpha>"} then for all @{text p}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2123
  {\it (i)} @{text "p \<bullet> (bn\<^sup>\<alpha> x) = bn\<^sup>\<alpha> (p \<bullet>\<AL>\<^bsub>bn\<^esub> x)"} and {\it (ii)}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2124
    @{text "fa_bn\<^isup>\<alpha> x = fa_bn\<^isup>\<alpha> (p \<bullet>\<AL>\<^bsub>bn\<^esub> x)"}.
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2125
  \end{lem}
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2126
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2127
  \begin{proof} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2128
  By induction on @{text x}. The equations follow by simple unfolding 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2129
  of the definitions. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2130
  \end{proof}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2131
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2132
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2133
  The first property states that a permutation applied to a binding function is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2134
  equivalent to first permuting the binders and then calculating the bound
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2135
  atoms. The second amounts to the fact that permuting the binders has no 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2136
  effect on the free-atom function. The main point of this permutation
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2137
  function, however, is that if we have a permutation that is fresh 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2138
  for the support of an object @{text x}, then we can use this permutation 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2139
  to rename the binders in @{text x}, without ``changing'' @{text x}. In case of the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2140
  @{text "Let"} term-constructor from the example shown 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2141
  in \eqref{letpat} this means for a permutation @{text "r"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2142
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2143
  \begin{equation}\label{renaming}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2144
  \begin{array}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2145
  \mbox{if @{term "supp (Abs_lst (bn p) t\<^isub>2)  \<sharp>* r"}}\\ 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2146
  \qquad\mbox{then @{text "Let p t\<^isub>1 t\<^isub>2 = Let (r \<bullet>\<AL>\<^bsub>bn_pat\<^esub> p) t\<^isub>1 (r \<bullet> t\<^isub>2)"}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2147
  \end{array}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2148
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2149
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2150
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2151
  This fact will be crucial when establishing the strong induction principles below.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2152
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2153
 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2154
  In our running example about @{text "Let"}, the strong induction
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2155
  principle means that instead 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2156
  of establishing the implication 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2157
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2158
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2159
  @{text "\<forall>p t\<^isub>1 t\<^isub>2. P\<^bsub>pat\<^esub> p \<and> P\<^bsub>trm\<^esub> t\<^isub>1 \<and> P\<^bsub>trm\<^esub> t\<^isub>2 \<Rightarrow> P\<^bsub>trm\<^esub> (Let p t\<^isub>1 t\<^isub>2)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2160
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2161
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2162
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2163
  it is sufficient to establish the following implication
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2164
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2165
  \begin{equation}\label{strong}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2166
  \mbox{\begin{tabular}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2167
  @{text "\<forall>p t\<^isub>1 t\<^isub>2 c."}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2168
  \hspace{5mm}@{text "set (bn p) #\<^sup>* c \<and>"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2169
  \hspace{5mm}@{text "(\<forall>d. P\<^bsub>pat\<^esub> d p) \<and> (\<forall>d. P\<^bsub>trm\<^esub> d t\<^isub>1) \<and> (\<forall>d. P\<^bsub>trm\<^esub> d t\<^isub>2)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2170
  \hspace{15mm}@{text "\<Rightarrow> P\<^bsub>trm\<^esub> c (Let p t\<^isub>1 t\<^isub>2)"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2171
  \end{tabular}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2172
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2173
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2174
  \noindent 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2175
  While this implication contains an additional argument, namely @{text c}, and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2176
  also additional universal quantifications, it is usually easier to establish.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2177
  The reason is that we have the freshness 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2178
  assumption @{text "set (bn\<^sup>\<alpha> p) #\<^sup>* c"}, whereby @{text c} can be arbitrarily 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2179
  chosen by the user as long as it has finite support.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2180
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2181
  Let us now show how we derive the strong induction principles from the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2182
  weak ones. In case of the @{text "Let"}-example we derive by the weak 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2183
  induction the following two properties
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2184
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2185
  \begin{equation}\label{hyps}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2186
  @{text "\<forall>q c. P\<^bsub>trm\<^esub> c (q \<bullet> t)"} \hspace{4mm} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2187
  @{text "\<forall>q\<^isub>1 q\<^isub>2 c. P\<^bsub>pat\<^esub> (q\<^isub>1 \<bullet>\<AL>\<^bsub>bn\<^esub> (q\<^isub>2 \<bullet> p))"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2188
  \end{equation} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2189
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2190
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2191
  For the @{text Let} term-constructor  we therefore have to establish @{text "P\<^bsub>trm\<^esub> c (q \<bullet> Let p t\<^isub>1 t\<^isub>2)"} 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2192
  assuming \eqref{hyps} as induction hypotheses (the first for @{text t\<^isub>1} and @{text t\<^isub>2}). 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2193
  By Property~\ref{avoiding} we
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2194
  obtain a permutation @{text "r"} such that 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2195
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2196
  \begin{equation}\label{rprops}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2197
  @{term "(r \<bullet> set (bn (q \<bullet> p))) \<sharp>* c "}\hspace{4mm}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2198
  @{term "supp (Abs_lst (bn (q \<bullet> p)) (q \<bullet> t\<^isub>2)) \<sharp>* r"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2199
  \end{equation}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2200
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2201
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2202
  hold. The latter fact and \eqref{renaming} give us
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2203
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2204
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2205
  \begin{tabular}{l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2206
  @{text "Let (q \<bullet> p) (q \<bullet> t\<^isub>1) (q \<bullet> t\<^isub>2) ="} \\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2207
  \hspace{15mm}@{text "Let (r \<bullet>\<AL>\<^bsub>bn\<^esub> (q \<bullet> p)) (q \<bullet> t\<^isub>1) (r \<bullet> (q \<bullet> t\<^isub>2))"}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2208
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2209
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2210
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2211
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2212
  So instead of proving @{text "P\<^bsub>trm\<^esub> c (q \<bullet> Let p t\<^isub>1 t\<^isub>2)"}, we can equally
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2213
  establish @{text "P\<^bsub>trm\<^esub> c (Let (r \<bullet>\<AL>\<^bsub>bn\<^esub> (q \<bullet> p)) (q \<bullet> t\<^isub>1) (r \<bullet> (q \<bullet> t\<^isub>2)))"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2214
  To do so, we will use the implication \eqref{strong} of the strong induction
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2215
  principle, which requires us to discharge
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2216
  the following four proof obligations:
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2217
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2218
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2219
  \begin{tabular}{rl}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2220
  {\it (i)} &   @{text "set (bn (r \<bullet>\<AL>\<^bsub>bn\<^esub> (q \<bullet> p))) #\<^sup>* c"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2221
  {\it (ii)} &  @{text "\<forall>d. P\<^bsub>pat\<^esub> d (r \<bullet>\<AL>\<^bsub>bn\<^esub> (q \<bullet> p))"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2222
  {\it (iii)} & @{text "\<forall>d. P\<^bsub>trm\<^esub> d (q \<bullet> t\<^isub>1)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2223
  {\it (iv)} & @{text "\<forall>d. P\<^bsub>trm\<^esub> d (r \<bullet> (q \<bullet> t\<^isub>2))"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2224
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2225
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2226
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2227
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2228
  The first follows from \eqref{rprops} and Lemma~\ref{permutebn}.{\it (i)}; the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2229
  others from the induction hypotheses in \eqref{hyps} (in the fourth case
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2230
  we have to use the fact that @{term "(r \<bullet> (q \<bullet> t\<^isub>2)) = (r + q) \<bullet> t\<^isub>2"}).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2231
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2232
  Taking now the identity permutation @{text 0} for the permutations in \eqref{hyps},
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2233
  we can establish our original goals, namely @{text "P\<^bsub>trm\<^esub> c t"} and \mbox{@{text "P\<^bsub>pat\<^esub> c p"}}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2234
  This completes the proof showing that the weak induction principles imply 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2235
  the strong induction principles. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2236
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2237
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2238
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2239
section {* Related Work\label{related} *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2240
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2241
text {*
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2242
  To our knowledge the earliest usage of general binders in a theorem prover
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2243
  is described in \cite{NaraschewskiNipkow99} about a formalisation of the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2244
  algorithm W. This formalisation implements binding in type-schemes using a
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2245
  de-Bruijn indices representation. Since type-schemes in W contain only a single
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2246
  place where variables are bound, different indices do not refer to different binders (as in the usual
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2247
  de-Bruijn representation), but to different bound variables. A similar idea
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2248
  has been recently explored for general binders in the locally nameless
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2249
  approach to binding \cite{chargueraud09}.  There, de-Bruijn indices consist
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2250
  of two numbers, one referring to the place where a variable is bound, and the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2251
  other to which variable is bound. The reasoning infrastructure for both
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2252
  representations of bindings comes for free in theorem provers like Isabelle/HOL or
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2253
  Coq, since the corresponding term-calculi can be implemented as ``normal''
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2254
  datatypes.  However, in both approaches it seems difficult to achieve our
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2255
  fine-grained control over the ``semantics'' of bindings (i.e.~whether the
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2256
  order of binders should matter, or vacuous binders should be taken into
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2257
  account). To do so, one would require additional predicates that filter out
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2258
  unwanted terms. Our guess is that such predicates result in rather
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2259
  intricate formal reasoning.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2260
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2261
  Another technique for representing binding is higher-order abstract syntax
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2262
  (HOAS). , which for example is implemented in the Twelf system. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2263
  This representation
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2264
  technique supports very elegantly many aspects of \emph{single} binding, and
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2265
  impressive work has been done that uses HOAS for mechanising the metatheory
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2266
  of SML~\cite{LeeCraryHarper07}. We are, however, not aware how multiple
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2267
  binders of SML are represented in this work. Judging from the submitted
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2268
  Twelf-solution for the POPLmark challenge, HOAS cannot easily deal with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2269
  binding constructs where the number of bound variables is not fixed. For example 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2270
  In the second part of this challenge, @{text "Let"}s involve
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2271
  patterns that bind multiple variables at once. In such situations, HOAS
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2272
  seems to have to resort to the iterated-single-binders-approach with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2273
  all the unwanted consequences when reasoning about the resulting terms.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2274
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2275
  Two formalisations involving general binders have been 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2276
  performed in older
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2277
  versions of Nominal Isabelle (one about Psi-calculi and one about algorithm W 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2278
  \cite{BengtsonParow09,UrbanNipkow09}).  Both
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2279
  use the approach based on iterated single binders. Our experience with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2280
  the latter formalisation has been disappointing. The major pain arose from
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2281
  the need to ``unbind'' variables. This can be done in one step with our
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2282
  general binders described in this paper, but needs a cumbersome
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2283
  iteration with single binders. The resulting formal reasoning turned out to
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2284
  be rather unpleasant. The hope is that the extension presented in this paper
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2285
  is a substantial improvement.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2286
 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2287
  The most closely related work to the one presented here is the Ott-tool
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2288
  \cite{ott-jfp} and the C$\alpha$ml language \cite{Pottier06}. Ott is a nifty
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2289
  front-end for creating \LaTeX{} documents from specifications of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2290
  term-calculi involving general binders. For a subset of the specifications
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2291
  Ott can also generate theorem prover code using a raw representation of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2292
  terms, and in Coq also a locally nameless representation. The developers of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2293
  this tool have also put forward (on paper) a definition for
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2294
  alpha-equivalence of terms that can be specified in Ott.  This definition is
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2295
  rather different from ours, not using any nominal techniques.  To our
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2296
  knowledge there is no concrete mathematical result concerning this
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2297
  notion of alpha-equivalence.  Also the definition for the 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2298
  notion of free variables
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2299
  is work in progress.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2300
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2301
  Although we were heavily inspired by the syntax of Ott,
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2302
  its definition of alpha-equi\-valence is unsuitable for our extension of
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2303
  Nominal Isabelle. First, it is far too complicated to be a basis for
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2304
  automated proofs implemented on the ML-level of Isabelle/HOL. Second, it
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2305
  covers cases of binders depending on other binders, which just do not make
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2306
  sense for our alpha-equated terms. Third, it allows empty types that have no
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2307
  meaning in a HOL-based theorem prover. We also had to generalise slightly Ott's 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2308
  binding clauses. In Ott you specify binding clauses with a single body; we 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2309
  allow more than one. We have to do this, because this makes a difference 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2310
  for our notion of alpha-equivalence in case of \isacommand{binds (set)} and 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2311
  \isacommand{binds (set+)}. 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2312
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2313
  Consider the examples
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2314
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2315
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2316
  \begin{tabular}{@ {}l@ {\hspace{2mm}}l@ {}}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2317
  @{text "Foo\<^isub>1 xs::name fset t::trm s::trm"} &  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2318
      \isacommand{binds (set)} @{text "xs"} \isacommand{in} @{text "t s"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2319
  @{text "Foo\<^isub>2 xs::name fset t::trm s::trm"} &  
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2320
      \isacommand{binds (set)} @{text "xs"} \isacommand{in} @{text "t"}, 
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2321
      \isacommand{binds (set)} @{text "xs"} \isacommand{in} @{text "s"}\\
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2322
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2323
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2324
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2325
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2326
  In the first term-constructor we have a single
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2327
  body that happens to be ``spread'' over two arguments; in the second term-constructor we have
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2328
  two independent bodies in which the same variables are bound. As a result we 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2329
  have
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2330
   
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2331
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2332
  \begin{tabular}{r@ {\hspace{1.5mm}}c@ {\hspace{1.5mm}}l}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2333
  @{text "Foo\<^isub>1 {a, b} (a, b) (a, b)"} & $\not=$ & 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2334
  @{text "Foo\<^isub>1 {a, b} (a, b) (b, a)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2335
  @{text "Foo\<^isub>2 {a, b} (a, b) (a, b)"} & $=$ & 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2336
  @{text "Foo\<^isub>2 {a, b} (a, b) (b, a)"}\\
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2337
  \end{tabular}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2338
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2339
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2340
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2341
  and therefore need the extra generality to be able to distinguish between 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2342
  both specifications.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2343
  Because of how we set up our definitions, we also had to impose some restrictions
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2344
  (like a single binding function for a deep binder) that are not present in Ott. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2345
  Our
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2346
  expectation is that we can still cover many interesting term-calculi from
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2347
  programming language research, for example Core-Haskell. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2348
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2349
  Pottier presents in \cite{Pottier06} a language, called C$\alpha$ml, for 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2350
  representing terms with general binders inside OCaml. This language is
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2351
  implemented as a front-end that can be translated to OCaml with the help of
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2352
  a library. He presents a type-system in which the scope of general binders
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2353
  can be specified using special markers, written @{text "inner"} and 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2354
  @{text "outer"}. It seems our and his specifications can be
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2355
  inter-translated as long as ours use the binding mode 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2356
  \isacommand{binds} only.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2357
  However, we have not proved this. Pottier gives a definition for 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2358
  alpha-equivalence, which also uses a permutation operation (like ours).
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2359
  Still, this definition is rather different from ours and he only proves that
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2360
  it defines an equivalence relation. A complete
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2361
  reasoning infrastructure is well beyond the purposes of his language. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2362
  Similar work for Haskell with similar results was reported by Cheney \cite{Cheney05a}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2363
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2364
  In a slightly different domain (programming with dependent types), the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2365
  paper \cite{Altenkirch10} presents a calculus with a notion of 
3004
c6af56de923d more on paper
Christian Urban <urbanc@in.tum.de>
parents: 3002
diff changeset
  2366
  alpha-equivalence related to our binding mode \isacommand{binds (set+)}.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2367
  The definition in \cite{Altenkirch10} is similar to the one by Pottier, except that it
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2368
  has a more operational flavour and calculates a partial (renaming) map. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2369
  In this way, the definition can deal with vacuous binders. However, to our
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2370
  best knowledge, no concrete mathematical result concerning this
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2371
  definition of alpha-equivalence has been proved.  
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2372
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2373
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2374
section {* Conclusion *}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2375
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2376
text {*
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2377
  Telsescopes by de Bruijn (AUTOMATH project does not provide an automatic infrastructure).
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2378
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2379
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2380
  We have presented an extension of Nominal Isabelle for dealing with
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2381
  general binders, that is term-constructors having multiple bound 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2382
  variables. For this extension we introduced new definitions of 
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2383
  alpha-equivalence and automated all necessary proofs in Isabelle/HOL.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2384
  To specify general binders we used the specifications from Ott, but extended them 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2385
  in some places and restricted
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2386
  them in others so that they make sense in the context of alpha-equated terms. 
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2387
  We also introduced two binding modes (set and set+) that do not 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2388
  exist in Ott. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2389
  We have tried out the extension with calculi such as Core-Haskell, type-schemes 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2390
  and approximately a  dozen of other typical examples from programming 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2391
  language research~\cite{SewellBestiary}. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2392
  The code
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2393
  will eventually become part of the next Isabelle distribution.\footnote{For the moment
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2394
  it can be downloaded from the Mercurial repository linked at
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2395
  \href{http://isabelle.in.tum.de/nominal/download}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2396
  {http://isabelle.in.tum.de/nominal/download}.}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2397
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2398
  We have left out a discussion about how functions can be defined over
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2399
  alpha-equated terms involving general binders. In earlier versions of Nominal
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2400
  Isabelle this turned out to be a thorny issue.  We
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2401
  hope to do better this time by using the function package that has recently
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2402
  been implemented in Isabelle/HOL and also by restricting function
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2403
  definitions to equivariant functions (for them we can
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2404
  provide more automation).
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2405
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2406
  There are some restrictions we imposed in this paper that we would like to lift in
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2407
  future work. One is the exclusion of nested datatype definitions. Nested
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2408
  datatype definitions allow one to specify, for instance, the function kinds
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2409
  in Core-Haskell as @{text "TFun string (ty list)"} instead of the unfolded
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2410
  version @{text "TFun string ty_list"} (see Figure~\ref{nominalcorehas}). To
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2411
  achieve this, we need a slightly more clever implementation than we have at the moment. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2412
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2413
  A more interesting line of investigation is whether we can go beyond the 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2414
  simple-minded form of binding functions that we adopted from Ott. At the moment, binding
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2415
  functions can only return the empty set, a singleton atom set or unions
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2416
  of atom sets (similarly for lists). It remains to be seen whether 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2417
  properties like
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2418
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2419
  \begin{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2420
  @{text "fa_ty x  =  bn x \<union> fa_bn x"}.
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2421
  \end{center}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2422
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2423
  \noindent
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2424
  allow us to support more interesting binding functions. 
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2425
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2426
  We have also not yet played with other binding modes. For example we can
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2427
  imagine that there is need for a binding mode where instead of lists, we
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2428
  abstract lists of distinct elements.  Once we feel confident about such
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2429
  binding modes, our implementation can be easily extended to accommodate
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2430
  them.\medskip
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2431
  
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2432
  \noindent
2989
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2433
  {\bf Acknowledgements:} We are very grateful to Andrew Pitts for many
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2434
  discussions about Nominal Isabelle. We thank Peter Sewell for making the
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2435
  informal notes \cite{SewellBestiary} available to us and also for patiently
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2436
  explaining some of the finer points of the Ott-tool.  Stephanie Weirich
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2437
  suggested to separate the subgrammars of kinds and types in our Core-Haskell
5df574281b69 more on the intro and correct style-files
Christian Urban <urbanc@in.tum.de>
parents: 2985
diff changeset
  2438
  example.
2985
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2439
*}
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2440
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2441
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2442
(*<*)
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2443
end
05ccb61aa628 started lmcs paper (isabelle make lmcs)
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2444
(*>*)