src/HOLCF/Up.thy
author huffman
Wed, 02 Jan 2008 20:23:49 +0100
changeset 25789 c0506ac5b6b4
parent 25788 30cbe0764599
child 25827 c2adeb1bae5c
permissions -rw-r--r--
add dcpo instance proof
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
     1
(*  Title:      HOLCF/Up.thy
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     2
    ID:         $Id$
16070
4a83dd540b88 removed LICENCE note -- everything is subject to Isabelle licence as
wenzelm
parents: 15599
diff changeset
     3
    Author:     Franz Regensburger and Brian Huffman
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     4
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     5
Lifting.
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     6
*)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     7
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     8
header {* The type of lifted values *}
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     9
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    10
theory Up
19105
3aabd46340e0 use minimal imports
huffman
parents: 18290
diff changeset
    11
imports Cfun
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    12
begin
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    13
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
    14
defaultsort cpo
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
    15
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    16
subsection {* Definition of new type for lifting *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    17
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    18
datatype 'a u = Ibottom | Iup 'a
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    19
18290
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
    20
syntax (xsymbols)
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
    21
  "u" :: "type \<Rightarrow> type" ("(_\<^sub>\<bottom>)" [1000] 999)
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
    22
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    23
consts
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    24
  Ifup :: "('a \<rightarrow> 'b::pcpo) \<Rightarrow> 'a u \<Rightarrow> 'b"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    25
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    26
primrec
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    27
  "Ifup f Ibottom = \<bottom>"
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    28
  "Ifup f (Iup x) = f\<cdot>x"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    29
18290
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
    30
subsection {* Ordering on lifted cpo *}
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    31
25787
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    32
instantiation u :: (cpo) sq_ord
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    33
begin
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    34
25787
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    35
definition
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    36
  less_up_def:
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    37
    "(op \<sqsubseteq>) \<equiv> (\<lambda>x y. case x of Ibottom \<Rightarrow> True | Iup a \<Rightarrow>
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    38
      (case y of Ibottom \<Rightarrow> False | Iup b \<Rightarrow> a \<sqsubseteq> b))"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    39
25787
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    40
instance ..
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    41
end
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    42
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    43
lemma minimal_up [iff]: "Ibottom \<sqsubseteq> z"
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    44
by (simp add: less_up_def)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    45
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    46
lemma not_Iup_less [iff]: "\<not> Iup x \<sqsubseteq> Ibottom"
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    47
by (simp add: less_up_def)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    48
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    49
lemma Iup_less [iff]: "(Iup x \<sqsubseteq> Iup y) = (x \<sqsubseteq> y)"
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    50
by (simp add: less_up_def)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    51
18290
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
    52
subsection {* Lifted cpo is a partial order *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    53
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
    54
instance u :: (cpo) po
25787
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    55
proof
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    56
  fix x :: "'a u"
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    57
  show "x \<sqsubseteq> x"
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    58
    unfolding less_up_def by (simp split: u.split)
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    59
next
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    60
  fix x y :: "'a u"
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    61
  assume "x \<sqsubseteq> y" "y \<sqsubseteq> x" thus "x = y"
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    62
    unfolding less_up_def
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    63
    by (auto split: u.split_asm intro: antisym_less)
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    64
next
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    65
  fix x y z :: "'a u"
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    66
  assume "x \<sqsubseteq> y" "y \<sqsubseteq> z" thus "x \<sqsubseteq> z"
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    67
    unfolding less_up_def
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    68
    by (auto split: u.split_asm intro: trans_less)
398dec10518e update sq_ord/po instance proofs
huffman
parents: 25785
diff changeset
    69
qed
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    70
18290
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
    71
subsection {* Lifted cpo is a cpo *}
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    72
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    73
lemma is_lub_Iup:
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    74
  "range S <<| x \<Longrightarrow> range (\<lambda>i. Iup (S i)) <<| Iup x"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    75
apply (rule is_lubI)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    76
apply (rule ub_rangeI)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    77
apply (subst Iup_less)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    78
apply (erule is_ub_lub)
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
    79
apply (case_tac u)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    80
apply (drule ub_rangeD)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    81
apply simp
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    82
apply simp
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    83
apply (erule is_lub_lub)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    84
apply (rule ub_rangeI)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
    85
apply (drule_tac i=i in ub_rangeD)
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    86
apply simp
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
    87
done
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
    88
25789
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    89
lemma is_lub_Iup': "\<lbrakk>directed S; S <<| x\<rbrakk> \<Longrightarrow> (Iup ` S) <<| Iup x"
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    90
apply (rule is_lubI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    91
apply (rule ub_imageI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    92
apply (subst Iup_less)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    93
apply (erule (1) is_ubD [OF is_lubD1])
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    94
apply (case_tac u)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    95
apply (drule directedD1, erule exE)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    96
apply (drule (1) ub_imageD)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    97
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    98
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
    99
apply (erule is_lub_lub)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   100
apply (rule is_ubI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   101
apply (drule (1) ub_imageD)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   102
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   103
done
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   104
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   105
text {* Now some lemmas about chains of @{typ "'a u"} elements *}
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   106
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   107
lemma up_lemma1: "z \<noteq> Ibottom \<Longrightarrow> Iup (THE a. Iup a = z) = z"
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   108
by (case_tac z, simp_all)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   109
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   110
lemma up_lemma2:
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   111
  "\<lbrakk>chain Y; Y j \<noteq> Ibottom\<rbrakk> \<Longrightarrow> Y (i + j) \<noteq> Ibottom"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   112
apply (erule contrapos_nn)
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   113
apply (drule_tac x="j" and y="i + j" in chain_mono3)
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   114
apply (rule le_add2)
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   115
apply (case_tac "Y j")
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   116
apply assumption
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   117
apply simp
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   118
done
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   119
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   120
lemma up_lemma3:
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   121
  "\<lbrakk>chain Y; Y j \<noteq> Ibottom\<rbrakk> \<Longrightarrow> Iup (THE a. Iup a = Y (i + j)) = Y (i + j)"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   122
by (rule up_lemma1 [OF up_lemma2])
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   123
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   124
lemma up_lemma4:
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   125
  "\<lbrakk>chain Y; Y j \<noteq> Ibottom\<rbrakk> \<Longrightarrow> chain (\<lambda>i. THE a. Iup a = Y (i + j))"
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   126
apply (rule chainI)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   127
apply (rule Iup_less [THEN iffD1])
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   128
apply (subst up_lemma3, assumption+)+
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   129
apply (simp add: chainE)
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   130
done
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   131
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   132
lemma up_lemma5:
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   133
  "\<lbrakk>chain Y; Y j \<noteq> Ibottom\<rbrakk> \<Longrightarrow>
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   134
    (\<lambda>i. Y (i + j)) = (\<lambda>i. Iup (THE a. Iup a = Y (i + j)))"
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   135
by (rule ext, rule up_lemma3 [symmetric])
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   136
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   137
lemma up_lemma6:
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   138
  "\<lbrakk>chain Y; Y j \<noteq> Ibottom\<rbrakk>
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   139
      \<Longrightarrow> range Y <<| Iup (\<Squnion>i. THE a. Iup a = Y(i + j))"
16933
91ded127f5f7 fixed var index in tactic;
wenzelm
parents: 16753
diff changeset
   140
apply (rule_tac j1 = j in is_lub_range_shift [THEN iffD1])
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   141
apply assumption
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   142
apply (subst up_lemma5, assumption+)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   143
apply (rule is_lub_Iup)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   144
apply (rule thelubE [OF _ refl])
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   145
apply (erule (1) up_lemma4)
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   146
done
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   147
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   148
lemma up_chain_lemma:
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   149
  "chain Y \<Longrightarrow>
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   150
   (\<exists>A. chain A \<and> lub (range Y) = Iup (lub (range A)) \<and>
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   151
   (\<exists>j. \<forall>i. Y (i + j) = Iup (A i))) \<or> (Y = (\<lambda>i. Ibottom))"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   152
apply (rule disjCI)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   153
apply (simp add: expand_fun_eq)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   154
apply (erule exE, rename_tac j)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   155
apply (rule_tac x="\<lambda>i. THE a. Iup a = Y (i + j)" in exI)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   156
apply (simp add: up_lemma4)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   157
apply (simp add: up_lemma6 [THEN thelubI])
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   158
apply (rule_tac x=j in exI)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   159
apply (simp add: up_lemma3)
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   160
done
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   161
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   162
lemma cpo_up: "chain (Y::nat \<Rightarrow> 'a u) \<Longrightarrow> \<exists>x. range Y <<| x"
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   163
apply (frule up_chain_lemma, safe)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   164
apply (rule_tac x="Iup (lub (range A))" in exI)
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   165
apply (erule_tac j="j" in is_lub_range_shift [THEN iffD1, standard])
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   166
apply (simp add: is_lub_Iup thelubE)
17585
f12d7ac88eb4 cleaned up
huffman
parents: 16933
diff changeset
   167
apply (rule exI, rule lub_const)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   168
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   169
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   170
instance u :: (cpo) cpo
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   171
by intro_classes (rule cpo_up)
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   172
25789
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   173
lemma up_directed_lemma:
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   174
  "directed (S::'a::dcpo u set) \<Longrightarrow>
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   175
    (directed (Iup -` S) \<and> S <<| Iup (lub (Iup -` S))) \<or>
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   176
    S = {Ibottom}"
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   177
apply (case_tac "\<exists>x. Iup x \<in> S")
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   178
apply (rule disjI1)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   179
apply (subgoal_tac "directed (Iup -` S)")
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   180
apply (rule conjI, assumption)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   181
apply (rule is_lubI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   182
apply (rule is_ubI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   183
apply (case_tac x, simp, simp)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   184
apply (erule is_ub_thelub', simp)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   185
apply (case_tac u)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   186
apply (erule exE)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   187
apply (drule (1) is_ubD)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   188
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   189
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   190
apply (erule is_lub_thelub')
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   191
apply (rule is_ubI, simp)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   192
apply (drule (1) is_ubD, simp)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   193
apply (rule directedI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   194
apply (erule exE)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   195
apply (rule exI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   196
apply (erule vimageI2)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   197
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   198
apply (drule_tac x="Iup x" and y="Iup y" in directedD2, assumption+)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   199
apply (erule bexE, rename_tac z)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   200
apply (case_tac z)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   201
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   202
apply (rule_tac x=a in bexI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   203
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   204
apply simp
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   205
apply (rule disjI2)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   206
apply (simp, safe)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   207
apply (case_tac x, simp, simp)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   208
apply (drule directedD1)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   209
apply (clarify, rename_tac x)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   210
apply (case_tac x, simp, simp)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   211
done
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   212
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   213
lemma dcpo_up: "directed (S::'a::dcpo u set) \<Longrightarrow> \<exists>x. S <<| x"
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   214
apply (frule up_directed_lemma, safe)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   215
apply (erule exI)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   216
apply (rule exI, rule is_lub_singleton)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   217
done
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   218
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   219
instance u :: (dcpo) dcpo
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   220
by intro_classes (rule dcpo_up)
c0506ac5b6b4 add dcpo instance proof
huffman
parents: 25788
diff changeset
   221
18290
5fc309770840 add xsymbol syntax for u type constructor
huffman
parents: 18078
diff changeset
   222
subsection {* Lifted cpo is pointed *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   223
17585
f12d7ac88eb4 cleaned up
huffman
parents: 16933
diff changeset
   224
lemma least_up: "\<exists>x::'a u. \<forall>y. x \<sqsubseteq> y"
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   225
apply (rule_tac x = "Ibottom" in exI)
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   226
apply (rule minimal_up [THEN allI])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   227
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   228
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   229
instance u :: (cpo) pcpo
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   230
by intro_classes (rule least_up)
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   231
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   232
text {* for compatibility with old HOLCF-Version *}
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   233
lemma inst_up_pcpo: "\<bottom> = Ibottom"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   234
by (rule minimal_up [THEN UU_I, symmetric])
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   235
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   236
subsection {* Continuity of @{term Iup} and @{term Ifup} *}
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   237
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   238
text {* continuity for @{term Iup} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   239
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   240
lemma cont_Iup: "cont Iup"
16215
7ff978ca1920 changed to use new contlubI, etc.
huffman
parents: 16070
diff changeset
   241
apply (rule contI)
15599
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   242
apply (rule is_lub_Iup)
10cedbd5289e instance u :: (cpo) pcpo -- argument type no longer needs to be pointed
huffman
parents: 15593
diff changeset
   243
apply (erule thelubE [OF _ refl])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   244
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   245
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   246
text {* continuity for @{term Ifup} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   247
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   248
lemma cont_Ifup1: "cont (\<lambda>f. Ifup f x)"
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   249
by (induct x, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   250
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   251
lemma monofun_Ifup2: "monofun (\<lambda>x. Ifup f x)"
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   252
apply (rule monofunI)
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   253
apply (case_tac x, simp)
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   254
apply (case_tac y, simp)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   255
apply (simp add: monofun_cfun_arg)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   256
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   257
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   258
lemma cont_Ifup2: "cont (\<lambda>x. Ifup f x)"
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   259
apply (rule contI)
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   260
apply (frule up_chain_lemma, safe)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   261
apply (rule_tac j="j" in is_lub_range_shift [THEN iffD1, standard])
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   262
apply (erule monofun_Ifup2 [THEN ch2ch_monofun])
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   263
apply (simp add: cont_cfun_arg)
18078
20e5a6440790 change syntax for LAM to use expressions as patterns; define LAM pattern syntax for cpair, spair, sinl, sinr, up
huffman
parents: 17838
diff changeset
   264
apply (simp add: lub_const)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   265
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   266
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   267
subsection {* Continuous versions of constants *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   268
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   269
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   270
  up  :: "'a \<rightarrow> 'a u" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   271
  "up = (\<Lambda> x. Iup x)"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   272
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   273
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   274
  fup :: "('a \<rightarrow> 'b::pcpo) \<rightarrow> 'a u \<rightarrow> 'b" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   275
  "fup = (\<Lambda> f p. Ifup f p)"
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   276
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   277
translations
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   278
  "case l of CONST up\<cdot>x \<Rightarrow> t" == "CONST fup\<cdot>(\<Lambda> x. t)\<cdot>l"
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19105
diff changeset
   279
  "\<Lambda>(CONST up\<cdot>x). t" == "CONST fup\<cdot>(\<Lambda> x. t)"
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   280
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   281
text {* continuous versions of lemmas for @{typ "('a)u"} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   282
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   283
lemma Exh_Up: "z = \<bottom> \<or> (\<exists>x. z = up\<cdot>x)"
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   284
apply (induct z)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   285
apply (simp add: inst_up_pcpo)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   286
apply (simp add: up_def cont_Iup)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   287
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   288
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   289
lemma up_eq [simp]: "(up\<cdot>x = up\<cdot>y) = (x = y)"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   290
by (simp add: up_def cont_Iup)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   291
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   292
lemma up_inject: "up\<cdot>x = up\<cdot>y \<Longrightarrow> x = y"
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   293
by simp
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   294
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   295
lemma up_defined [simp]: "up\<cdot>x \<noteq> \<bottom>"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   296
by (simp add: up_def cont_Iup inst_up_pcpo)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   297
25785
dbe118fe3180 remove not_up_less_UU [simp]
huffman
parents: 25131
diff changeset
   298
lemma not_up_less_UU: "\<not> up\<cdot>x \<sqsubseteq> \<bottom>"
dbe118fe3180 remove not_up_less_UU [simp]
huffman
parents: 25131
diff changeset
   299
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   300
16326
50a613925c4e make up_eq and up_less into simp rules
huffman
parents: 16319
diff changeset
   301
lemma up_less [simp]: "(up\<cdot>x \<sqsubseteq> up\<cdot>y) = (x \<sqsubseteq> y)"
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   302
by (simp add: up_def cont_Iup)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   303
25788
30cbe0764599 declare upE as cases rule; add new rule up_induct
huffman
parents: 25787
diff changeset
   304
lemma upE [cases type: u]: "\<lbrakk>p = \<bottom> \<Longrightarrow> Q; \<And>x. p = up\<cdot>x \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
30cbe0764599 declare upE as cases rule; add new rule up_induct
huffman
parents: 25787
diff changeset
   305
apply (cases p)
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   306
apply (simp add: inst_up_pcpo)
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   307
apply (simp add: up_def cont_Iup)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   308
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   309
25788
30cbe0764599 declare upE as cases rule; add new rule up_induct
huffman
parents: 25787
diff changeset
   310
lemma up_induct [induct type: u]: "\<lbrakk>P \<bottom>; \<And>x. P (up\<cdot>x)\<rbrakk> \<Longrightarrow> P x"
30cbe0764599 declare upE as cases rule; add new rule up_induct
huffman
parents: 25787
diff changeset
   311
by (cases x, simp_all)
30cbe0764599 declare upE as cases rule; add new rule up_induct
huffman
parents: 25787
diff changeset
   312
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   313
lemma up_chain_cases:
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   314
  "chain Y \<Longrightarrow>
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   315
  (\<exists>A. chain A \<and> (\<Squnion>i. Y i) = up\<cdot>(\<Squnion>i. A i) \<and>
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   316
  (\<exists>j. \<forall>i. Y (i + j) = up\<cdot>(A i))) \<or> Y = (\<lambda>i. \<bottom>)"
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   317
by (simp add: inst_up_pcpo up_def cont_Iup up_chain_lemma)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   318
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   319
lemma compact_up [simp]: "compact x \<Longrightarrow> compact (up\<cdot>x)"
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   320
apply (unfold compact_def)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   321
apply (rule admI)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   322
apply (drule up_chain_cases)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   323
apply (elim disjE exE conjE)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   324
apply simp
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   325
apply (erule (1) admD)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   326
apply (rule allI, drule_tac x="i + j" in spec)
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   327
apply simp
18078
20e5a6440790 change syntax for LAM to use expressions as patterns; define LAM pattern syntax for cpair, spair, sinl, sinr, up
huffman
parents: 17838
diff changeset
   328
apply simp
17838
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   329
done
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   330
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   331
text {* properties of fup *}
3032e90c4975 added compactness theorems
huffman
parents: 17585
diff changeset
   332
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   333
lemma fup1 [simp]: "fup\<cdot>f\<cdot>\<bottom> = \<bottom>"
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   334
by (simp add: fup_def cont_Ifup1 cont_Ifup2 inst_up_pcpo)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   335
16319
1ff2965cc2e7 major cleanup: rewrote cpo proofs, removed obsolete lemmas, renamed some lemmas
huffman
parents: 16215
diff changeset
   336
lemma fup2 [simp]: "fup\<cdot>f\<cdot>(up\<cdot>x) = f\<cdot>x"
16753
fb6801c926d2 define 'a u with datatype package;
huffman
parents: 16553
diff changeset
   337
by (simp add: up_def fup_def cont_Iup cont_Ifup1 cont_Ifup2)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   338
16553
aa36d41e4263 add csplit3, ssplit3, fup3 as simp rules
huffman
parents: 16326
diff changeset
   339
lemma fup3 [simp]: "fup\<cdot>up\<cdot>x = x"
25788
30cbe0764599 declare upE as cases rule; add new rule up_induct
huffman
parents: 25787
diff changeset
   340
by (cases x, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   341
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   342
end