src/HOLCF/Pcpo.thy
author huffman
Thu, 07 Jul 2005 18:22:01 +0200
changeset 16739 9ffd706ae402
parent 16627 a2844e212da4
child 17813 03133f6606a1
permissions -rw-r--r--
add UU_reorient_simproc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2640
ee4dfce170a0 Changes of HOLCF from Oscar Slotosch:
slotosch
parents: 2394
diff changeset
     1
(*  Title:      HOLCF/Pcpo.thy
ee4dfce170a0 Changes of HOLCF from Oscar Slotosch:
slotosch
parents: 2394
diff changeset
     2
    ID:         $Id$
ee4dfce170a0 Changes of HOLCF from Oscar Slotosch:
slotosch
parents: 2394
diff changeset
     3
    Author:     Franz Regensburger
ee4dfce170a0 Changes of HOLCF from Oscar Slotosch:
slotosch
parents: 2394
diff changeset
     4
16070
4a83dd540b88 removed LICENCE note -- everything is subject to Isabelle licence as
wenzelm
parents: 15930
diff changeset
     5
Introduction of the classes cpo and pcpo.
2640
ee4dfce170a0 Changes of HOLCF from Oscar Slotosch:
slotosch
parents: 2394
diff changeset
     6
*)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents: 15563
diff changeset
     7
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents: 15563
diff changeset
     8
header {* Classes cpo and pcpo *}
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents: 15563
diff changeset
     9
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    10
theory Pcpo
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    11
imports Porder
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    12
begin
243
c22b85994e17 Franz Regensburger's Higher-Order Logic of Computable Functions embedding LCF
nipkow
parents:
diff changeset
    13
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    14
subsection {* Complete partial orders *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    15
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    16
text {* The class cpo of chain complete partial orders *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    17
2640
ee4dfce170a0 Changes of HOLCF from Oscar Slotosch:
slotosch
parents: 2394
diff changeset
    18
axclass cpo < po
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    19
        -- {* class axiom: *}
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    20
  cpo:   "chain S \<Longrightarrow> \<exists>x. range S <<| x" 
2394
91d8abf108be adaptions for symbol font
oheimb
parents: 2291
diff changeset
    21
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    22
text {* in cpo's everthing equal to THE lub has lub properties for every chain *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    23
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    24
lemma thelubE: "\<lbrakk>chain S; (\<Squnion>i. S i) = (l::'a::cpo)\<rbrakk> \<Longrightarrow> range S <<| l"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    25
by (blast dest: cpo intro: lubI)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    26
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    27
text {* Properties of the lub *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    28
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    29
lemma is_ub_thelub: "chain (S::nat \<Rightarrow> 'a::cpo) \<Longrightarrow> S x \<sqsubseteq> (\<Squnion>i. S i)"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    30
by (blast dest: cpo intro: lubI [THEN is_ub_lub])
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    31
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    32
lemma is_lub_thelub:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    33
  "\<lbrakk>chain (S::nat \<Rightarrow> 'a::cpo); range S <| x\<rbrakk> \<Longrightarrow> (\<Squnion>i. S i) \<sqsubseteq> x"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    34
by (blast dest: cpo intro: lubI [THEN is_lub_lub])
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    35
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    36
lemma lub_range_mono:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    37
  "\<lbrakk>range X \<subseteq> range Y; chain Y; chain (X::nat \<Rightarrow> 'a::cpo)\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    38
    \<Longrightarrow> (\<Squnion>i. X i) \<sqsubseteq> (\<Squnion>i. Y i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    39
apply (erule is_lub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    40
apply (rule ub_rangeI)
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    41
apply (subgoal_tac "\<exists>j. X i = Y j")
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    42
apply  clarsimp
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    43
apply  (erule is_ub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    44
apply auto
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    45
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    46
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    47
lemma lub_range_shift:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    48
  "chain (Y::nat \<Rightarrow> 'a::cpo) \<Longrightarrow> (\<Squnion>i. Y (i + j)) = (\<Squnion>i. Y i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    49
apply (rule antisym_less)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    50
apply (rule lub_range_mono)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    51
apply    fast
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    52
apply   assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    53
apply (erule chain_shift)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    54
apply (rule is_lub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    55
apply assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    56
apply (rule ub_rangeI)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    57
apply (rule trans_less)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    58
apply (rule_tac [2] is_ub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    59
apply (erule_tac [2] chain_shift)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    60
apply (erule chain_mono3)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    61
apply (rule le_add1)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    62
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    63
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    64
lemma maxinch_is_thelub:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    65
  "chain Y \<Longrightarrow> max_in_chain i Y = ((\<Squnion>i. Y i) = ((Y i)::'a::cpo))"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    66
apply (rule iffI)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    67
apply (fast intro!: thelubI lub_finch1)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    68
apply (unfold max_in_chain_def)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    69
apply (safe intro!: antisym_less)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    70
apply (fast elim!: chain_mono3)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    71
apply (drule sym)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    72
apply (force elim!: is_ub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    73
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    74
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    75
text {* the @{text "\<sqsubseteq>"} relation between two chains is preserved by their lubs *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    76
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    77
lemma lub_mono:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    78
  "\<lbrakk>chain (X::nat \<Rightarrow> 'a::cpo); chain Y; \<forall>k. X k \<sqsubseteq> Y k\<rbrakk> 
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    79
    \<Longrightarrow> (\<Squnion>i. X i) \<sqsubseteq> (\<Squnion>i. Y i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    80
apply (erule is_lub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    81
apply (rule ub_rangeI)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    82
apply (rule trans_less)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    83
apply (erule spec)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    84
apply (erule is_ub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    85
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    86
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    87
text {* the = relation between two chains is preserved by their lubs *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    88
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    89
lemma lub_equal:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    90
  "\<lbrakk>chain (X::nat \<Rightarrow> 'a::cpo); chain Y; \<forall>k. X k = Y k\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    91
    \<Longrightarrow> (\<Squnion>i. X i) = (\<Squnion>i. Y i)"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    92
by (simp only: expand_fun_eq [symmetric])
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    93
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    94
text {* more results about mono and = of lubs of chains *}
3326
930c9bed5a09 Moved the classes flat chfin from Fix to Pcpo.
slotosch
parents: 2640
diff changeset
    95
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    96
lemma lub_mono2:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    97
  "\<lbrakk>\<exists>j::nat. \<forall>i>j. X i = Y i; chain (X::nat=>'a::cpo); chain Y\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
    98
    \<Longrightarrow> (\<Squnion>i. X i) \<sqsubseteq> (\<Squnion>i. Y i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
    99
apply (erule exE)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   100
apply (rule is_lub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   101
apply assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   102
apply (rule ub_rangeI)
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   103
apply (case_tac "j < i")
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   104
apply (rule_tac s="Y i" and t="X i" in subst)
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   105
apply simp
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   106
apply (erule is_ub_thelub)
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   107
apply (rule_tac y = "X (Suc j)" in trans_less)
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   108
apply (erule chain_mono)
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   109
apply (erule not_less_eq [THEN iffD1])
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   110
apply (rule_tac s="Y (Suc j)" and t="X (Suc j)" in subst)
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   111
apply simp
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   112
apply (erule is_ub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   113
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   114
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   115
lemma lub_equal2:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   116
  "\<lbrakk>\<exists>j. \<forall>i>j. X i = Y i; chain (X::nat \<Rightarrow> 'a::cpo); chain Y\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   117
    \<Longrightarrow> (\<Squnion>i. X i) = (\<Squnion>i. Y i)"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   118
by (blast intro: antisym_less lub_mono2 sym)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   119
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   120
lemma lub_mono3:
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   121
  "\<lbrakk>chain (Y::nat \<Rightarrow> 'a::cpo); chain X; \<forall>i. \<exists>j. Y i \<sqsubseteq> X j\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   122
    \<Longrightarrow> (\<Squnion>i. Y i) \<sqsubseteq> (\<Squnion>i. X i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   123
apply (rule is_lub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   124
apply assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   125
apply (rule ub_rangeI)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   126
apply (erule allE)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   127
apply (erule exE)
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   128
apply (erule trans_less)
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   129
apply (erule is_ub_thelub)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   130
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   131
16203
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   132
lemma ch2ch_lub:
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   133
  fixes Y :: "nat \<Rightarrow> nat \<Rightarrow> 'a::cpo"
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   134
  assumes 1: "\<And>j. chain (\<lambda>i. Y i j)"
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   135
  assumes 2: "\<And>i. chain (\<lambda>j. Y i j)"
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   136
  shows "chain (\<lambda>i. \<Squnion>j. Y i j)"
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   137
apply (rule chainI)
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   138
apply (rule lub_mono [rule_format, OF 2 2])
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   139
apply (rule chainE [OF 1])
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   140
done
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   141
16201
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   142
lemma diag_lub:
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   143
  fixes Y :: "nat \<Rightarrow> nat \<Rightarrow> 'a::cpo"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   144
  assumes 1: "\<And>j. chain (\<lambda>i. Y i j)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   145
  assumes 2: "\<And>i. chain (\<lambda>j. Y i j)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   146
  shows "(\<Squnion>i. \<Squnion>j. Y i j) = (\<Squnion>i. Y i i)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   147
proof (rule antisym_less)
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   148
  have 3: "chain (\<lambda>i. Y i i)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   149
    apply (rule chainI)
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   150
    apply (rule trans_less)
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   151
    apply (rule chainE [OF 1])
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   152
    apply (rule chainE [OF 2])
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   153
    done
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   154
  have 4: "chain (\<lambda>i. \<Squnion>j. Y i j)"
16203
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   155
    by (rule ch2ch_lub [OF 1 2])
16201
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   156
  show "(\<Squnion>i. \<Squnion>j. Y i j) \<sqsubseteq> (\<Squnion>i. Y i i)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   157
    apply (rule is_lub_thelub [OF 4])
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   158
    apply (rule ub_rangeI)
16203
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   159
    apply (rule lub_mono3 [rule_format, OF 2 3])
16201
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   160
    apply (rule exI)
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   161
    apply (rule trans_less)
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   162
    apply (rule chain_mono3 [OF 1 le_maxI1])
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   163
    apply (rule chain_mono3 [OF 2 le_maxI2])
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   164
    done
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   165
  show "(\<Squnion>i. Y i i) \<sqsubseteq> (\<Squnion>i. \<Squnion>j. Y i j)"
16203
b3268fe39838 added theorem ch2ch_lub
huffman
parents: 16201
diff changeset
   166
    apply (rule lub_mono [rule_format, OF 3 4])
16201
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   167
    apply (rule is_ub_thelub [OF 2])
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   168
    done
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   169
qed
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   170
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   171
lemma ex_lub:
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   172
  fixes Y :: "nat \<Rightarrow> nat \<Rightarrow> 'a::cpo"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   173
  assumes 1: "\<And>j. chain (\<lambda>i. Y i j)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   174
  assumes 2: "\<And>i. chain (\<lambda>j. Y i j)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   175
  shows "(\<Squnion>i. \<Squnion>j. Y i j) = (\<Squnion>j. \<Squnion>i. Y i j)"
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   176
by (simp add: diag_lub 1 2)
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   177
7bb51c8196cb added theorems diag_lub and ex_lub
huffman
parents: 16070
diff changeset
   178
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   179
subsection {* Pointed cpos *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   180
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   181
text {* The class pcpo of pointed cpos *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   182
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   183
axclass pcpo < cpo
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   184
  least: "\<exists>x. \<forall>y. x \<sqsubseteq> y"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   185
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   186
constdefs
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   187
  UU :: "'a::pcpo"
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   188
  "UU \<equiv> THE x. ALL y. x \<sqsubseteq> y"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   189
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   190
syntax (xsymbols)
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   191
  UU :: "'a::pcpo" ("\<bottom>")
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   192
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   193
text {* derive the old rule minimal *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   194
 
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   195
lemma UU_least: "\<forall>z. \<bottom> \<sqsubseteq> z"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   196
apply (unfold UU_def)
15930
145651bc64a8 Replaced all unnecessary uses of SOME with THE or LEAST
huffman
parents: 15640
diff changeset
   197
apply (rule theI')
145651bc64a8 Replaced all unnecessary uses of SOME with THE or LEAST
huffman
parents: 15640
diff changeset
   198
apply (rule ex_ex1I)
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   199
apply (rule least)
15930
145651bc64a8 Replaced all unnecessary uses of SOME with THE or LEAST
huffman
parents: 15640
diff changeset
   200
apply (blast intro: antisym_less)
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   201
done
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   202
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   203
lemma minimal [iff]: "\<bottom> \<sqsubseteq> x"
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   204
by (rule UU_least [THEN spec])
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   205
16739
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   206
lemma UU_reorient: "(\<bottom> = x) = (x = \<bottom>)"
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   207
by auto
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   208
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   209
ML_setup {*
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   210
local
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   211
  val meta_UU_reorient = thm "UU_reorient" RS eq_reflection;
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   212
  fun is_UU (Const ("Pcpo.UU",_)) = true
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   213
    | is_UU _ = false;
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   214
  fun reorient_proc sg _ (_ $ t $ u) =
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   215
    if is_UU u then NONE else SOME meta_UU_reorient;
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   216
in
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   217
  val UU_reorient_simproc = 
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   218
    Simplifier.simproc (the_context ())
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   219
      "UU_reorient_simproc" ["UU=x"] reorient_proc
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   220
end;
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   221
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   222
Addsimprocs [UU_reorient_simproc];
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   223
*}
9ffd706ae402 add UU_reorient_simproc
huffman
parents: 16627
diff changeset
   224
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   225
text {* useful lemmas about @{term \<bottom>} *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   226
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   227
lemma eq_UU_iff: "(x = \<bottom>) = (x \<sqsubseteq> \<bottom>)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   228
apply (rule iffI)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   229
apply (erule ssubst)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   230
apply (rule refl_less)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   231
apply (rule antisym_less)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   232
apply assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   233
apply (rule minimal)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   234
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   235
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   236
lemma UU_I: "x \<sqsubseteq> \<bottom> \<Longrightarrow> x = \<bottom>"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   237
by (subst eq_UU_iff)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   238
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   239
lemma not_less2not_eq: "\<not> (x::'a::po) \<sqsubseteq> y \<Longrightarrow> x \<noteq> y"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   240
by auto
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   241
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   242
lemma chain_UU_I: "\<lbrakk>chain Y; (\<Squnion>i. Y i) = \<bottom>\<rbrakk> \<Longrightarrow> \<forall>i. Y i = \<bottom>"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   243
apply (rule allI)
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   244
apply (rule UU_I)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   245
apply (erule subst)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   246
apply (erule is_ub_thelub)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   247
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   248
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   249
lemma chain_UU_I_inverse: "\<forall>i::nat. Y i = \<bottom> \<Longrightarrow> (\<Squnion>i. Y i) = \<bottom>"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   250
apply (rule lub_chain_maxelem)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   251
apply (erule spec)
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   252
apply simp
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   253
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   254
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   255
lemma chain_UU_I_inverse2: "(\<Squnion>i. Y i) \<noteq> \<bottom> \<Longrightarrow> \<exists>i::nat. Y i \<noteq> \<bottom>"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   256
by (blast intro: chain_UU_I_inverse)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   257
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   258
lemma notUU_I: "\<lbrakk>x \<sqsubseteq> y; x \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> y \<noteq> \<bottom>"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   259
by (blast intro: UU_I)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   260
16627
a2844e212da4 cleaned up
huffman
parents: 16626
diff changeset
   261
lemma chain_mono2: "\<lbrakk>\<exists>j. Y j \<noteq> \<bottom>; chain Y\<rbrakk> \<Longrightarrow> \<exists>j. \<forall>i>j. Y i \<noteq> \<bottom>"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   262
by (blast dest: notUU_I chain_mono)
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   263
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   264
subsection {* Chain-finite and flat cpos *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   265
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   266
text {* further useful classes for HOLCF domains *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   267
15640
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   268
axclass chfin < po
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   269
  chfin: "\<forall>Y. chain Y \<longrightarrow> (\<exists>n. max_in_chain n Y)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   270
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   271
axclass flat < pcpo
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   272
  ax_flat: "\<forall>x y. x \<sqsubseteq> y \<longrightarrow> (x = \<bottom>) \<or> (x = y)"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   273
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   274
text {* some properties for chfin and flat *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   275
15640
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   276
text {* chfin types are cpo *}
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   277
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   278
lemma chfin_imp_cpo:
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   279
  "chain (S::nat \<Rightarrow> 'a::chfin) \<Longrightarrow> \<exists>x. range S <<| x"
15640
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   280
apply (frule chfin [rule_format])
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   281
apply (blast intro: lub_finch1)
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   282
done
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   283
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   284
instance chfin < cpo
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   285
by intro_classes (rule chfin_imp_cpo)
2d1d6ea579a1 chfin now a subclass of po, proved instance chfin < cpo
huffman
parents: 15588
diff changeset
   286
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   287
text {* flat types are chfin *}
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   288
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   289
lemma flat_imp_chfin: 
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   290
     "\<forall>Y::nat \<Rightarrow> 'a::flat. chain Y \<longrightarrow> (\<exists>n. max_in_chain n Y)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   291
apply (unfold max_in_chain_def)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   292
apply clarify
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   293
apply (case_tac "\<forall>i. Y i = \<bottom>")
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   294
apply simp
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   295
apply simp
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   296
apply (erule exE)
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   297
apply (rule_tac x="i" in exI)
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   298
apply clarify
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   299
apply (erule le_imp_less_or_eq [THEN disjE])
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   300
apply safe
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   301
apply (blast dest: chain_mono ax_flat [rule_format])
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   302
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   303
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   304
instance flat < chfin
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   305
by intro_classes (rule flat_imp_chfin)
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   306
16627
a2844e212da4 cleaned up
huffman
parents: 16626
diff changeset
   307
text {* flat subclass of chfin; @{text adm_flat} not needed *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   308
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   309
lemma flat_eq: "(a::'a::flat) \<noteq> \<bottom> \<Longrightarrow> a \<sqsubseteq> b = (a = b)"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   310
by (safe dest!: ax_flat [rule_format])
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   311
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   312
lemma chfin2finch: "chain (Y::nat \<Rightarrow> 'a::chfin) \<Longrightarrow> finite_chain Y"
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   313
by (simp add: chfin finite_chain_def)
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   314
15588
14e3228f18cc arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   315
text {* lemmata for improved admissibility introdution rule *}
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   316
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   317
lemma infinite_chain_adm_lemma:
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   318
  "\<lbrakk>chain Y; \<forall>i. P (Y i);  
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   319
    \<And>Y. \<lbrakk>chain Y; \<forall>i. P (Y i); \<not> finite_chain Y\<rbrakk> \<Longrightarrow> P (\<Squnion>i. Y i)\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   320
      \<Longrightarrow> P (\<Squnion>i. Y i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   321
apply (case_tac "finite_chain Y")
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   322
prefer 2 apply fast
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   323
apply (unfold finite_chain_def)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   324
apply safe
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   325
apply (erule lub_finch1 [THEN thelubI, THEN ssubst])
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   326
apply assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   327
apply (erule spec)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   328
done
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   329
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   330
lemma increasing_chain_adm_lemma:
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   331
  "\<lbrakk>chain Y;  \<forall>i. P (Y i); \<And>Y. \<lbrakk>chain Y; \<forall>i. P (Y i);
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   332
    \<forall>i. \<exists>j>i. Y i \<noteq> Y j \<and> Y i \<sqsubseteq> Y j\<rbrakk> \<Longrightarrow> P (\<Squnion>i. Y i)\<rbrakk>
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   333
      \<Longrightarrow> P (\<Squnion>i. Y i)"
15563
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   334
apply (erule infinite_chain_adm_lemma)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   335
apply assumption
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   336
apply (erule thin_rl)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   337
apply (unfold finite_chain_def)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   338
apply (unfold max_in_chain_def)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   339
apply (fast dest: le_imp_less_or_eq elim: chain_mono)
9e125b675253 converted to new-style theory
huffman
parents: 14981
diff changeset
   340
done
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents: 15563
diff changeset
   341
16626
d28314d2dce3 cleaned up
huffman
parents: 16203
diff changeset
   342
end