src/HOL/Lattices.thy
author berghofe
Thu, 10 Jan 2008 19:10:37 +0100
changeset 25887 5dcc3c257922
parent 25510 38c15efe603b
child 26014 00c2c3525bef
permissions -rw-r--r--
Added nil_const and cons_const.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Lattices.thy
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     2
    ID:         $Id$
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     3
    Author:     Tobias Nipkow
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     4
*)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     5
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
     6
header {* Abstract lattices *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     7
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     8
theory Lattices
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     9
imports Orderings
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    10
begin
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    11
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    12
subsection{* Lattices *}
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    13
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    14
notation
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
    15
  less_eq  (infix "\<sqsubseteq>" 50) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
    16
  less  (infix "\<sqsubset>" 50)
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    17
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    18
class lower_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    19
  fixes inf :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<sqinter>" 70)
22737
haftmann
parents: 22548
diff changeset
    20
  assumes inf_le1 [simp]: "x \<sqinter> y \<sqsubseteq> x"
haftmann
parents: 22548
diff changeset
    21
  and inf_le2 [simp]: "x \<sqinter> y \<sqsubseteq> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    22
  and inf_greatest: "x \<sqsubseteq> y \<Longrightarrow> x \<sqsubseteq> z \<Longrightarrow> x \<sqsubseteq> y \<sqinter> z"
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    23
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    24
class upper_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    25
  fixes sup :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<squnion>" 65)
22737
haftmann
parents: 22548
diff changeset
    26
  assumes sup_ge1 [simp]: "x \<sqsubseteq> x \<squnion> y"
haftmann
parents: 22548
diff changeset
    27
  and sup_ge2 [simp]: "y \<sqsubseteq> x \<squnion> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    28
  and sup_least: "y \<sqsubseteq> x \<Longrightarrow> z \<sqsubseteq> x \<Longrightarrow> y \<squnion> z \<sqsubseteq> x"
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    29
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    30
class lattice = lower_semilattice + upper_semilattice
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    31
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
    32
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    33
subsubsection{* Intro and elim rules*}
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    34
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    35
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    36
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    37
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    38
lemma le_infI1[intro]:
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    39
  assumes "a \<sqsubseteq> x"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    40
  shows "a \<sqinter> b \<sqsubseteq> x"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    41
proof (rule order_trans)
25482
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    42
  from assms show "a \<sqsubseteq> x" .
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    43
  show "a \<sqinter> b \<sqsubseteq> a" by simp 
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    44
qed
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    45
lemmas (in -) [rule del] = le_infI1
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    46
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    47
lemma le_infI2[intro]:
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    48
  assumes "b \<sqsubseteq> x"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    49
  shows "a \<sqinter> b \<sqsubseteq> x"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    50
proof (rule order_trans)
25482
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    51
  from assms show "b \<sqsubseteq> x" .
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    52
  show "a \<sqinter> b \<sqsubseteq> b" by simp
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    53
qed
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    54
lemmas (in -) [rule del] = le_infI2
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    55
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    56
lemma le_infI[intro!]: "x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> b \<Longrightarrow> x \<sqsubseteq> a \<sqinter> b"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    57
by(blast intro: inf_greatest)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    58
lemmas (in -) [rule del] = le_infI
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    59
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    60
lemma le_infE [elim!]: "x \<sqsubseteq> a \<sqinter> b \<Longrightarrow> (x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> b \<Longrightarrow> P) \<Longrightarrow> P"
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    61
  by (blast intro: order_trans)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    62
lemmas (in -) [rule del] = le_infE
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    63
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    64
lemma le_inf_iff [simp]:
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
    65
  "x \<sqsubseteq> y \<sqinter> z = (x \<sqsubseteq> y \<and> x \<sqsubseteq> z)"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    66
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    67
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    68
lemma le_iff_inf: "(x \<sqsubseteq> y) = (x \<sqinter> y = x)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
    69
  by (blast intro: antisym dest: eq_iff [THEN iffD1])
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    70
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    71
lemma mono_inf:
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    72
  fixes f :: "'a \<Rightarrow> 'b\<Colon>lower_semilattice"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    73
  shows "mono f \<Longrightarrow> f (A \<sqinter> B) \<le> f A \<sqinter> f B"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    74
  by (auto simp add: mono_def intro: Lattices.inf_greatest)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    75
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    76
end
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    77
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    78
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    79
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    80
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    81
lemma le_supI1[intro]: "x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    82
  by (rule order_trans) auto
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    83
lemmas (in -) [rule del] = le_supI1
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    84
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    85
lemma le_supI2[intro]: "x \<sqsubseteq> b \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    86
  by (rule order_trans) auto 
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    87
lemmas (in -) [rule del] = le_supI2
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    88
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    89
lemma le_supI[intro!]: "a \<sqsubseteq> x \<Longrightarrow> b \<sqsubseteq> x \<Longrightarrow> a \<squnion> b \<sqsubseteq> x"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    90
by(blast intro: sup_least)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    91
lemmas (in -) [rule del] = le_supI
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    92
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    93
lemma le_supE[elim!]: "a \<squnion> b \<sqsubseteq> x \<Longrightarrow> (a \<sqsubseteq> x \<Longrightarrow> b \<sqsubseteq> x \<Longrightarrow> P) \<Longrightarrow> P"
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    94
  by (blast intro: order_trans)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    95
lemmas (in -) [rule del] = le_supE
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    96
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    97
lemma ge_sup_conv[simp]:
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
    98
  "x \<squnion> y \<sqsubseteq> z = (x \<sqsubseteq> z \<and> y \<sqsubseteq> z)"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    99
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   100
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   101
lemma le_iff_sup: "(x \<sqsubseteq> y) = (x \<squnion> y = y)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   102
  by (blast intro: antisym dest: eq_iff [THEN iffD1])
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   103
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   104
lemma mono_sup:
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   105
  fixes f :: "'a \<Rightarrow> 'b\<Colon>upper_semilattice"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   106
  shows "mono f \<Longrightarrow> f A \<squnion> f B \<le> f (A \<squnion> B)"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   107
  by (auto simp add: mono_def intro: Lattices.sup_least)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   108
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   109
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   110
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   111
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   112
subsubsection{* Equational laws *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   113
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   114
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   115
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   116
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   117
lemma inf_commute: "(x \<sqinter> y) = (y \<sqinter> x)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   118
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   119
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   120
lemma inf_assoc: "(x \<sqinter> y) \<sqinter> z = x \<sqinter> (y \<sqinter> z)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   121
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   122
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   123
lemma inf_idem[simp]: "x \<sqinter> x = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   124
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   125
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   126
lemma inf_left_idem[simp]: "x \<sqinter> (x \<sqinter> y) = x \<sqinter> y"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   127
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   128
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   129
lemma inf_absorb1: "x \<sqsubseteq> y \<Longrightarrow> x \<sqinter> y = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   130
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   131
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   132
lemma inf_absorb2: "y \<sqsubseteq> x \<Longrightarrow> x \<sqinter> y = y"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   133
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   134
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   135
lemma inf_left_commute: "x \<sqinter> (y \<sqinter> z) = y \<sqinter> (x \<sqinter> z)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   136
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   137
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   138
lemmas inf_ACI = inf_commute inf_assoc inf_left_commute inf_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   139
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   140
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   141
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   142
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   143
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   144
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   145
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   146
lemma sup_commute: "(x \<squnion> y) = (y \<squnion> x)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   147
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   148
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   149
lemma sup_assoc: "(x \<squnion> y) \<squnion> z = x \<squnion> (y \<squnion> z)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   150
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   151
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   152
lemma sup_idem[simp]: "x \<squnion> x = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   153
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   154
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   155
lemma sup_left_idem[simp]: "x \<squnion> (x \<squnion> y) = x \<squnion> y"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   156
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   157
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   158
lemma sup_absorb1: "y \<sqsubseteq> x \<Longrightarrow> x \<squnion> y = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   159
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   160
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   161
lemma sup_absorb2: "x \<sqsubseteq> y \<Longrightarrow> x \<squnion> y = y"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   162
  by (blast intro: antisym)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   163
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   164
lemma sup_left_commute: "x \<squnion> (y \<squnion> z) = y \<squnion> (x \<squnion> z)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   165
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   166
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   167
lemmas sup_ACI = sup_commute sup_assoc sup_left_commute sup_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   168
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   169
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   170
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   171
context lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   172
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   173
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   174
lemma inf_sup_absorb: "x \<sqinter> (x \<squnion> y) = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   175
  by (blast intro: antisym inf_le1 inf_greatest sup_ge1)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   176
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   177
lemma sup_inf_absorb: "x \<squnion> (x \<sqinter> y) = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   178
  by (blast intro: antisym sup_ge1 sup_least inf_le1)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   179
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   180
lemmas ACI = inf_ACI sup_ACI
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   181
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   182
lemmas inf_sup_ord = inf_le1 inf_le2 sup_ge1 sup_ge2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   183
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   184
text{* Towards distributivity *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   185
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   186
lemma distrib_sup_le: "x \<squnion> (y \<sqinter> z) \<sqsubseteq> (x \<squnion> y) \<sqinter> (x \<squnion> z)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   187
  by blast
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   188
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   189
lemma distrib_inf_le: "(x \<sqinter> y) \<squnion> (x \<sqinter> z) \<sqsubseteq> x \<sqinter> (y \<squnion> z)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   190
  by blast
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   191
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   192
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   193
text{* If you have one of them, you have them all. *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   194
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   195
lemma distrib_imp1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   196
assumes D: "!!x y z. x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   197
shows "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   198
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   199
  have "x \<squnion> (y \<sqinter> z) = (x \<squnion> (x \<sqinter> z)) \<squnion> (y \<sqinter> z)" by(simp add:sup_inf_absorb)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   200
  also have "\<dots> = x \<squnion> (z \<sqinter> (x \<squnion> y))" by(simp add:D inf_commute sup_assoc)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   201
  also have "\<dots> = ((x \<squnion> y) \<sqinter> x) \<squnion> ((x \<squnion> y) \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   202
    by(simp add:inf_sup_absorb inf_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   203
  also have "\<dots> = (x \<squnion> y) \<sqinter> (x \<squnion> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   204
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   205
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   206
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   207
lemma distrib_imp2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   208
assumes D: "!!x y z. x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   209
shows "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   210
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   211
  have "x \<sqinter> (y \<squnion> z) = (x \<sqinter> (x \<squnion> z)) \<sqinter> (y \<squnion> z)" by(simp add:inf_sup_absorb)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   212
  also have "\<dots> = x \<sqinter> (z \<squnion> (x \<sqinter> y))" by(simp add:D sup_commute inf_assoc)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   213
  also have "\<dots> = ((x \<sqinter> y) \<squnion> x) \<sqinter> ((x \<sqinter> y) \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   214
    by(simp add:sup_inf_absorb sup_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   215
  also have "\<dots> = (x \<sqinter> y) \<squnion> (x \<sqinter> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   216
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   217
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   218
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   219
(* seems unused *)
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   220
lemma modular_le: "x \<sqsubseteq> z \<Longrightarrow> x \<squnion> (y \<sqinter> z) \<sqsubseteq> (x \<squnion> y) \<sqinter> z"
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   221
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   222
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   223
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   224
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   225
24164
haftmann
parents: 23948
diff changeset
   226
subsection {* Distributive lattices *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   227
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   228
class distrib_lattice = lattice +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   229
  assumes sup_inf_distrib1: "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   230
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   231
context distrib_lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   232
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   233
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   234
lemma sup_inf_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   235
 "(y \<sqinter> z) \<squnion> x = (y \<squnion> x) \<sqinter> (z \<squnion> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   236
by(simp add:ACI sup_inf_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   237
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   238
lemma inf_sup_distrib1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   239
 "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   240
by(rule distrib_imp2[OF sup_inf_distrib1])
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   241
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   242
lemma inf_sup_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   243
 "(y \<squnion> z) \<sqinter> x = (y \<sqinter> x) \<squnion> (z \<sqinter> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   244
by(simp add:ACI inf_sup_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   245
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   246
lemmas distrib =
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   247
  sup_inf_distrib1 sup_inf_distrib2 inf_sup_distrib1 inf_sup_distrib2
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   248
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   249
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   250
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   251
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   252
subsection {* Uniqueness of inf and sup *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   253
22737
haftmann
parents: 22548
diff changeset
   254
lemma (in lower_semilattice) inf_unique:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   255
  fixes f (infixl "\<triangle>" 70)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   256
  assumes le1: "\<And>x y. x \<triangle> y \<le> x" and le2: "\<And>x y. x \<triangle> y \<le> y"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   257
  and greatest: "\<And>x y z. x \<le> y \<Longrightarrow> x \<le> z \<Longrightarrow> x \<le> y \<triangle> z"
22737
haftmann
parents: 22548
diff changeset
   258
  shows "x \<sqinter> y = x \<triangle> y"
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   259
proof (rule antisym)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   260
  show "x \<triangle> y \<le> x \<sqinter> y" by (rule le_infI) (rule le1, rule le2)
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   261
next
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   262
  have leI: "\<And>x y z. x \<le> y \<Longrightarrow> x \<le> z \<Longrightarrow> x \<le> y \<triangle> z" by (blast intro: greatest)
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   263
  show "x \<sqinter> y \<le> x \<triangle> y" by (rule leI) simp_all
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   264
qed
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   265
22737
haftmann
parents: 22548
diff changeset
   266
lemma (in upper_semilattice) sup_unique:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   267
  fixes f (infixl "\<nabla>" 70)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   268
  assumes ge1 [simp]: "\<And>x y. x \<le> x \<nabla> y" and ge2: "\<And>x y. y \<le> x \<nabla> y"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   269
  and least: "\<And>x y z. y \<le> x \<Longrightarrow> z \<le> x \<Longrightarrow> y \<nabla> z \<le> x"
22737
haftmann
parents: 22548
diff changeset
   270
  shows "x \<squnion> y = x \<nabla> y"
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   271
proof (rule antisym)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   272
  show "x \<squnion> y \<le> x \<nabla> y" by (rule le_supI) (rule ge1, rule ge2)
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   273
next
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   274
  have leI: "\<And>x y z. x \<le> z \<Longrightarrow> y \<le> z \<Longrightarrow> x \<nabla> y \<le> z" by (blast intro: least)
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   275
  show "x \<nabla> y \<le> x \<squnion> y" by (rule leI) simp_all
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   276
qed
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   277
  
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   278
22916
haftmann
parents: 22737
diff changeset
   279
subsection {* @{const min}/@{const max} on linear orders as
haftmann
parents: 22737
diff changeset
   280
  special case of @{const inf}/@{const sup} *}
haftmann
parents: 22737
diff changeset
   281
haftmann
parents: 22737
diff changeset
   282
lemma (in linorder) distrib_lattice_min_max:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   283
  "distrib_lattice (op \<le>) (op <) min max"
22916
haftmann
parents: 22737
diff changeset
   284
proof unfold_locales
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   285
  have aux: "\<And>x y \<Colon> 'a. x < y \<Longrightarrow> y \<le> x \<Longrightarrow> x = y"
22916
haftmann
parents: 22737
diff changeset
   286
    by (auto simp add: less_le antisym)
haftmann
parents: 22737
diff changeset
   287
  fix x y z
haftmann
parents: 22737
diff changeset
   288
  show "max x (min y z) = min (max x y) (max x z)"
haftmann
parents: 22737
diff changeset
   289
  unfolding min_def max_def
24640
85a6c200ecd3 Simplified proofs due to transitivity reasoner setup.
ballarin
parents: 24514
diff changeset
   290
  by auto
22916
haftmann
parents: 22737
diff changeset
   291
qed (auto simp add: min_def max_def not_le less_imp_le)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   292
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   293
interpretation min_max:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   294
  distrib_lattice ["op \<le> \<Colon> 'a\<Colon>linorder \<Rightarrow> 'a \<Rightarrow> bool" "op <" min max]
23948
261bd4678076 using class target
haftmann
parents: 23878
diff changeset
   295
  by (rule distrib_lattice_min_max)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   296
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   297
lemma inf_min: "inf = (min \<Colon> 'a\<Colon>{lower_semilattice, linorder} \<Rightarrow> 'a \<Rightarrow> 'a)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   298
  by (rule ext)+ (auto intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   299
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   300
lemma sup_max: "sup = (max \<Colon> 'a\<Colon>{upper_semilattice, linorder} \<Rightarrow> 'a \<Rightarrow> 'a)"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   301
  by (rule ext)+ (auto intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   302
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   303
lemmas le_maxI1 = min_max.sup_ge1
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   304
lemmas le_maxI2 = min_max.sup_ge2
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   305
 
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   306
lemmas max_ac = min_max.sup_assoc min_max.sup_commute
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   307
  mk_left_commute [of max, OF min_max.sup_assoc min_max.sup_commute]
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   308
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   309
lemmas min_ac = min_max.inf_assoc min_max.inf_commute
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   310
  mk_left_commute [of min, OF min_max.inf_assoc min_max.inf_commute]
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   311
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   312
text {*
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   313
  Now we have inherited antisymmetry as an intro-rule on all
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   314
  linear orders. This is a problem because it applies to bool, which is
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   315
  undesirable.
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   316
*}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   317
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   318
lemmas [rule del] = min_max.le_infI min_max.le_supI
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   319
  min_max.le_supE min_max.le_infE min_max.le_supI1 min_max.le_supI2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   320
  min_max.le_infI1 min_max.le_infI2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   321
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   322
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   323
subsection {* Complete lattices *}
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   324
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   325
class complete_lattice = lattice +
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   326
  fixes Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900)
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   327
    and Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   328
  assumes Inf_lower: "x \<in> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> x"
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   329
     and Inf_greatest: "(\<And>x. x \<in> A \<Longrightarrow> z \<sqsubseteq> x) \<Longrightarrow> z \<sqsubseteq> \<Sqinter>A"
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   330
  assumes Sup_upper: "x \<in> A \<Longrightarrow> x \<sqsubseteq> \<Squnion>A"
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   331
     and Sup_least: "(\<And>x. x \<in> A \<Longrightarrow> x \<sqsubseteq> z) \<Longrightarrow> \<Squnion>A \<sqsubseteq> z"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   332
begin
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   333
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   334
lemma Inf_Sup: "\<Sqinter>A = \<Squnion>{b. \<forall>a \<in> A. b \<le> a}"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   335
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   336
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   337
lemma Sup_Inf:  "\<Squnion>A = \<Sqinter>{b. \<forall>a \<in> A. a \<le> b}"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   338
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   339
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   340
lemma Inf_Univ: "\<Sqinter>UNIV = \<Squnion>{}"
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   341
  unfolding Sup_Inf by auto
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   342
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   343
lemma Sup_Univ: "\<Squnion>UNIV = \<Sqinter>{}"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   344
  unfolding Inf_Sup by auto
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   345
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   346
lemma Inf_insert: "\<Sqinter>insert a A = a \<sqinter> \<Sqinter>A"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   347
  apply (rule antisym)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   348
  apply (rule le_infI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   349
  apply (rule Inf_lower)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   350
  apply simp
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   351
  apply (rule Inf_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   352
  apply (rule Inf_lower)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   353
  apply simp
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   354
  apply (rule Inf_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   355
  apply (erule insertE)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   356
  apply (rule le_infI1)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   357
  apply simp
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   358
  apply (rule le_infI2)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   359
  apply (erule Inf_lower)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   360
  done
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   361
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   362
lemma Sup_insert: "\<Squnion>insert a A = a \<squnion> \<Squnion>A"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   363
  apply (rule antisym)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   364
  apply (rule Sup_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   365
  apply (erule insertE)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   366
  apply (rule le_supI1)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   367
  apply simp
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   368
  apply (rule le_supI2)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   369
  apply (erule Sup_upper)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   370
  apply (rule le_supI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   371
  apply (rule Sup_upper)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   372
  apply simp
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   373
  apply (rule Sup_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   374
  apply (rule Sup_upper)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   375
  apply simp
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   376
  done
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   377
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   378
lemma Inf_singleton [simp]:
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   379
  "\<Sqinter>{a} = a"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   380
  by (auto intro: antisym Inf_lower Inf_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   381
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   382
lemma Sup_singleton [simp]:
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   383
  "\<Squnion>{a} = a"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   384
  by (auto intro: antisym Sup_upper Sup_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   385
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   386
lemma Inf_insert_simp:
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   387
  "\<Sqinter>insert a A = (if A = {} then a else a \<sqinter> \<Sqinter>A)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   388
  by (cases "A = {}") (simp_all, simp add: Inf_insert)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   389
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   390
lemma Sup_insert_simp:
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   391
  "\<Squnion>insert a A = (if A = {} then a else a \<squnion> \<Squnion>A)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   392
  by (cases "A = {}") (simp_all, simp add: Sup_insert)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   393
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   394
lemma Inf_binary:
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   395
  "\<Sqinter>{a, b} = a \<sqinter> b"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   396
  by (simp add: Inf_insert_simp)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   397
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   398
lemma Sup_binary:
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   399
  "\<Squnion>{a, b} = a \<squnion> b"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   400
  by (simp add: Sup_insert_simp)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   401
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   402
definition
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   403
  top :: 'a where
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   404
  "top = \<Sqinter>{}"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   405
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   406
definition
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   407
  bot :: 'a where
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   408
  "bot = \<Squnion>{}"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   409
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   410
lemma top_greatest [simp]: "x \<le> top"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   411
  by (unfold top_def, rule Inf_greatest, simp)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   412
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   413
lemma bot_least [simp]: "bot \<le> x"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   414
  by (unfold bot_def, rule Sup_least, simp)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   415
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   416
definition
24749
151b3758f576 further localization
haftmann
parents: 24640
diff changeset
   417
  SUPR :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   418
where
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   419
  "SUPR A f == \<Squnion> (f ` A)"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   420
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   421
definition
24749
151b3758f576 further localization
haftmann
parents: 24640
diff changeset
   422
  INFI :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   423
where
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   424
  "INFI A f == \<Sqinter> (f ` A)"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   425
24749
151b3758f576 further localization
haftmann
parents: 24640
diff changeset
   426
end
151b3758f576 further localization
haftmann
parents: 24640
diff changeset
   427
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   428
syntax
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   429
  "_SUP1"     :: "pttrns => 'b => 'b"           ("(3SUP _./ _)" [0, 10] 10)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   430
  "_SUP"      :: "pttrn => 'a set => 'b => 'b"  ("(3SUP _:_./ _)" [0, 10] 10)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   431
  "_INF1"     :: "pttrns => 'b => 'b"           ("(3INF _./ _)" [0, 10] 10)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   432
  "_INF"      :: "pttrn => 'a set => 'b => 'b"  ("(3INF _:_./ _)" [0, 10] 10)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   433
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   434
translations
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   435
  "SUP x y. B"   == "SUP x. SUP y. B"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   436
  "SUP x. B"     == "CONST SUPR UNIV (%x. B)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   437
  "SUP x. B"     == "SUP x:UNIV. B"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   438
  "SUP x:A. B"   == "CONST SUPR A (%x. B)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   439
  "INF x y. B"   == "INF x. INF y. B"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   440
  "INF x. B"     == "CONST INFI UNIV (%x. B)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   441
  "INF x. B"     == "INF x:UNIV. B"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   442
  "INF x:A. B"   == "CONST INFI A (%x. B)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   443
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   444
(* To avoid eta-contraction of body: *)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   445
print_translation {*
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   446
let
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   447
  fun btr' syn (A :: Abs abs :: ts) =
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   448
    let val (x,t) = atomic_abs_tr' abs
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   449
    in list_comb (Syntax.const syn $ x $ A $ t, ts) end
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   450
  val const_syntax_name = Sign.const_syntax_name @{theory} o fst o dest_Const
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   451
in
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   452
[(const_syntax_name @{term SUPR}, btr' "_SUP"),(const_syntax_name @{term "INFI"}, btr' "_INF")]
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   453
end
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   454
*}
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   455
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   456
context complete_lattice
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   457
begin
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   458
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   459
lemma le_SUPI: "i : A \<Longrightarrow> M i \<le> (SUP i:A. M i)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   460
  by (auto simp add: SUPR_def intro: Sup_upper)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   461
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   462
lemma SUP_leI: "(\<And>i. i : A \<Longrightarrow> M i \<le> u) \<Longrightarrow> (SUP i:A. M i) \<le> u"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   463
  by (auto simp add: SUPR_def intro: Sup_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   464
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   465
lemma INF_leI: "i : A \<Longrightarrow> (INF i:A. M i) \<le> M i"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   466
  by (auto simp add: INFI_def intro: Inf_lower)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   467
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   468
lemma le_INFI: "(\<And>i. i : A \<Longrightarrow> u \<le> M i) \<Longrightarrow> u \<le> (INF i:A. M i)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   469
  by (auto simp add: INFI_def intro: Inf_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   470
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   471
lemma SUP_const[simp]: "A \<noteq> {} \<Longrightarrow> (SUP i:A. M) = M"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   472
  by (auto intro: antisym SUP_leI le_SUPI)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   473
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   474
lemma INF_const[simp]: "A \<noteq> {} \<Longrightarrow> (INF i:A. M) = M"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   475
  by (auto intro: antisym INF_leI le_INFI)
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   476
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   477
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   478
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   479
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   480
subsection {* Bool as lattice *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   481
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   482
instantiation bool :: distrib_lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   483
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   484
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   485
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   486
  inf_bool_eq: "P \<sqinter> Q \<longleftrightarrow> P \<and> Q"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   487
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   488
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   489
  sup_bool_eq: "P \<squnion> Q \<longleftrightarrow> P \<or> Q"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   490
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   491
instance
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   492
  by intro_classes (auto simp add: inf_bool_eq sup_bool_eq le_bool_def)
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   493
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   494
end
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   495
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   496
instantiation bool :: complete_lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   497
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   498
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   499
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   500
  Inf_bool_def: "\<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x)"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   501
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   502
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   503
  Sup_bool_def: "\<Squnion>A \<longleftrightarrow> (\<exists>x\<in>A. x)"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   504
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   505
instance
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   506
  by intro_classes (auto simp add: Inf_bool_def Sup_bool_def le_bool_def)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   507
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   508
end
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   509
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   510
lemma Inf_empty_bool [simp]:
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   511
  "\<Sqinter>{}"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   512
  unfolding Inf_bool_def by auto
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   513
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   514
lemma not_Sup_empty_bool [simp]:
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   515
  "\<not> Sup {}"
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   516
  unfolding Sup_bool_def by auto
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   517
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   518
lemma top_bool_eq: "top = True"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   519
  by (iprover intro!: order_antisym le_boolI top_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   520
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   521
lemma bot_bool_eq: "bot = False"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   522
  by (iprover intro!: order_antisym le_boolI bot_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   523
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   524
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   525
subsection {* Set as lattice *}
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   526
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   527
instantiation set :: (type) distrib_lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   528
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   529
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   530
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   531
  inf_set_eq [code func del]: "A \<sqinter> B = A \<inter> B"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   532
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   533
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   534
  sup_set_eq [code func del]: "A \<squnion> B = A \<union> B"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   535
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   536
instance
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   537
  by intro_classes (auto simp add: inf_set_eq sup_set_eq)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   538
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   539
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   540
24514
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   541
lemma mono_Int: "mono f \<Longrightarrow> f (A \<inter> B) \<subseteq> f A \<inter> f B"
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   542
  apply (fold inf_set_eq sup_set_eq)
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   543
  apply (erule mono_inf)
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   544
  done
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   545
24514
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   546
lemma mono_Un: "mono f \<Longrightarrow> f A \<union> f B \<subseteq> f (A \<union> B)"
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   547
  apply (fold inf_set_eq sup_set_eq)
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   548
  apply (erule mono_sup)
540eaf87e42d mono_Int/Un: proper proof, avoid illegal schematic type vars;
wenzelm
parents: 24345
diff changeset
   549
  done
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   550
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   551
instantiation set :: (type) complete_lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   552
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   553
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   554
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   555
  Inf_set_def [code func del]: "\<Sqinter>S \<equiv> \<Inter>S"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   556
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   557
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   558
  Sup_set_def [code func del]: "\<Squnion>S \<equiv> \<Union>S"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   559
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   560
instance
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   561
  by intro_classes (auto simp add: Inf_set_def Sup_set_def)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   562
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   563
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   564
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   565
lemma top_set_eq: "top = UNIV"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   566
  by (iprover intro!: subset_antisym subset_UNIV top_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   567
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   568
lemma bot_set_eq: "bot = {}"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   569
  by (iprover intro!: subset_antisym empty_subsetI bot_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   570
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   571
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   572
subsection {* Fun as lattice *}
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   573
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   574
instantiation "fun" :: (type, lattice) lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   575
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   576
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   577
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   578
  inf_fun_eq [code func del]: "f \<sqinter> g = (\<lambda>x. f x \<sqinter> g x)"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   579
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   580
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   581
  sup_fun_eq [code func del]: "f \<squnion> g = (\<lambda>x. f x \<squnion> g x)"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   582
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   583
instance
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   584
apply intro_classes
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   585
unfolding inf_fun_eq sup_fun_eq
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   586
apply (auto intro: le_funI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   587
apply (rule le_funI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   588
apply (auto dest: le_funD)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   589
apply (rule le_funI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   590
apply (auto dest: le_funD)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   591
done
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   592
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   593
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   594
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   595
instance "fun" :: (type, distrib_lattice) distrib_lattice
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   596
  by default (auto simp add: inf_fun_eq sup_fun_eq sup_inf_distrib1)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   597
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   598
instantiation "fun" :: (type, complete_lattice) complete_lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   599
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   600
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   601
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   602
  Inf_fun_def [code func del]: "\<Sqinter>A = (\<lambda>x. \<Sqinter>{y. \<exists>f\<in>A. y = f x})"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   603
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   604
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   605
  Sup_fun_def [code func del]: "\<Squnion>A = (\<lambda>x. \<Squnion>{y. \<exists>f\<in>A. y = f x})"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   606
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   607
instance
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   608
  by intro_classes
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   609
    (auto simp add: Inf_fun_def Sup_fun_def le_fun_def
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   610
      intro: Inf_lower Sup_upper Inf_greatest Sup_least)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   611
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   612
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   613
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   614
lemma Inf_empty_fun:
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   615
  "\<Sqinter>{} = (\<lambda>_. \<Sqinter>{})"
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   616
  by rule (auto simp add: Inf_fun_def)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   617
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   618
lemma Sup_empty_fun:
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   619
  "\<Squnion>{} = (\<lambda>_. \<Squnion>{})"
24345
86a3557a9ebb Sup now explicit parameter of complete_lattice
haftmann
parents: 24164
diff changeset
   620
  by rule (auto simp add: Sup_fun_def)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   621
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   622
lemma top_fun_eq: "top = (\<lambda>x. top)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   623
  by (iprover intro!: order_antisym le_funI top_greatest)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   624
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   625
lemma bot_fun_eq: "bot = (\<lambda>x. bot)"
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   626
  by (iprover intro!: order_antisym le_funI bot_least)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   627
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   628
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   629
text {* redundant bindings *}
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   630
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   631
lemmas inf_aci = inf_ACI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   632
lemmas sup_aci = sup_ACI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   633
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   634
no_notation
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   635
  less_eq  (infix "\<sqsubseteq>" 50) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   636
  less (infix "\<sqsubset>" 50) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   637
  inf  (infixl "\<sqinter>" 70) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   638
  sup  (infixl "\<squnion>" 65) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   639
  Inf  ("\<Sqinter>_" [900] 900) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   640
  Sup  ("\<Squnion>_" [900] 900)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   641
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   642
end