src/HOL/LOrder.thy
author nipkow
Sun, 10 Dec 2006 07:12:26 +0100
changeset 21733 131dd2a27137
parent 21380 c4f79922bc81
child 21734 283461c15fa7
permissions -rw-r--r--
Modified lattice locale
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     1
(*  Title:   HOL/LOrder.thy
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     2
    ID:      $Id$
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     3
    Author:  Steven Obua, TU Muenchen
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     4
*)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     5
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
     6
header "Lattice Orders"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15010
diff changeset
     8
theory LOrder
21249
d594c58e24ed renamed Lattice_Locales to Lattices
haftmann
parents: 21213
diff changeset
     9
imports Lattices
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15010
diff changeset
    10
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    11
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
    12
text {* The theory of lattices developed here is taken from
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
    13
\cite{Birkhoff79}.  *}
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    14
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    15
constdefs
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    16
  is_meet :: "(('a::order) \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> bool"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    17
  "is_meet m == ! a b x. m a b \<le> a \<and> m a b \<le> b \<and> (x \<le> a \<and> x \<le> b \<longrightarrow> x \<le> m a b)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    18
  is_join :: "(('a::order) \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> bool"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    19
  "is_join j == ! a b x. a \<le> j a b \<and> b \<le> j a b \<and> (a \<le> x \<and> b \<le> x \<longrightarrow> j a b \<le> x)"  
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    20
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    21
lemma is_meet_unique: 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    22
  assumes "is_meet u" "is_meet v" shows "u = v"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    23
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    24
  {
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    25
    fix a b :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    26
    assume a: "is_meet a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    27
    assume b: "is_meet b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    28
    {
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    29
      fix x y 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    30
      let ?za = "a x y"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    31
      let ?zb = "b x y"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    32
      from a have za_le: "?za <= x & ?za <= y" by (auto simp add: is_meet_def)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    33
      with b have "?za <= ?zb" by (auto simp add: is_meet_def)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    34
    }
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    35
  }
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    36
  note f_le = this
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    37
  show "u = v" by ((rule ext)+, simp_all add: order_antisym prems f_le) 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    38
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    39
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    40
lemma is_join_unique: 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    41
  assumes "is_join u" "is_join v" shows "u = v"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    42
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    43
  {
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    44
    fix a b :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    45
    assume a: "is_join a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    46
    assume b: "is_join b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    47
    {
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    48
      fix x y 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    49
      let ?za = "a x y"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    50
      let ?zb = "b x y"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    51
      from a have za_le: "x <= ?za & y <= ?za" by (auto simp add: is_join_def)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    52
      with b have "?zb <= ?za" by (auto simp add: is_join_def)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    53
    }
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    54
  }
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    55
  note f_le = this
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    56
  show "u = v" by ((rule ext)+, simp_all add: order_antisym prems f_le) 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    57
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    58
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    59
axclass join_semilorder < order
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    60
  join_exists: "? j. is_join j"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    61
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    62
axclass meet_semilorder < order
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    63
  meet_exists: "? m. is_meet m"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    64
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    65
axclass lorder < join_semilorder, meet_semilorder
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    66
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    67
constdefs
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    68
  meet :: "('a::meet_semilorder) \<Rightarrow> 'a \<Rightarrow> 'a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    69
  "meet == THE m. is_meet m"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    70
  join :: "('a::join_semilorder) \<Rightarrow> 'a \<Rightarrow> 'a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    71
  "join ==  THE j. is_join j"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    72
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    73
lemma is_meet_meet: "is_meet (meet::'a \<Rightarrow> 'a \<Rightarrow> ('a::meet_semilorder))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    74
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    75
  from meet_exists obtain k::"'a \<Rightarrow> 'a \<Rightarrow> 'a" where "is_meet k" ..
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    76
  with is_meet_unique[of _ k] show ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    77
    by (simp add: meet_def theI[of is_meet])    
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    78
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    79
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    80
lemma meet_unique: "(is_meet m) = (m = meet)" 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    81
by (insert is_meet_meet, auto simp add: is_meet_unique)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    82
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    83
lemma is_join_join: "is_join (join::'a \<Rightarrow> 'a \<Rightarrow> ('a::join_semilorder))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    84
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    85
  from join_exists obtain k::"'a \<Rightarrow> 'a \<Rightarrow> 'a" where "is_join k" ..
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    86
  with is_join_unique[of _ k] show ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    87
    by (simp add: join_def theI[of is_join])    
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    88
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    89
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    90
lemma join_unique: "(is_join j) = (j = join)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    91
by (insert is_join_join, auto simp add: is_join_unique)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    92
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
    93
interpretation meet_semilat:
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
    94
  lower_semilattice ["op \<le> \<Colon> 'a\<Colon>meet_semilorder \<Rightarrow> 'a \<Rightarrow> bool" "op <" meet]
21380
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
    95
proof unfold_locales
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
    96
  fix x y z :: "'a\<Colon>meet_semilorder"
21380
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
    97
  from is_meet_meet have "is_meet meet" by blast
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
    98
  note meet = this is_meet_def
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
    99
  from meet show "meet x y \<le> x" by blast
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   100
  from meet show "meet x y \<le> y" by blast
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   101
  from meet show "x \<le> y \<Longrightarrow> x \<le> z \<Longrightarrow> x \<le> meet y z" by blast
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   102
qed
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   103
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   104
interpretation join_semilat:
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   105
  upper_semilattice ["op \<le> \<Colon> 'a\<Colon>join_semilorder \<Rightarrow> 'a \<Rightarrow> bool" "op <" join]
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   106
proof unfold_locales
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   107
  fix x y z :: "'a\<Colon>join_semilorder"
21380
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   108
  from is_join_join have "is_join join" by blast
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   109
  note join = this is_join_def
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   110
  from join show "x \<le> join x y" by blast
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   111
  from join show "y \<le> join x y" by blast
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   112
  from join show "x \<le> z \<Longrightarrow> y \<le> z \<Longrightarrow> join x y \<le> z" by blast
21380
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   113
qed
c4f79922bc81 added interpretation
haftmann
parents: 21312
diff changeset
   114
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   115
declare
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   116
 join_semilat.antisym_intro[rule del] meet_semilat.antisym_intro[rule del]
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   117
 join_semilat.less_eq_supE[rule del] meet_semilat.less_eq_infE[rule del]
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   118
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   119
interpretation meet_join_lat:
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   120
  lattice ["op \<le> \<Colon> 'a\<Colon>lorder \<Rightarrow> 'a \<Rightarrow> bool" "op <" meet join]
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   121
by unfold_locales
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   122
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   123
lemmas meet_left_le = meet_semilat.inf_le1
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   124
lemmas meet_right_le = meet_semilat.inf_le2
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   125
lemmas le_meetI[rule del] = meet_semilat.less_eq_infI
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   126
(* intro! breaks a proof in Hyperreal/SEQ and NumberTheory/IntPrimes *)
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   127
lemmas join_left_le = join_semilat.sup_ge1
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   128
lemmas join_right_le = join_semilat.sup_ge2
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   129
lemmas join_leI[rule del] = join_semilat.less_eq_supI
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   130
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   131
lemmas meet_join_le = meet_left_le meet_right_le join_left_le join_right_le
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   132
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   133
lemmas le_meet = meet_semilat.less_eq_inf_conv
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   134
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   135
lemmas le_join = join_semilat.above_sup_conv
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   136
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   137
lemma is_meet_min: "is_meet (min::'a \<Rightarrow> 'a \<Rightarrow> ('a::linorder))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   138
by (auto simp add: is_meet_def min_def)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   139
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   140
lemma is_join_max: "is_join (max::'a \<Rightarrow> 'a \<Rightarrow> ('a::linorder))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   141
by (auto simp add: is_join_def max_def)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   142
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   143
instance linorder \<subseteq> meet_semilorder
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   144
proof
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   145
  from is_meet_min show "? (m::'a\<Rightarrow>'a\<Rightarrow>('a::linorder)). is_meet m" by auto
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   146
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   147
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   148
instance linorder \<subseteq> join_semilorder
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   149
proof
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   150
  from is_join_max show "? (j::'a\<Rightarrow>'a\<Rightarrow>('a::linorder)). is_join j" by auto 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   151
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   152
    
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   153
instance linorder \<subseteq> lorder ..
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   154
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   155
lemma meet_min: "meet = (min :: 'a\<Rightarrow>'a\<Rightarrow>('a::linorder))" 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   156
by (simp add: is_meet_meet is_meet_min is_meet_unique)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   157
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   158
lemma join_max: "join = (max :: 'a\<Rightarrow>'a\<Rightarrow>('a::linorder))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   159
by (simp add: is_join_join is_join_max is_join_unique)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   160
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   161
lemmas meet_idempotent = meet_semilat.inf_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   162
lemmas join_idempotent = join_semilat.sup_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   163
lemmas meet_comm = meet_semilat.inf_commute
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   164
lemmas join_comm = join_semilat.sup_commute
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   165
lemmas meet_leI1[rule del] = meet_semilat.less_eq_infI1
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   166
lemmas meet_leI2[rule del] = meet_semilat.less_eq_infI2
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   167
lemmas le_joinI1[rule del] = join_semilat.less_eq_supI1
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   168
lemmas le_joinI2[rule del] = join_semilat.less_eq_supI2
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   169
lemmas meet_assoc = meet_semilat.inf_assoc
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   170
lemmas join_assoc = join_semilat.sup_assoc
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   171
lemmas meet_left_comm = meet_semilat.inf_left_commute
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   172
lemmas meet_left_idempotent = meet_semilat.inf_left_idem
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   173
lemmas join_left_comm = join_semilat.sup_left_commute
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   174
lemmas join_left_idempotent= join_semilat.sup_left_idem
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   175
    
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   176
lemmas meet_aci = meet_assoc meet_comm meet_left_comm meet_left_idempotent
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   177
lemmas join_aci = join_assoc join_comm join_left_comm join_left_idempotent
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   178
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   179
lemma le_def_meet: "(x <= y) = (meet x y = x)"
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   180
apply rule
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   181
apply(simp add: order_antisym)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   182
apply(subgoal_tac "meet x y <= y")
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   183
apply(simp)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   184
apply(simp (no_asm))
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   185
done
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   186
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   187
lemma le_def_join: "(x <= y) = (join x y = y)"
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   188
apply rule
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   189
apply(simp add: order_antisym)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   190
apply(subgoal_tac "x <= join x y")
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   191
apply(simp)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   192
apply(simp (no_asm))
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   193
done
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   194
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   195
lemmas join_absorp2 = join_semilat.sup_absorb2
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   196
lemmas join_absorp1 = join_semilat.sup_absorb1
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   197
21733
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   198
lemmas meet_absorp1 = meet_semilat.inf_absorb1
131dd2a27137 Modified lattice locale
nipkow
parents: 21380
diff changeset
   199
lemmas meet_absorp2 = meet_semilat.inf_absorb2
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   200
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   201
lemma meet_join_absorp: "meet x (join x y) = x"
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   202
by(simp add:meet_absorp1)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   203
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   204
lemma join_meet_absorp: "join x (meet x y) = x"
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   205
by(simp add:join_absorp1)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   206
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   207
lemma meet_mono: "y \<le> z \<Longrightarrow> meet x y \<le> meet x z"
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   208
by(simp add:meet_leI2)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   209
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   210
lemma join_mono: "y \<le> z \<Longrightarrow> join x y \<le> join x z"
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   211
by(simp add:le_joinI2)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   212
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   213
lemma distrib_join_le: "join x (meet y z) \<le> meet (join x y) (join x z)" (is "_ <= ?r")
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   214
proof -
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   215
  have a: "x <= ?r" by (simp_all add:le_meetI)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   216
  have b: "meet y z <= ?r" by (simp add:le_joinI2)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   217
  from a b show ?thesis by (simp add: join_leI)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   218
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   219
  
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   220
lemma distrib_meet_le: "join (meet x y) (meet x z) \<le> meet x (join y z)" (is "?l <= _")
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   221
proof -
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   222
  have a: "?l <= x" by (simp_all add: join_leI)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   223
  have b: "?l <= join y z" by (simp add:meet_leI2)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   224
  from a b show ?thesis by (simp add: le_meetI)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   225
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   226
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   227
lemma meet_join_eq_imp_le: "a = c \<or> a = d \<or> b = c \<or> b = d \<Longrightarrow> meet a b \<le> join c d"
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   228
by (auto simp:meet_leI2 meet_leI1)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   229
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   230
lemma modular_le: "x \<le> z \<Longrightarrow> join x (meet y z) \<le> meet (join x y) z" (is "_ \<Longrightarrow> ?t <= _")
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   231
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   232
  assume a: "x <= z"
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   233
  have b: "?t <= join x y" by (simp_all add: join_leI meet_join_eq_imp_le )
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   234
  have c: "?t <= z" by (simp_all add: a join_leI)
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21249
diff changeset
   235
  from b c show ?thesis by (simp add: le_meetI)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   236
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   237
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15010
diff changeset
   238
end