src/HOL/Lattices.thy
author haftmann
Thu, 24 May 2007 08:37:39 +0200
changeset 23087 ad7244663431
parent 23018 1d29bc31b0cb
child 23389 aaca6a8e5414
permissions -rw-r--r--
rudimentary class target implementation
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
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
    14
text{*
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
    15
  This theory of lattices only defines binary sup and inf
22916
haftmann
parents: 22737
diff changeset
    16
  operations. The extension to complete lattices is done in theory
haftmann
parents: 22737
diff changeset
    17
  @{text FixedPoint}.
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
    18
*}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    19
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    20
class lower_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    21
  fixes inf :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<sqinter>" 70)
22737
haftmann
parents: 22548
diff changeset
    22
  assumes inf_le1 [simp]: "x \<sqinter> y \<sqsubseteq> x"
haftmann
parents: 22548
diff changeset
    23
  and inf_le2 [simp]: "x \<sqinter> y \<sqsubseteq> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    24
  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
    25
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    26
class upper_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    27
  fixes sup :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<squnion>" 65)
22737
haftmann
parents: 22548
diff changeset
    28
  assumes sup_ge1 [simp]: "x \<sqsubseteq> x \<squnion> y"
haftmann
parents: 22548
diff changeset
    29
  and sup_ge2 [simp]: "y \<sqsubseteq> x \<squnion> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    30
  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
    31
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    32
class lattice = lower_semilattice + upper_semilattice
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    33
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    34
subsubsection{* Intro and elim rules*}
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    35
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    36
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    37
begin
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
lemmas antisym_intro [intro!] = antisym
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    40
lemmas (in -) [rule del] = antisym_intro
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    41
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    42
lemma le_infI1[intro]: "a \<sqsubseteq> x \<Longrightarrow> a \<sqinter> b \<sqsubseteq> x"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    43
apply(subgoal_tac "a \<sqinter> b \<sqsubseteq> a")
22384
33a46e6c7f04 prefix of class interpretation not mandatory any longer
haftmann
parents: 22168
diff changeset
    44
 apply(blast intro: order_trans)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    45
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    46
done
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    47
lemmas (in -) [rule del] = le_infI1
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    48
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    49
lemma le_infI2[intro]: "b \<sqsubseteq> x \<Longrightarrow> a \<sqinter> b \<sqsubseteq> x"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    50
apply(subgoal_tac "a \<sqinter> b \<sqsubseteq> b")
22384
33a46e6c7f04 prefix of class interpretation not mandatory any longer
haftmann
parents: 22168
diff changeset
    51
 apply(blast intro: order_trans)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    52
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    53
done
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]:
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    65
 "x \<sqsubseteq> y \<sqinter> z = (x \<sqsubseteq> y \<and> x \<sqsubseteq> z)"
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)"
22168
627e7aee1b82 simplified proofs
nipkow
parents: 22139
diff changeset
    69
by(blast dest:eq_iff[THEN iffD1])
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    70
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    71
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    72
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    73
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    74
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    75
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    76
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    77
lemmas antisym_intro [intro!] = antisym
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    78
lemmas (in -) [rule del] = antisym_intro
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    79
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    80
lemma le_supI1[intro]: "x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    81
apply(subgoal_tac "a \<sqsubseteq> a \<squnion> b")
22384
33a46e6c7f04 prefix of class interpretation not mandatory any longer
haftmann
parents: 22168
diff changeset
    82
 apply(blast intro: order_trans)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    83
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    84
done
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    85
lemmas (in -) [rule del] = le_supI1
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    86
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    87
lemma le_supI2[intro]: "x \<sqsubseteq> b \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    88
apply(subgoal_tac "b \<sqsubseteq> a \<squnion> b")
22384
33a46e6c7f04 prefix of class interpretation not mandatory any longer
haftmann
parents: 22168
diff changeset
    89
 apply(blast intro: order_trans)
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    90
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    91
done
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    92
lemmas (in -) [rule del] = le_supI2
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    93
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    94
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
    95
by(blast intro: sup_least)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
    96
lemmas (in -) [rule del] = le_supI
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    97
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    98
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
    99
  by (blast intro: order_trans)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   100
lemmas (in -) [rule del] = le_supE
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22384
diff changeset
   101
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   102
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   103
lemma ge_sup_conv[simp]:
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   104
 "x \<squnion> y \<sqsubseteq> z = (x \<sqsubseteq> z \<and> y \<sqsubseteq> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   105
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   106
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   107
lemma le_iff_sup: "(x \<sqsubseteq> y) = (x \<squnion> y = y)"
22168
627e7aee1b82 simplified proofs
nipkow
parents: 22139
diff changeset
   108
by(blast dest:eq_iff[THEN iffD1])
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   109
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   110
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   111
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   112
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   113
subsubsection{* Equational laws *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   114
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   115
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   116
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   117
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   118
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   119
lemma inf_commute: "(x \<sqinter> y) = (y \<sqinter> x)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   120
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   121
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   122
lemma inf_assoc: "(x \<sqinter> y) \<sqinter> z = x \<sqinter> (y \<sqinter> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   123
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   124
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   125
lemma inf_idem[simp]: "x \<sqinter> x = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   126
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   127
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   128
lemma inf_left_idem[simp]: "x \<sqinter> (x \<sqinter> y) = x \<sqinter> y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   129
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   130
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   131
lemma inf_absorb1: "x \<sqsubseteq> y \<Longrightarrow> x \<sqinter> y = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   132
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   133
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   134
lemma inf_absorb2: "y \<sqsubseteq> x \<Longrightarrow> x \<sqinter> y = y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   135
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   136
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   137
lemma inf_left_commute: "x \<sqinter> (y \<sqinter> z) = y \<sqinter> (x \<sqinter> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   138
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   139
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   140
lemmas inf_ACI = inf_commute inf_assoc inf_left_commute inf_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   141
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   142
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   143
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   144
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   145
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   146
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   147
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   148
lemma sup_commute: "(x \<squnion> y) = (y \<squnion> x)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   149
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   150
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   151
lemma sup_assoc: "(x \<squnion> y) \<squnion> z = x \<squnion> (y \<squnion> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   152
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   153
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   154
lemma sup_idem[simp]: "x \<squnion> x = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   155
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   156
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   157
lemma sup_left_idem[simp]: "x \<squnion> (x \<squnion> y) = x \<squnion> y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   158
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   159
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   160
lemma sup_absorb1: "y \<sqsubseteq> x \<Longrightarrow> x \<squnion> y = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   161
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   162
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   163
lemma sup_absorb2: "x \<sqsubseteq> y \<Longrightarrow> x \<squnion> y = y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   164
by blast
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   165
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   166
lemma sup_left_commute: "x \<squnion> (y \<squnion> z) = y \<squnion> (x \<squnion> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   167
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   168
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   169
lemmas sup_ACI = sup_commute sup_assoc sup_left_commute sup_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   170
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   171
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   172
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   173
context lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   174
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   175
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   176
lemma inf_sup_absorb: "x \<sqinter> (x \<squnion> y) = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   177
by(blast intro: antisym inf_le1 inf_greatest sup_ge1)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   178
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   179
lemma sup_inf_absorb: "x \<squnion> (x \<sqinter> y) = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   180
by(blast intro: antisym sup_ge1 sup_least inf_le1)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   181
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   182
lemmas ACI = inf_ACI sup_ACI
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   183
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   184
lemmas inf_sup_ord = inf_le1 inf_le2 sup_ge1 sup_ge2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   185
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   186
text{* Towards distributivity *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   187
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   188
lemma distrib_sup_le: "x \<squnion> (y \<sqinter> z) \<sqsubseteq> (x \<squnion> y) \<sqinter> (x \<squnion> z)"
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   189
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   190
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   191
lemma distrib_inf_le: "(x \<sqinter> y) \<squnion> (x \<sqinter> z) \<sqsubseteq> x \<sqinter> (y \<squnion> z)"
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   192
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   193
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   194
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   195
text{* If you have one of them, you have them all. *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   196
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   197
lemma distrib_imp1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   198
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
   199
shows "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   200
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   201
  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
   202
  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
   203
  also have "\<dots> = ((x \<squnion> y) \<sqinter> x) \<squnion> ((x \<squnion> y) \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   204
    by(simp add:inf_sup_absorb inf_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   205
  also have "\<dots> = (x \<squnion> y) \<sqinter> (x \<squnion> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   206
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   207
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   208
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   209
lemma distrib_imp2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   210
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
   211
shows "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> 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 \<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
   214
  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
   215
  also have "\<dots> = ((x \<sqinter> y) \<squnion> x) \<sqinter> ((x \<sqinter> y) \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   216
    by(simp add:sup_inf_absorb sup_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   217
  also have "\<dots> = (x \<sqinter> y) \<squnion> (x \<sqinter> 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
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   221
(* seems unused *)
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   222
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
   223
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   224
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   225
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   226
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   227
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   228
subsection{* Distributive lattices *}
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   229
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   230
class distrib_lattice = lattice +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   231
  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
   232
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   233
context distrib_lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   234
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   235
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   236
lemma sup_inf_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   237
 "(y \<sqinter> z) \<squnion> x = (y \<squnion> x) \<sqinter> (z \<squnion> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   238
by(simp add:ACI sup_inf_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   239
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   240
lemma inf_sup_distrib1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   241
 "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   242
by(rule distrib_imp2[OF sup_inf_distrib1])
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   243
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   244
lemma inf_sup_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   245
 "(y \<squnion> z) \<sqinter> x = (y \<sqinter> x) \<squnion> (z \<sqinter> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   246
by(simp add:ACI inf_sup_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   247
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   248
lemmas distrib =
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   249
  sup_inf_distrib1 sup_inf_distrib2 inf_sup_distrib1 inf_sup_distrib2
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   250
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   251
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   252
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   253
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   254
subsection {* Uniqueness of inf and sup *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   255
22737
haftmann
parents: 22548
diff changeset
   256
lemma (in lower_semilattice) inf_unique:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   257
  fixes f (infixl "\<triangle>" 70)
22737
haftmann
parents: 22548
diff changeset
   258
  assumes le1: "\<And>x y. x \<triangle> y \<^loc>\<le> x" and le2: "\<And>x y. x \<triangle> y \<^loc>\<le> y"
haftmann
parents: 22548
diff changeset
   259
  and greatest: "\<And>x y z. x \<^loc>\<le> y \<Longrightarrow> x \<^loc>\<le> z \<Longrightarrow> x \<^loc>\<le> y \<triangle> z"
haftmann
parents: 22548
diff changeset
   260
  shows "x \<sqinter> y = x \<triangle> y"
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   261
proof (rule antisym)
22737
haftmann
parents: 22548
diff changeset
   262
  show "x \<triangle> y \<^loc>\<le> x \<sqinter> y" by (rule le_infI) (rule le1 le2)
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   263
next
22737
haftmann
parents: 22548
diff changeset
   264
  have leI: "\<And>x y z. x \<^loc>\<le> y \<Longrightarrow> x \<^loc>\<le> z \<Longrightarrow> x \<^loc>\<le> y \<triangle> z" by (blast intro: greatest)
haftmann
parents: 22548
diff changeset
   265
  show "x \<sqinter> y \<^loc>\<le> x \<triangle> y" by (rule leI) simp_all
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   266
qed
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   267
22737
haftmann
parents: 22548
diff changeset
   268
lemma (in upper_semilattice) sup_unique:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   269
  fixes f (infixl "\<nabla>" 70)
22737
haftmann
parents: 22548
diff changeset
   270
  assumes ge1 [simp]: "\<And>x y. x \<^loc>\<le> x \<nabla> y" and ge2: "\<And>x y. y \<^loc>\<le> x \<nabla> y"
haftmann
parents: 22548
diff changeset
   271
  and least: "\<And>x y z. y \<^loc>\<le> x \<Longrightarrow> z \<^loc>\<le> x \<Longrightarrow> y \<nabla> z \<^loc>\<le> x"
haftmann
parents: 22548
diff changeset
   272
  shows "x \<squnion> y = x \<nabla> y"
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   273
proof (rule antisym)
22737
haftmann
parents: 22548
diff changeset
   274
  show "x \<squnion> y \<^loc>\<le> x \<nabla> y" by (rule le_supI) (rule ge1 ge2)
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   275
next
22737
haftmann
parents: 22548
diff changeset
   276
  have leI: "\<And>x y z. x \<^loc>\<le> z \<Longrightarrow> y \<^loc>\<le> z \<Longrightarrow> x \<nabla> y \<^loc>\<le> z" by (blast intro: least)
haftmann
parents: 22548
diff changeset
   277
  show "x \<nabla> y \<^loc>\<le> x \<squnion> y" by (rule leI) simp_all
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   278
qed
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   279
  
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   280
22916
haftmann
parents: 22737
diff changeset
   281
subsection {* @{const min}/@{const max} on linear orders as
haftmann
parents: 22737
diff changeset
   282
  special case of @{const inf}/@{const sup} *}
haftmann
parents: 22737
diff changeset
   283
haftmann
parents: 22737
diff changeset
   284
lemma (in linorder) distrib_lattice_min_max:
23018
1d29bc31b0cb no special treatment in naming of locale predicates stemming form classes
haftmann
parents: 22916
diff changeset
   285
  "distrib_lattice (op \<^loc>\<le>) (op \<^loc><) min max"
22916
haftmann
parents: 22737
diff changeset
   286
proof unfold_locales
haftmann
parents: 22737
diff changeset
   287
  have aux: "\<And>x y \<Colon> 'a. x \<^loc>< y \<Longrightarrow> y \<^loc>\<le> x \<Longrightarrow> x = y"
haftmann
parents: 22737
diff changeset
   288
    by (auto simp add: less_le antisym)
haftmann
parents: 22737
diff changeset
   289
  fix x y z
haftmann
parents: 22737
diff changeset
   290
  show "max x (min y z) = min (max x y) (max x z)"
haftmann
parents: 22737
diff changeset
   291
  unfolding min_def max_def
haftmann
parents: 22737
diff changeset
   292
    by (auto simp add: intro: antisym, unfold not_le,
haftmann
parents: 22737
diff changeset
   293
      auto intro: less_trans le_less_trans aux)
haftmann
parents: 22737
diff changeset
   294
qed (auto simp add: min_def max_def not_le less_imp_le)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   295
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   296
interpretation min_max:
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   297
  distrib_lattice ["op \<le> \<Colon> 'a\<Colon>linorder \<Rightarrow> 'a \<Rightarrow> bool" "op <" min max]
23087
ad7244663431 rudimentary class target implementation
haftmann
parents: 23018
diff changeset
   298
  by (rule distrib_lattice_min_max [folded ord_class.min ord_class.max])
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   299
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   300
lemma inf_min: "inf = (min \<Colon> 'a\<Colon>{lower_semilattice, linorder} \<Rightarrow> 'a \<Rightarrow> 'a)"
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   301
  by (rule ext)+ auto
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   302
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   303
lemma sup_max: "sup = (max \<Colon> 'a\<Colon>{upper_semilattice, linorder} \<Rightarrow> 'a \<Rightarrow> 'a)"
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   304
  by (rule ext)+ auto
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   305
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   306
lemmas le_maxI1 = min_max.sup_ge1
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   307
lemmas le_maxI2 = min_max.sup_ge2
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   308
 
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   309
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
   310
  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
   311
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   312
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
   313
  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
   314
22454
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   315
text {*
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   316
  Now we have inherited antisymmetry as an intro-rule on all
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   317
  linear orders. This is a problem because it applies to bool, which is
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   318
  undesirable.
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   319
*}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   320
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   321
lemmas [rule del] = min_max.antisym_intro min_max.le_infI min_max.le_supI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   322
  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
   323
  min_max.le_infI1 min_max.le_infI2
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   324
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   325
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   326
subsection {* Bool as lattice *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   327
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   328
instance bool :: distrib_lattice
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   329
  inf_bool_eq: "inf P Q \<equiv> P \<and> Q"
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   330
  sup_bool_eq: "sup P Q \<equiv> P \<or> Q"
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   331
  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
   332
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   333
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   334
text {* duplicates *}
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   335
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   336
lemmas inf_aci = inf_ACI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   337
lemmas sup_aci = sup_ACI
c3654ba76a09 integrated with LOrder.thy
haftmann
parents: 22422
diff changeset
   338
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   339
end