src/HOL/Lattices.thy
author nipkow
Mon, 22 Jan 2007 19:00:29 +0100
changeset 22168 627e7aee1b82
parent 22139 539a63b98f76
child 22384 33a46e6c7f04
permissions -rw-r--r--
simplified proofs
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
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
     6
header {* Lattices via Locales *}
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
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    14
text{* This theory of lattice locales only defines binary sup and inf
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    15
operations. The extension to finite sets is done in theory @{text
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    16
Finite_Set}. In the longer term it may be better to define arbitrary
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    17
sups and infs via @{text THE}. *}
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    18
22068
00bed5ac9884 renamed locale partial_order to order
haftmann
parents: 21734
diff changeset
    19
locale lower_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    20
  fixes inf :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<sqinter>" 70)
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
    21
  assumes inf_le1[simp]: "x \<sqinter> y \<sqsubseteq> x" and inf_le2[simp]: "x \<sqinter> y \<sqsubseteq> y"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    22
  and inf_greatest: "x \<sqsubseteq> y \<Longrightarrow> x \<sqsubseteq> z \<Longrightarrow> x \<sqsubseteq> y \<sqinter> z"
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    23
22068
00bed5ac9884 renamed locale partial_order to order
haftmann
parents: 21734
diff changeset
    24
locale upper_semilattice = order +
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    25
  fixes sup :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<squnion>" 65)
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
    26
  assumes sup_ge1[simp]: "x \<sqsubseteq> x \<squnion> y" 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"
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    28
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    29
locale lattice = lower_semilattice + upper_semilattice
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    30
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    31
subsubsection{* Intro and elim rules*}
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    32
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    33
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    34
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    35
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    36
lemmas antisym_intro[intro!] = antisym
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    37
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    38
lemma le_infI1[intro]: "a \<sqsubseteq> x \<Longrightarrow> a \<sqinter> b \<sqsubseteq> x"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    39
apply(subgoal_tac "a \<sqinter> b \<sqsubseteq> a")
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    40
 apply(blast intro:trans)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    41
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    42
done
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    43
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    44
lemma le_infI2[intro]: "b \<sqsubseteq> x \<Longrightarrow> a \<sqinter> b \<sqsubseteq> x"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    45
apply(subgoal_tac "a \<sqinter> b \<sqsubseteq> b")
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    46
 apply(blast intro:trans)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    47
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    48
done
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    49
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    50
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
    51
by(blast intro: inf_greatest)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    52
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    53
lemma le_infE[elim!]: "x \<sqsubseteq> a \<sqinter> b \<Longrightarrow> (x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> b \<Longrightarrow> P) \<Longrightarrow> P"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    54
by(blast intro: trans)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    55
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    56
lemma le_inf_iff [simp]:
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    57
 "x \<sqsubseteq> y \<sqinter> z = (x \<sqsubseteq> y \<and> x \<sqsubseteq> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    58
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    59
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    60
lemma le_iff_inf: "(x \<sqsubseteq> y) = (x \<sqinter> y = x)"
22168
627e7aee1b82 simplified proofs
nipkow
parents: 22139
diff changeset
    61
by(blast dest:eq_iff[THEN iffD1])
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    62
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    63
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    64
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    65
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    66
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    67
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    68
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    69
lemmas antisym_intro[intro!] = antisym
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    70
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    71
lemma le_supI1[intro]: "x \<sqsubseteq> a \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    72
apply(subgoal_tac "a \<sqsubseteq> a \<squnion> b")
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    73
 apply(blast intro:trans)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    74
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    75
done
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    76
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    77
lemma le_supI2[intro]: "x \<sqsubseteq> b \<Longrightarrow> x \<sqsubseteq> a \<squnion> b"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    78
apply(subgoal_tac "b \<sqsubseteq> a \<squnion> b")
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    79
 apply(blast intro:trans)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    80
apply simp
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    81
done
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    82
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    83
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
    84
by(blast intro: sup_least)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    85
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    86
lemma le_supE[elim!]: "a \<squnion> b \<sqsubseteq> x \<Longrightarrow> (a \<sqsubseteq> x \<Longrightarrow> b \<sqsubseteq> x \<Longrightarrow> P) \<Longrightarrow> P"
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    87
by(blast intro: trans)
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
    88
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    89
lemma ge_sup_conv[simp]:
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    90
 "x \<squnion> y \<sqsubseteq> z = (x \<sqsubseteq> z \<and> y \<sqsubseteq> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    91
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    92
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    93
lemma le_iff_sup: "(x \<sqsubseteq> y) = (x \<squnion> y = y)"
22168
627e7aee1b82 simplified proofs
nipkow
parents: 22139
diff changeset
    94
by(blast dest:eq_iff[THEN iffD1])
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
    95
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    96
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    97
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    98
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
    99
subsubsection{* Equational laws *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   100
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   101
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   102
context lower_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   103
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   104
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   105
lemma inf_commute: "(x \<sqinter> y) = (y \<sqinter> x)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   106
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   107
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   108
lemma inf_assoc: "(x \<sqinter> y) \<sqinter> z = x \<sqinter> (y \<sqinter> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   109
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   110
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   111
lemma inf_idem[simp]: "x \<sqinter> x = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   112
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   113
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   114
lemma inf_left_idem[simp]: "x \<sqinter> (x \<sqinter> y) = x \<sqinter> y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   115
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   116
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   117
lemma inf_absorb1: "x \<sqsubseteq> y \<Longrightarrow> x \<sqinter> y = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   118
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   119
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   120
lemma inf_absorb2: "y \<sqsubseteq> x \<Longrightarrow> x \<sqinter> y = y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   121
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   122
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   123
lemma inf_left_commute: "x \<sqinter> (y \<sqinter> z) = y \<sqinter> (x \<sqinter> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   124
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   125
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   126
lemmas inf_ACI = inf_commute inf_assoc inf_left_commute inf_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   127
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   128
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   129
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   130
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   131
context upper_semilattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   132
begin
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   133
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   134
lemma sup_commute: "(x \<squnion> y) = (y \<squnion> x)"
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 sup_assoc: "(x \<squnion> y) \<squnion> z = x \<squnion> (y \<squnion> 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
lemma sup_idem[simp]: "x \<squnion> x = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   141
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   142
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   143
lemma sup_left_idem[simp]: "x \<squnion> (x \<squnion> y) = x \<squnion> y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   144
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   145
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   146
lemma sup_absorb1: "y \<sqsubseteq> x \<Longrightarrow> x \<squnion> y = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   147
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   148
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   149
lemma sup_absorb2: "x \<sqsubseteq> y \<Longrightarrow> x \<squnion> y = y"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   150
by blast
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   151
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   152
lemma sup_left_commute: "x \<squnion> (y \<squnion> z) = y \<squnion> (x \<squnion> z)"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   153
by blast
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   154
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   155
lemmas sup_ACI = sup_commute sup_assoc sup_left_commute sup_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   156
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   157
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   158
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   159
context lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   160
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   161
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   162
lemma inf_sup_absorb: "x \<sqinter> (x \<squnion> y) = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   163
by(blast intro: antisym inf_le1 inf_greatest sup_ge1)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   164
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   165
lemma sup_inf_absorb: "x \<squnion> (x \<sqinter> y) = x"
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   166
by(blast intro: antisym sup_ge1 sup_least inf_le1)
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   167
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   168
lemmas ACI = inf_ACI sup_ACI
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   169
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   170
text{* Towards distributivity *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   171
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   172
lemma distrib_sup_le: "x \<squnion> (y \<sqinter> z) \<sqsubseteq> (x \<squnion> y) \<sqinter> (x \<squnion> z)"
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   173
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   174
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   175
lemma distrib_inf_le: "(x \<sqinter> y) \<squnion> (x \<sqinter> z) \<sqsubseteq> x \<sqinter> (y \<squnion> z)"
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   176
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   177
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   178
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   179
text{* If you have one of them, you have them all. *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   180
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   181
lemma distrib_imp1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   182
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
   183
shows "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   184
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   185
  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
   186
  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
   187
  also have "\<dots> = ((x \<squnion> y) \<sqinter> x) \<squnion> ((x \<squnion> y) \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   188
    by(simp add:inf_sup_absorb inf_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   189
  also have "\<dots> = (x \<squnion> y) \<sqinter> (x \<squnion> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   190
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   191
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   192
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   193
lemma distrib_imp2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   194
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
   195
shows "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   196
proof-
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   197
  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
   198
  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
   199
  also have "\<dots> = ((x \<sqinter> y) \<squnion> x) \<sqinter> ((x \<sqinter> y) \<squnion> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   200
    by(simp add:sup_inf_absorb sup_commute)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   201
  also have "\<dots> = (x \<sqinter> y) \<squnion> (x \<sqinter> z)" by(simp add:D)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   202
  finally show ?thesis .
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   203
qed
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   204
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   205
(* seems unused *)
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   206
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
   207
by blast
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   208
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   209
end
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   210
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   211
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   212
subsection{* Distributive lattices *}
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   213
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   214
locale distrib_lattice = lattice +
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   215
  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
   216
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   217
context distrib_lattice
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   218
begin
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   219
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   220
lemma sup_inf_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   221
 "(y \<sqinter> z) \<squnion> x = (y \<squnion> x) \<sqinter> (z \<squnion> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   222
by(simp add:ACI sup_inf_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   223
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   224
lemma inf_sup_distrib1:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   225
 "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   226
by(rule distrib_imp2[OF sup_inf_distrib1])
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   227
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   228
lemma inf_sup_distrib2:
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   229
 "(y \<squnion> z) \<sqinter> x = (y \<sqinter> x) \<squnion> (z \<sqinter> x)"
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   230
by(simp add:ACI inf_sup_distrib1)
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   231
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   232
lemmas distrib =
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   233
  sup_inf_distrib1 sup_inf_distrib2 inf_sup_distrib1 inf_sup_distrib2
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   234
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   235
end
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   236
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   237
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   238
subsection {* min/max on linear orders as special case of inf/sup *}
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   239
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   240
interpretation min_max:
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   241
  distrib_lattice ["op \<le>" "op <" "min \<Colon> 'a\<Colon>linorder \<Rightarrow> 'a \<Rightarrow> 'a" "max"]
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   242
apply unfold_locales
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   243
apply (simp add: min_def linorder_not_le order_less_imp_le)
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   244
apply (simp add: min_def linorder_not_le order_less_imp_le)
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   245
apply (simp add: min_def linorder_not_le order_less_imp_le)
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   246
apply (simp add: max_def linorder_not_le order_less_imp_le)
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   247
apply (simp add: max_def linorder_not_le order_less_imp_le)
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   248
unfolding min_def max_def by auto
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   249
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   250
text{* Now we have inherited antisymmetry as an intro-rule on all
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   251
linear orders. This is a problem because it applies to bool, which is
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   252
undesirable. *}
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   253
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   254
declare
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   255
 min_max.antisym_intro[rule del]
21734
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   256
 min_max.le_infI[rule del] min_max.le_supI[rule del]
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   257
 min_max.le_supE[rule del] min_max.le_infE[rule del]
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   258
 min_max.le_supI1[rule del] min_max.le_supI2[rule del]
283461c15fa7 renaming
nipkow
parents: 21733
diff changeset
   259
 min_max.le_infI1[rule del] min_max.le_infI2[rule del]
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   260
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   261
lemmas le_maxI1 = min_max.sup_ge1
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   262
lemmas le_maxI2 = min_max.sup_ge2
21381
79e065f2be95 reworking of min/max lemmas
haftmann
parents: 21312
diff changeset
   263
 
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   264
lemmas max_ac = min_max.sup_assoc min_max.sup_commute
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   265
               mk_left_commute[of max,OF min_max.sup_assoc min_max.sup_commute]
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   266
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   267
lemmas min_ac = min_max.inf_assoc min_max.inf_commute
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   268
               mk_left_commute[of min,OF min_max.inf_assoc min_max.inf_commute]
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   269
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   270
text {* ML legacy bindings *}
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   271
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   272
ML {*
22139
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   273
val Least_def = @{thm Least_def}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   274
val Least_equality = @{thm Least_equality}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   275
val min_def = @{thm min_def}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   276
val min_of_mono = @{thm min_of_mono}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   277
val max_def = @{thm max_def}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   278
val max_of_mono = @{thm max_of_mono}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   279
val min_leastL = @{thm min_leastL}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   280
val max_leastL = @{thm max_leastL}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   281
val min_leastR = @{thm min_leastR}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   282
val max_leastR = @{thm max_leastR}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   283
val le_max_iff_disj = @{thm le_max_iff_disj}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   284
val le_maxI1 = @{thm le_maxI1}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   285
val le_maxI2 = @{thm le_maxI2}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   286
val less_max_iff_disj = @{thm less_max_iff_disj}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   287
val max_less_iff_conj = @{thm max_less_iff_conj}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   288
val min_less_iff_conj = @{thm min_less_iff_conj}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   289
val min_le_iff_disj = @{thm min_le_iff_disj}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   290
val min_less_iff_disj = @{thm min_less_iff_disj}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   291
val split_min = @{thm split_min}
539a63b98f76 tuned ML setup;
wenzelm
parents: 22068
diff changeset
   292
val split_max = @{thm split_max}
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   293
*}
131dd2a27137 Modified lattice locale
nipkow
parents: 21619
diff changeset
   294
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents:
diff changeset
   295
end