src/HOL/Lattices.thy
author haftmann
Mon, 13 Jul 2009 08:25:43 +0200
changeset 32063 2aab4f2af536
parent 31991 37390299214a
child 32064 53ca12ff305d
permissions -rw-r--r--
removed outdated comment
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
    Author:     Tobias Nipkow
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     3
*)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     4
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
     5
header {* Abstract lattices *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     6
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     7
theory Lattices
30302
5ffa9d4dbea7 moved complete_lattice to Set.thy
haftmann
parents: 29580
diff changeset
     8
imports Orderings
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
     9
begin
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    10
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27682
diff changeset
    11
subsection {* Lattices *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    12
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    13
notation
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
    14
  less_eq  (infix "\<sqsubseteq>" 50) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
    15
  less  (infix "\<sqsubset>" 50)
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    16
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    17
class lower_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    18
  fixes inf :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<sqinter>" 70)
22737
haftmann
parents: 22548
diff changeset
    19
  assumes inf_le1 [simp]: "x \<sqinter> y \<sqsubseteq> x"
haftmann
parents: 22548
diff changeset
    20
  and inf_le2 [simp]: "x \<sqinter> y \<sqsubseteq> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    21
  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
    22
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    23
class upper_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    24
  fixes sup :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<squnion>" 65)
22737
haftmann
parents: 22548
diff changeset
    25
  assumes sup_ge1 [simp]: "x \<sqsubseteq> x \<squnion> y"
haftmann
parents: 22548
diff changeset
    26
  and sup_ge2 [simp]: "y \<sqsubseteq> x \<squnion> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    27
  and sup_least: "y \<sqsubseteq> x \<Longrightarrow> z \<sqsubseteq> x \<Longrightarrow> y \<squnion> z \<sqsubseteq> x"
26014
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    28
begin
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    29
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    30
text {* Dual lattice *}
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    31
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
    32
lemma dual_semilattice:
26014
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    33
  "lower_semilattice (op \<ge>) (op >) sup"
27682
25aceefd4786 added class preorder
haftmann
parents: 26794
diff changeset
    34
by (rule lower_semilattice.intro, rule dual_order)
25aceefd4786 added class preorder
haftmann
parents: 26794
diff changeset
    35
  (unfold_locales, simp_all add: sup_least)
26014
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    36
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    37
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    38
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    39
class lattice = lower_semilattice + upper_semilattice
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    40
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
    41
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27682
diff changeset
    42
subsubsection {* Intro and elim rules*}
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    43
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    44
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    45
begin
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_infI1[intro]:
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    48
  assumes "a \<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 "a \<sqsubseteq> x" .
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    52
  show "a \<sqinter> b \<sqsubseteq> a" 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_infI1
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    55
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    56
lemma le_infI2[intro]:
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    57
  assumes "b \<sqsubseteq> x"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    58
  shows "a \<sqinter> b \<sqsubseteq> x"
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    59
proof (rule order_trans)
25482
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    60
  from assms show "b \<sqsubseteq> x" .
4ed49eccb1eb dropped implicit assumption proof
haftmann
parents: 25382
diff changeset
    61
  show "a \<sqinter> b \<sqsubseteq> b" by simp
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    62
qed
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    63
lemmas (in -) [rule del] = le_infI2
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    64
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    65
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
    66
by(blast intro: inf_greatest)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    67
lemmas (in -) [rule del] = le_infI
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    68
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    69
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
    70
  by (blast intro: order_trans)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    71
lemmas (in -) [rule del] = le_infE
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    72
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    73
lemma le_inf_iff [simp]:
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
    74
  "x \<sqsubseteq> y \<sqinter> z = (x \<sqsubseteq> y \<and> x \<sqsubseteq> z)"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    75
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    76
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    77
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
    78
  by (blast intro: antisym dest: eq_iff [THEN iffD1])
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    79
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    80
lemma mono_inf:
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    81
  fixes f :: "'a \<Rightarrow> 'b\<Colon>lower_semilattice"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    82
  shows "mono f \<Longrightarrow> f (A \<sqinter> B) \<le> f A \<sqinter> f B"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    83
  by (auto simp add: mono_def intro: Lattices.inf_greatest)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    84
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
    85
end
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    86
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    87
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    88
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    89
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    90
lemma le_supI1[intro]: "x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    91
  by (rule order_trans) auto
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    92
lemmas (in -) [rule del] = le_supI1
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    93
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    94
lemma le_supI2[intro]: "x \<sqsubseteq> b \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
    95
  by (rule order_trans) auto 
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    96
lemmas (in -) [rule del] = le_supI2
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    97
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    98
lemma le_supI[intro!]: "a \<sqsubseteq> x \<Longrightarrow> b \<sqsubseteq> x \<Longrightarrow> a \<squnion> b \<sqsubseteq> x"
26014
00c2c3525bef dual orders and dual lattices
haftmann
parents: 25510
diff changeset
    99
  by (blast intro: sup_least)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   100
lemmas (in -) [rule del] = le_supI
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   101
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   102
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
   103
  by (blast intro: order_trans)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   104
lemmas (in -) [rule del] = le_supE
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   105
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   106
lemma ge_sup_conv[simp]:
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   107
  "x \<squnion> y \<sqsubseteq> z = (x \<sqsubseteq> z \<and> y \<sqsubseteq> z)"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   108
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   109
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   110
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
   111
  by (blast intro: antisym dest: eq_iff [THEN iffD1])
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   112
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   113
lemma mono_sup:
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   114
  fixes f :: "'a \<Rightarrow> 'b\<Colon>upper_semilattice"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   115
  shows "mono f \<Longrightarrow> f A \<squnion> f B \<le> f (A \<squnion> B)"
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   116
  by (auto simp add: mono_def intro: Lattices.sup_least)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   117
25206
9c84ec7217a9 localized monotonicity; tuned syntax
haftmann
parents: 25102
diff changeset
   118
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   119
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   120
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   121
subsubsection{* Equational laws *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   122
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   123
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   124
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   125
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   126
lemma inf_commute: "(x \<sqinter> y) = (y \<sqinter> x)"
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_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
   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_idem[simp]: "x \<sqinter> x = x"
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_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
   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
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
   139
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   140
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   141
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
   142
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   143
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   144
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
   145
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   146
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   147
lemmas inf_ACI = inf_commute inf_assoc inf_left_commute inf_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   148
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   149
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   150
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   151
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   152
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   153
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   154
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   155
lemma sup_commute: "(x \<squnion> y) = (y \<squnion> x)"
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_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
   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_idem[simp]: "x \<squnion> x = x"
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   162
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   163
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   164
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
   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
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
   168
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   169
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   170
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
   171
  by (blast intro: antisym)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   172
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   173
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
   174
  by (blast intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   175
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   176
lemmas sup_ACI = sup_commute sup_assoc sup_left_commute sup_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   177
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   178
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   179
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   180
context lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   181
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   182
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   183
lemma dual_lattice:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   184
  "lattice (op \<ge>) (op >) sup inf"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   185
  by (rule lattice.intro, rule dual_semilattice, rule upper_semilattice.intro, rule dual_order)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   186
    (unfold_locales, auto)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   187
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   188
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
   189
  by (blast intro: antisym inf_le1 inf_greatest sup_ge1)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   190
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   191
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
   192
  by (blast intro: antisym sup_ge1 sup_least inf_le1)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   193
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   194
lemmas ACI = inf_ACI sup_ACI
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   195
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   196
lemmas inf_sup_ord = inf_le1 inf_le2 sup_ge1 sup_ge2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   197
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   198
text{* Towards distributivity *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   199
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   200
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
   201
  by blast
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   202
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   203
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
   204
  by blast
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   205
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   206
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   207
text{* If you have one of them, you have them all. *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   208
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   209
lemma distrib_imp1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   210
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
   211
shows "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   212
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   213
  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
   214
  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
   215
  also have "\<dots> = ((x \<squnion> y) \<sqinter> x) \<squnion> ((x \<squnion> y) \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   216
    by(simp add:inf_sup_absorb inf_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   217
  also have "\<dots> = (x \<squnion> y) \<sqinter> (x \<squnion> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   218
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   219
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   220
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   221
lemma distrib_imp2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   222
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
   223
shows "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   224
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   225
  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
   226
  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
   227
  also have "\<dots> = ((x \<sqinter> y) \<squnion> x) \<sqinter> ((x \<sqinter> y) \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   228
    by(simp add:sup_inf_absorb sup_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   229
  also have "\<dots> = (x \<sqinter> y) \<squnion> (x \<sqinter> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   230
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   231
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   232
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   233
(* seems unused *)
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   234
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
   235
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   236
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   237
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   238
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   239
24164
haftmann
parents: 23948
diff changeset
   240
subsection {* Distributive lattices *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   241
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   242
class distrib_lattice = lattice +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   243
  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
   244
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   245
context distrib_lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   246
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   247
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   248
lemma sup_inf_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   249
 "(y \<sqinter> z) \<squnion> x = (y \<squnion> x) \<sqinter> (z \<squnion> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   250
by(simp add:ACI sup_inf_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   251
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   252
lemma inf_sup_distrib1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   253
 "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   254
by(rule distrib_imp2[OF sup_inf_distrib1])
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   255
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   256
lemma inf_sup_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   257
 "(y \<squnion> z) \<sqinter> x = (y \<sqinter> x) \<squnion> (z \<sqinter> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   258
by(simp add:ACI inf_sup_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   259
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   260
lemma dual_distrib_lattice:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   261
  "distrib_lattice (op \<ge>) (op >) sup inf"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   262
  by (rule distrib_lattice.intro, rule dual_lattice)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   263
    (unfold_locales, fact inf_sup_distrib1)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   264
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   265
lemmas distrib =
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   266
  sup_inf_distrib1 sup_inf_distrib2 inf_sup_distrib1 inf_sup_distrib2
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   267
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   268
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   269
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   270
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   271
subsection {* Boolean algebras *}
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   272
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   273
class boolean_algebra = distrib_lattice + top + bot + minus + uminus +
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   274
  assumes inf_compl_bot: "x \<sqinter> - x = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   275
    and sup_compl_top: "x \<squnion> - x = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   276
  assumes diff_eq: "x - y = x \<sqinter> - y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   277
begin
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   278
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   279
lemma dual_boolean_algebra:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   280
  "boolean_algebra (\<lambda>x y. x \<squnion> - y) uminus (op \<ge>) (op >) (op \<squnion>) (op \<sqinter>) top bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   281
  by (rule boolean_algebra.intro, rule dual_distrib_lattice)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   282
    (unfold_locales,
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   283
      auto simp add: inf_compl_bot sup_compl_top diff_eq less_le_not_le)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   284
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   285
lemma compl_inf_bot:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   286
  "- x \<sqinter> x = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   287
  by (simp add: inf_commute inf_compl_bot)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   288
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   289
lemma compl_sup_top:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   290
  "- x \<squnion> x = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   291
  by (simp add: sup_commute sup_compl_top)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   292
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   293
lemma inf_bot_left [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   294
  "bot \<sqinter> x = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   295
  by (rule inf_absorb1) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   296
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   297
lemma inf_bot_right [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   298
  "x \<sqinter> bot = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   299
  by (rule inf_absorb2) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   300
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   301
lemma sup_top_left [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   302
  "top \<squnion> x = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   303
  by (rule sup_absorb1) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   304
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   305
lemma sup_top_right [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   306
  "x \<squnion> top = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   307
  by (rule sup_absorb2) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   308
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   309
lemma inf_top_left [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   310
  "top \<sqinter> x = x"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   311
  by (rule inf_absorb2) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   312
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   313
lemma inf_top_right [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   314
  "x \<sqinter> top = x"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   315
  by (rule inf_absorb1) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   316
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   317
lemma sup_bot_left [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   318
  "bot \<squnion> x = x"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   319
  by (rule sup_absorb2) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   320
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   321
lemma sup_bot_right [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   322
  "x \<squnion> bot = x"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   323
  by (rule sup_absorb1) simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   324
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   325
lemma compl_unique:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   326
  assumes "x \<sqinter> y = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   327
    and "x \<squnion> y = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   328
  shows "- x = y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   329
proof -
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   330
  have "(x \<sqinter> - x) \<squnion> (- x \<sqinter> y) = (x \<sqinter> y) \<squnion> (- x \<sqinter> y)"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   331
    using inf_compl_bot assms(1) by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   332
  then have "(- x \<sqinter> x) \<squnion> (- x \<sqinter> y) = (y \<sqinter> x) \<squnion> (y \<sqinter> - x)"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   333
    by (simp add: inf_commute)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   334
  then have "- x \<sqinter> (x \<squnion> y) = y \<sqinter> (x \<squnion> - x)"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   335
    by (simp add: inf_sup_distrib1)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   336
  then have "- x \<sqinter> top = y \<sqinter> top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   337
    using sup_compl_top assms(2) by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   338
  then show "- x = y" by (simp add: inf_top_right)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   339
qed
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   340
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   341
lemma double_compl [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   342
  "- (- x) = x"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   343
  using compl_inf_bot compl_sup_top by (rule compl_unique)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   344
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   345
lemma compl_eq_compl_iff [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   346
  "- x = - y \<longleftrightarrow> x = y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   347
proof
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   348
  assume "- x = - y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   349
  then have "- x \<sqinter> y = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   350
    and "- x \<squnion> y = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   351
    by (simp_all add: compl_inf_bot compl_sup_top)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   352
  then have "- (- x) = y" by (rule compl_unique)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   353
  then show "x = y" by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   354
next
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   355
  assume "x = y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   356
  then show "- x = - y" by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   357
qed
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   358
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   359
lemma compl_bot_eq [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   360
  "- bot = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   361
proof -
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   362
  from sup_compl_top have "bot \<squnion> - bot = top" .
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   363
  then show ?thesis by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   364
qed
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   365
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   366
lemma compl_top_eq [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   367
  "- top = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   368
proof -
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   369
  from inf_compl_bot have "top \<sqinter> - top = bot" .
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   370
  then show ?thesis by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   371
qed
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   372
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   373
lemma compl_inf [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   374
  "- (x \<sqinter> y) = - x \<squnion> - y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   375
proof (rule compl_unique)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   376
  have "(x \<sqinter> y) \<sqinter> (- x \<squnion> - y) = ((x \<sqinter> y) \<sqinter> - x) \<squnion> ((x \<sqinter> y) \<sqinter> - y)"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   377
    by (rule inf_sup_distrib1)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   378
  also have "... = (y \<sqinter> (x \<sqinter> - x)) \<squnion> (x \<sqinter> (y \<sqinter> - y))"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   379
    by (simp only: inf_commute inf_assoc inf_left_commute)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   380
  finally show "(x \<sqinter> y) \<sqinter> (- x \<squnion> - y) = bot"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   381
    by (simp add: inf_compl_bot)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   382
next
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   383
  have "(x \<sqinter> y) \<squnion> (- x \<squnion> - y) = (x \<squnion> (- x \<squnion> - y)) \<sqinter> (y \<squnion> (- x \<squnion> - y))"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   384
    by (rule sup_inf_distrib2)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   385
  also have "... = (- y \<squnion> (x \<squnion> - x)) \<sqinter> (- x \<squnion> (y \<squnion> - y))"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   386
    by (simp only: sup_commute sup_assoc sup_left_commute)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   387
  finally show "(x \<sqinter> y) \<squnion> (- x \<squnion> - y) = top"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   388
    by (simp add: sup_compl_top)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   389
qed
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   390
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   391
lemma compl_sup [simp]:
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   392
  "- (x \<squnion> y) = - x \<sqinter> - y"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   393
proof -
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   394
  interpret boolean_algebra "\<lambda>x y. x \<squnion> - y" uminus "op \<ge>" "op >" "op \<squnion>" "op \<sqinter>" top bot
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   395
    by (rule dual_boolean_algebra)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   396
  then show ?thesis by simp
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   397
qed
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   398
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   399
end
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   400
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   401
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   402
subsection {* Uniqueness of inf and sup *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   403
22737
haftmann
parents: 22548
diff changeset
   404
lemma (in lower_semilattice) inf_unique:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   405
  fixes f (infixl "\<triangle>" 70)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   406
  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
   407
  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
   408
  shows "x \<sqinter> y = x \<triangle> y"
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   409
proof (rule antisym)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   410
  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
   411
next
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   412
  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
   413
  show "x \<sqinter> y \<le> x \<triangle> y" by (rule leI) simp_all
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   414
qed
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   415
22737
haftmann
parents: 22548
diff changeset
   416
lemma (in upper_semilattice) sup_unique:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   417
  fixes f (infixl "\<nabla>" 70)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   418
  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
   419
  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
   420
  shows "x \<squnion> y = x \<nabla> y"
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   421
proof (rule antisym)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   422
  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
   423
next
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   424
  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
   425
  show "x \<nabla> y \<le> x \<squnion> y" by (rule leI) simp_all
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   426
qed
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   427
  
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   428
22916
haftmann
parents: 22737
diff changeset
   429
subsection {* @{const min}/@{const max} on linear orders as
haftmann
parents: 22737
diff changeset
   430
  special case of @{const inf}/@{const sup} *}
haftmann
parents: 22737
diff changeset
   431
haftmann
parents: 22737
diff changeset
   432
lemma (in linorder) distrib_lattice_min_max:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   433
  "distrib_lattice (op \<le>) (op <) min max"
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28692
diff changeset
   434
proof
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   435
  have aux: "\<And>x y \<Colon> 'a. x < y \<Longrightarrow> y \<le> x \<Longrightarrow> x = y"
22916
haftmann
parents: 22737
diff changeset
   436
    by (auto simp add: less_le antisym)
haftmann
parents: 22737
diff changeset
   437
  fix x y z
haftmann
parents: 22737
diff changeset
   438
  show "max x (min y z) = min (max x y) (max x z)"
haftmann
parents: 22737
diff changeset
   439
  unfolding min_def max_def
24640
85a6c200ecd3 Simplified proofs due to transitivity reasoner setup.
ballarin
parents: 24514
diff changeset
   440
  by auto
22916
haftmann
parents: 22737
diff changeset
   441
qed (auto simp add: min_def max_def not_le less_imp_le)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   442
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30302
diff changeset
   443
interpretation min_max: distrib_lattice "op \<le> :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> bool" "op <" min max
23948
261bd4678076 using class target
haftmann
parents: 23878
diff changeset
   444
  by (rule distrib_lattice_min_max)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   445
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   446
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
   447
  by (rule ext)+ (auto intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   448
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   449
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
   450
  by (rule ext)+ (auto intro: antisym)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   451
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   452
lemmas le_maxI1 = min_max.sup_ge1
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   453
lemmas le_maxI2 = min_max.sup_ge2
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   454
 
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   455
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
   456
  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
   457
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   458
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
   459
  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
   460
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25062
diff changeset
   461
lemmas [rule del] = min_max.le_infI min_max.le_supI
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   462
  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
   463
  min_max.le_infI1 min_max.le_infI2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   464
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   465
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   466
subsection {* Bool as lattice *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   467
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   468
instantiation bool :: boolean_algebra
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   469
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   470
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   471
definition
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   472
  bool_Compl_def: "uminus = Not"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   473
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   474
definition
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   475
  bool_diff_def: "A - B \<longleftrightarrow> A \<and> \<not> B"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   476
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   477
definition
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   478
  inf_bool_eq: "P \<sqinter> Q \<longleftrightarrow> P \<and> Q"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   479
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   480
definition
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   481
  sup_bool_eq: "P \<squnion> Q \<longleftrightarrow> P \<or> Q"
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   482
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   483
instance proof
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   484
qed (simp_all add: inf_bool_eq sup_bool_eq le_bool_def
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   485
  bot_bool_eq top_bool_eq bool_Compl_def bool_diff_def, auto)
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   486
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   487
end
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   488
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   489
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   490
subsection {* Fun as lattice *}
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   491
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   492
instantiation "fun" :: (type, lattice) lattice
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   493
begin
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   494
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   495
definition
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27682
diff changeset
   496
  inf_fun_eq [code del]: "f \<sqinter> g = (\<lambda>x. f x \<sqinter> g x)"
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   497
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   498
definition
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27682
diff changeset
   499
  sup_fun_eq [code del]: "f \<squnion> g = (\<lambda>x. f x \<squnion> g x)"
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   500
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   501
instance
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   502
apply intro_classes
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   503
unfolding inf_fun_eq sup_fun_eq
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   504
apply (auto intro: le_funI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   505
apply (rule le_funI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   506
apply (auto dest: le_funD)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   507
apply (rule le_funI)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   508
apply (auto dest: le_funD)
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   509
done
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   510
25510
38c15efe603b adjustions to due to instance target
haftmann
parents: 25482
diff changeset
   511
end
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   512
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   513
instance "fun" :: (type, distrib_lattice) distrib_lattice
31991
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   514
proof
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   515
qed (auto simp add: inf_fun_eq sup_fun_eq sup_inf_distrib1)
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   516
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   517
instantiation "fun" :: (type, uminus) uminus
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   518
begin
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   519
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   520
definition
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   521
  fun_Compl_def: "- A = (\<lambda>x. - A x)"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   522
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   523
instance ..
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   524
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   525
end
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   526
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   527
instantiation "fun" :: (type, minus) minus
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   528
begin
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   529
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   530
definition
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   531
  fun_diff_def: "A - B = (\<lambda>x. A x - B x)"
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   532
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   533
instance ..
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   534
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   535
end
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   536
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   537
instance "fun" :: (type, boolean_algebra) boolean_algebra
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   538
proof
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   539
qed (simp_all add: inf_fun_eq sup_fun_eq bot_fun_eq top_fun_eq fun_Compl_def fun_diff_def
37390299214a added boolean_algebra type class; tuned lattice duals
haftmann
parents: 30729
diff changeset
   540
  inf_compl_bot sup_compl_top diff_eq)
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   541
26794
354c3844dfde - Now imports Fun rather than Orderings
berghofe
parents: 26233
diff changeset
   542
23878
bd651ecd4b8a simplified HOL bootstrap
haftmann
parents: 23389
diff changeset
   543
text {* redundant bindings *}
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   544
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   545
lemmas inf_aci = inf_ACI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   546
lemmas sup_aci = sup_ACI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   547
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   548
no_notation
25382
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   549
  less_eq  (infix "\<sqsubseteq>" 50) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   550
  less (infix "\<sqsubset>" 50) and
72cfe89f7b21 tuned specifications of 'notation';
wenzelm
parents: 25206
diff changeset
   551
  inf  (infixl "\<sqinter>" 70) and
30302
5ffa9d4dbea7 moved complete_lattice to Set.thy
haftmann
parents: 29580
diff changeset
   552
  sup  (infixl "\<squnion>" 65)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24749
diff changeset
   553
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   554
end