src/HOL/Nominal/Examples/Height.thy
author wenzelm
Thu, 03 Jan 2008 22:25:15 +0100
changeset 25819 e6feb08b7f4b
parent 25751 a4e69ce247e0
child 26262 f5cb9602145f
permissions -rw-r--r--
replaced thread_properties by simplified version in position.ML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
     1
(* $Id$ *)
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
     2
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
     3
theory Height
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
     4
  imports "../Nominal"
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
     5
begin
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
     6
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
     7
text {*  
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
     8
  A trivial problem suggested by D. Wang. It shows how
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
     9
  the height of a lambda-terms behaves under substitution.
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    10
*}
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    11
20396
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    12
atom_decl name
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    13
22829
f1db55c7534d tuned some proofs and changed variable names in some definitions of Nominal.thy
urbanc
parents: 22418
diff changeset
    14
nominal_datatype lam = 
f1db55c7534d tuned some proofs and changed variable names in some definitions of Nominal.thy
urbanc
parents: 22418
diff changeset
    15
    Var "name"
f1db55c7534d tuned some proofs and changed variable names in some definitions of Nominal.thy
urbanc
parents: 22418
diff changeset
    16
  | App "lam" "lam"
f1db55c7534d tuned some proofs and changed variable names in some definitions of Nominal.thy
urbanc
parents: 22418
diff changeset
    17
  | Lam "\<guillemotleft>name\<guillemotright>lam" ("Lam [_]._" [100,100] 100)
20396
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    18
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    19
text {* Definition of the height-function on lambda-terms. *} 
20396
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    20
21555
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    21
consts 
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    22
  height :: "lam \<Rightarrow> int"
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    23
21555
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    24
nominal_primrec
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    25
  "height (Var x) = 1"
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    26
  "height (App t1 t2) = (max (height t1) (height t2)) + 1"
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    27
  "height (Lam [a].t) = (height t) + 1"
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    28
  apply(finite_guess add: perm_int_def)+
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    29
  apply(rule TrueI)+
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    30
  apply(simp add: fresh_int)
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    31
  apply(fresh_guess add: perm_int_def)+
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    32
  done
21087
3e56528a39f7 Adapted to changes in FCBs.
berghofe
parents: 21053
diff changeset
    33
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    34
text {* Definition of capture-avoiding substitution. *}
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    35
21555
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    36
consts
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    37
  subst :: "lam \<Rightarrow> name \<Rightarrow> lam \<Rightarrow> lam"  ("_[_::=_]" [100,100,100] 100)
20396
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    38
21555
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    39
nominal_primrec
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    40
  "(Var x)[y::=t'] = (if x=y then t' else (Var x))"
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    41
  "(App t1 t2)[y::=t'] = App (t1[y::=t']) (t2[y::=t'])"
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    42
  "\<lbrakk>x\<sharp>y; x\<sharp>t'\<rbrakk> \<Longrightarrow> (Lam [x].t)[y::=t'] = Lam [x].(t[y::=t'])"
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 21555
diff changeset
    43
apply(finite_guess)+
21555
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    44
apply(rule TrueI)+
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    45
apply(simp add: abs_fresh)
22418
49e2d9744ae1 major update of the nominal package; there is now an infrastructure
urbanc
parents: 21555
diff changeset
    46
apply(fresh_guess)+
20396
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    47
done
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    48
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    49
text{* The next lemma is needed in the Var-case of the theorem. *}
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    50
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    51
lemma height_ge_one: 
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    52
  shows "1 \<le> (height e)"
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    53
by (nominal_induct e rule: lam.induct) (simp_all)
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    54
25751
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    55
text {* 
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    56
  Unlike the proplem suggested by Wang, however, the 
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    57
  theorem is here formulated  entirely by using functions. 
a4e69ce247e0 tuned proofs and comments
urbanc
parents: 23393
diff changeset
    58
*}
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    59
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    60
theorem height_subst:
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    61
  shows "height (e[x::=e']) \<le> (((height e) - 1) + (height e'))"
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    62
proof (nominal_induct e avoiding: x e' rule: lam.induct)
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    63
  case (Var y)
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    64
  have "1 \<le> height e'" by (rule height_ge_one)
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    65
  then show "height (Var y[x::=e']) \<le> height (Var y) - 1 + height e'" by simp
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    66
next
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    67
  case (Lam y e1)
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    68
  hence ih: "height (e1[x::=e']) \<le> (((height e1) - 1) + (height e'))" by simp
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    69
  moreover
23393
31781b2de73d tuned proofs: avoid implicit prems;
wenzelm
parents: 23315
diff changeset
    70
  have vc: "y\<sharp>x" "y\<sharp>e'" by fact+ (* usual variable convention *)
21555
229c0158de92 adapted function definitions to new syntax
urbanc
parents: 21087
diff changeset
    71
  ultimately show "height ((Lam [y].e1)[x::=e']) \<le> height (Lam [y].e1) - 1 + height e'" by simp
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    72
next    
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    73
  case (App e1 e2)
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    74
  hence ih1: "height (e1[x::=e']) \<le> (((height e1) - 1) + (height e'))" 
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    75
    and ih2: "height (e2[x::=e']) \<le> (((height e2) - 1) + (height e'))" by simp_all
20396
4d0c33719348 used the recursion combinator for the height and substitution function
urbanc
parents: 19752
diff changeset
    76
  then show "height ((App e1 e2)[x::=e']) \<le> height (App e1 e2) - 1 + height e'"  by simp 
19752
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    77
qed
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    78
18e5aa65fb8b added an example suggested by D. Wang on the PoplMark-mailing list;
urbanc
parents:
diff changeset
    79
end