src/HOLCF/Domain.thy
author wenzelm
Fri, 15 Aug 2008 16:08:08 +0200
changeset 27893 7c97cf70d663
parent 25806 2b976fcee6e5
child 29138 661a8db7e647
permissions -rw-r--r--
added README;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/Domain.thy
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     2
    ID:         $Id$
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     3
    Author:     Brian Huffman
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     4
*)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     5
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     6
header {* Domain package *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     7
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     8
theory Domain
16230
9c9d9ba41bac fix imports
huffman
parents: 16223
diff changeset
     9
imports Ssum Sprod Up One Tr Fixrec
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    10
begin
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    11
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    12
defaultsort pcpo
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    13
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    14
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    15
subsection {* Continuous isomorphisms *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    16
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    17
text {* A locale for continuous isomorphisms *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    18
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    19
locale iso =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    20
  fixes abs :: "'a \<rightarrow> 'b"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    21
  fixes rep :: "'b \<rightarrow> 'a"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    22
  assumes abs_iso [simp]: "rep\<cdot>(abs\<cdot>x) = x"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    23
  assumes rep_iso [simp]: "abs\<cdot>(rep\<cdot>y) = y"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    24
begin
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    25
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    26
lemma swap: "iso rep abs"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    27
  by (rule iso.intro [OF rep_iso abs_iso])
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    28
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    29
lemma abs_less: "(abs\<cdot>x \<sqsubseteq> abs\<cdot>y) = (x \<sqsubseteq> y)"
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    30
proof
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    31
  assume "abs\<cdot>x \<sqsubseteq> abs\<cdot>y"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    32
  then have "rep\<cdot>(abs\<cdot>x) \<sqsubseteq> rep\<cdot>(abs\<cdot>y)" by (rule monofun_cfun_arg)
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    33
  then show "x \<sqsubseteq> y" by simp
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    34
next
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    35
  assume "x \<sqsubseteq> y"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    36
  then show "abs\<cdot>x \<sqsubseteq> abs\<cdot>y" by (rule monofun_cfun_arg)
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    37
qed
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    38
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    39
lemma rep_less: "(rep\<cdot>x \<sqsubseteq> rep\<cdot>y) = (x \<sqsubseteq> y)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    40
  by (rule iso.abs_less [OF swap])
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    41
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    42
lemma abs_eq: "(abs\<cdot>x = abs\<cdot>y) = (x = y)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    43
  by (simp add: po_eq_conv abs_less)
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    44
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    45
lemma rep_eq: "(rep\<cdot>x = rep\<cdot>y) = (x = y)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    46
  by (rule iso.abs_eq [OF swap])
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    47
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    48
lemma abs_strict: "abs\<cdot>\<bottom> = \<bottom>"
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    49
proof -
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    50
  have "\<bottom> \<sqsubseteq> rep\<cdot>\<bottom>" ..
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    51
  then have "abs\<cdot>\<bottom> \<sqsubseteq> abs\<cdot>(rep\<cdot>\<bottom>)" by (rule monofun_cfun_arg)
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    52
  then have "abs\<cdot>\<bottom> \<sqsubseteq> \<bottom>" by simp
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    53
  then show ?thesis by (rule UU_I)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    54
qed
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    55
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    56
lemma rep_strict: "rep\<cdot>\<bottom> = \<bottom>"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    57
  by (rule iso.abs_strict [OF swap])
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    58
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    59
lemma abs_defin': "abs\<cdot>x = \<bottom> \<Longrightarrow> x = \<bottom>"
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    60
proof -
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    61
  have "x = rep\<cdot>(abs\<cdot>x)" by simp
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    62
  also assume "abs\<cdot>x = \<bottom>"
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    63
  also note rep_strict
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    64
  finally show "x = \<bottom>" .
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    65
qed
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    66
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    67
lemma rep_defin': "rep\<cdot>z = \<bottom> \<Longrightarrow> z = \<bottom>"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    68
  by (rule iso.abs_defin' [OF swap])
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    69
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    70
lemma abs_defined: "z \<noteq> \<bottom> \<Longrightarrow> abs\<cdot>z \<noteq> \<bottom>"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    71
  by (erule contrapos_nn, erule abs_defin')
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    72
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    73
lemma rep_defined: "z \<noteq> \<bottom> \<Longrightarrow> rep\<cdot>z \<noteq> \<bottom>"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    74
  by (rule iso.abs_defined [OF iso.swap]) (rule iso_axioms)
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    75
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    76
lemma abs_defined_iff: "(abs\<cdot>x = \<bottom>) = (x = \<bottom>)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    77
  by (auto elim: abs_defin' intro: abs_strict)
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    78
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    79
lemma rep_defined_iff: "(rep\<cdot>x = \<bottom>) = (x = \<bottom>)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    80
  by (rule iso.abs_defined_iff [OF iso.swap]) (rule iso_axioms)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    81
17836
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    82
lemma (in iso) compact_abs_rev: "compact (abs\<cdot>x) \<Longrightarrow> compact x"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    83
proof (unfold compact_def)
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    84
  assume "adm (\<lambda>y. \<not> abs\<cdot>x \<sqsubseteq> y)"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    85
  with cont_Rep_CFun2
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    86
  have "adm (\<lambda>y. \<not> abs\<cdot>x \<sqsubseteq> abs\<cdot>y)" by (rule adm_subst)
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    87
  then show "adm (\<lambda>y. \<not> x \<sqsubseteq> y)" using abs_less by simp
17836
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    88
qed
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    89
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    90
lemma compact_rep_rev: "compact (rep\<cdot>x) \<Longrightarrow> compact x"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    91
  by (rule iso.compact_abs_rev [OF iso.swap]) (rule iso_axioms)
17836
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    92
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    93
lemma compact_abs: "compact x \<Longrightarrow> compact (abs\<cdot>x)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    94
  by (rule compact_rep_rev) simp
17836
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    95
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    96
lemma compact_rep: "compact x \<Longrightarrow> compact (rep\<cdot>x)"
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    97
  by (rule iso.compact_abs [OF iso.swap]) (rule iso_axioms)
17836
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    98
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
    99
lemma iso_swap: "(x = abs\<cdot>y) = (rep\<cdot>x = y)"
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   100
proof
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   101
  assume "x = abs\<cdot>y"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   102
  then have "rep\<cdot>x = rep\<cdot>(abs\<cdot>y)" by simp
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   103
  then show "rep\<cdot>x = y" by simp
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   104
next
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   105
  assume "rep\<cdot>x = y"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   106
  then have "abs\<cdot>(rep\<cdot>x) = abs\<cdot>y" by simp
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   107
  then show "x = abs\<cdot>y" by simp
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   108
qed
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   109
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   110
end
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   111
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   112
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   113
subsection {* Casedist *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   114
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   115
lemma ex_one_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   116
  "(\<exists>x. P x \<and> x \<noteq> \<bottom>) = P ONE"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   117
 apply safe
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   118
  apply (rule_tac p=x in oneE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   119
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   120
  apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   121
 apply force
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   122
 done
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   123
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   124
lemma ex_up_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   125
  "(\<exists>x. P x \<and> x \<noteq> \<bottom>) = (\<exists>x. P (up\<cdot>x))"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   126
 apply safe
16754
1b979f8b7e8e renamed upE1 to upE
huffman
parents: 16320
diff changeset
   127
  apply (rule_tac p=x in upE)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   128
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   129
  apply fast
16320
89917621becf fixed renamed lemma
huffman
parents: 16230
diff changeset
   130
 apply (force intro!: up_defined)
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   131
 done
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   132
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   133
lemma ex_sprod_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   134
 "(\<exists>y. P y \<and> y \<noteq> \<bottom>) =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   135
  (\<exists>x y. (P (:x, y:) \<and> x \<noteq> \<bottom>) \<and> y \<noteq> \<bottom>)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   136
 apply safe
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   137
  apply (rule_tac p=y in sprodE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   138
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   139
  apply fast
16217
96f0c8546265 renamed defined lemmas
huffman
parents: 16121
diff changeset
   140
 apply (force intro!: spair_defined)
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   141
 done
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   142
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   143
lemma ex_sprod_up_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   144
 "(\<exists>y. P y \<and> y \<noteq> \<bottom>) =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   145
  (\<exists>x y. P (:up\<cdot>x, y:) \<and> y \<noteq> \<bottom>)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   146
 apply safe
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   147
  apply (rule_tac p=y in sprodE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   148
   apply simp
16754
1b979f8b7e8e renamed upE1 to upE
huffman
parents: 16320
diff changeset
   149
  apply (rule_tac p=x in upE)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   150
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   151
  apply fast
16217
96f0c8546265 renamed defined lemmas
huffman
parents: 16121
diff changeset
   152
 apply (force intro!: spair_defined)
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   153
 done
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   154
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   155
lemma ex_ssum_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   156
 "(\<exists>x. P x \<and> x \<noteq> \<bottom>) =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   157
 ((\<exists>x. P (sinl\<cdot>x) \<and> x \<noteq> \<bottom>) \<or>
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   158
  (\<exists>x. P (sinr\<cdot>x) \<and> x \<noteq> \<bottom>))"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   159
 apply (rule iffI)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   160
  apply (erule exE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   161
  apply (erule conjE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   162
  apply (rule_tac p=x in ssumE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   163
    apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   164
   apply (rule disjI1, fast)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   165
  apply (rule disjI2, fast)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   166
 apply (erule disjE)
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
   167
  apply force
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
   168
 apply force
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   169
 done
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   170
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   171
lemma exh_start: "p = \<bottom> \<or> (\<exists>x. p = x \<and> x \<noteq> \<bottom>)"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   172
  by auto
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   173
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   174
lemmas ex_defined_iffs =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   175
   ex_ssum_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   176
   ex_sprod_up_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   177
   ex_sprod_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   178
   ex_up_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   179
   ex_one_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   180
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   181
text {* Rules for turning exh into casedist *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   182
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   183
lemma exh_casedist0: "\<lbrakk>R; R \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P" (* like make_elim *)
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   184
  by auto
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   185
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   186
lemma exh_casedist1: "((P \<or> Q \<Longrightarrow> R) \<Longrightarrow> S) \<equiv> (\<lbrakk>P \<Longrightarrow> R; Q \<Longrightarrow> R\<rbrakk> \<Longrightarrow> S)"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   187
  by rule auto
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   188
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   189
lemma exh_casedist2: "(\<exists>x. P x \<Longrightarrow> Q) \<equiv> (\<And>x. P x \<Longrightarrow> Q)"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   190
  by rule auto
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   191
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   192
lemma exh_casedist3: "(P \<and> Q \<Longrightarrow> R) \<equiv> (P \<Longrightarrow> Q \<Longrightarrow> R)"
23376
53317a1ec8b2 tuned proofs: avoid implicit prems;
wenzelm
parents: 23152
diff changeset
   193
  by rule auto
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   194
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   195
lemmas exh_casedists = exh_casedist1 exh_casedist2 exh_casedist3
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   196
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   197
end