src/HOL/ex/Tarski.thy
author boehmes
Mon, 17 Aug 2009 10:59:12 +0200
changeset 32381 11542bebe4d4
parent 31754 b5260f5272a4
child 40945 b8703f63bfb2
permissions -rw-r--r--
made Mirabelle a component
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
     1
(*  Title:      HOL/ex/Tarski.thy
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
     3
    Author:     Florian Kammüller, Cambridge University Computer Laboratory
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
     4
*)
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
     5
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
     6
header {* The Full Theorem of Tarski *}
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
     7
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
     8
theory Tarski
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
     9
imports Main FuncSet
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
    10
begin
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    11
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    12
text {*
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    13
  Minimal version of lattice theory plus the full theorem of Tarski:
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    14
  The fixedpoints of a complete lattice themselves form a complete
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    15
  lattice.
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    16
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    17
  Illustrates first-class theories, using the Sigma representation of
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    18
  structures.  Tidied and converted to Isar by lcp.
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    19
*}
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    20
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    21
record 'a potype =
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    22
  pset  :: "'a set"
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    23
  order :: "('a * 'a) set"
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    24
19736
wenzelm
parents: 19316
diff changeset
    25
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    26
  monotone :: "['a => 'a, 'a set, ('a *'a)set] => bool" where
19736
wenzelm
parents: 19316
diff changeset
    27
  "monotone f A r = (\<forall>x\<in>A. \<forall>y\<in>A. (x, y): r --> ((f x), (f y)) : r)"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    28
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    29
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    30
  least :: "['a => bool, 'a potype] => 'a" where
19736
wenzelm
parents: 19316
diff changeset
    31
  "least P po = (SOME x. x: pset po & P x &
wenzelm
parents: 19316
diff changeset
    32
                       (\<forall>y \<in> pset po. P y --> (x,y): order po))"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    33
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    34
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    35
  greatest :: "['a => bool, 'a potype] => 'a" where
19736
wenzelm
parents: 19316
diff changeset
    36
  "greatest P po = (SOME x. x: pset po & P x &
wenzelm
parents: 19316
diff changeset
    37
                          (\<forall>y \<in> pset po. P y --> (y,x): order po))"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    38
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    39
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    40
  lub  :: "['a set, 'a potype] => 'a" where
19736
wenzelm
parents: 19316
diff changeset
    41
  "lub S po = least (%x. \<forall>y\<in>S. (y,x): order po) po"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    42
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    43
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    44
  glb  :: "['a set, 'a potype] => 'a" where
19736
wenzelm
parents: 19316
diff changeset
    45
  "glb S po = greatest (%x. \<forall>y\<in>S. (x,y): order po) po"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    46
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    47
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    48
  isLub :: "['a set, 'a potype, 'a] => bool" where
19736
wenzelm
parents: 19316
diff changeset
    49
  "isLub S po = (%L. (L: pset po & (\<forall>y\<in>S. (y,L): order po) &
wenzelm
parents: 19316
diff changeset
    50
                   (\<forall>z\<in>pset po. (\<forall>y\<in>S. (y,z): order po) --> (L,z): order po)))"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    51
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    52
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    53
  isGlb :: "['a set, 'a potype, 'a] => bool" where
19736
wenzelm
parents: 19316
diff changeset
    54
  "isGlb S po = (%G. (G: pset po & (\<forall>y\<in>S. (G,y): order po) &
wenzelm
parents: 19316
diff changeset
    55
                 (\<forall>z \<in> pset po. (\<forall>y\<in>S. (z,y): order po) --> (z,G): order po)))"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    56
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    57
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    58
  "fix"    :: "[('a => 'a), 'a set] => 'a set" where
19736
wenzelm
parents: 19316
diff changeset
    59
  "fix f A  = {x. x: A & f x = x}"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    60
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    61
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    62
  interval :: "[('a*'a) set,'a, 'a ] => 'a set" where
19736
wenzelm
parents: 19316
diff changeset
    63
  "interval r a b = {x. (a,x): r & (x,b): r}"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    64
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    65
19736
wenzelm
parents: 19316
diff changeset
    66
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    67
  Bot :: "'a potype => 'a" where
19736
wenzelm
parents: 19316
diff changeset
    68
  "Bot po = least (%x. True) po"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    69
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    70
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    71
  Top :: "'a potype => 'a" where
19736
wenzelm
parents: 19316
diff changeset
    72
  "Top po = greatest (%x. True) po"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    73
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    74
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    75
  PartialOrder :: "('a potype) set" where
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
    76
  "PartialOrder = {P. refl_on (pset P) (order P) & antisym (order P) &
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
    77
                       trans (order P)}"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    78
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    79
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    80
  CompleteLattice :: "('a potype) set" where
19736
wenzelm
parents: 19316
diff changeset
    81
  "CompleteLattice = {cl. cl: PartialOrder &
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
    82
                        (\<forall>S. S \<subseteq> pset cl --> (\<exists>L. isLub S cl L)) &
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
    83
                        (\<forall>S. S \<subseteq> pset cl --> (\<exists>G. isGlb S cl G))}"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    84
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    85
definition
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
    86
  CLF_set :: "('a potype * ('a => 'a)) set" where
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
    87
  "CLF_set = (SIGMA cl: CompleteLattice.
19736
wenzelm
parents: 19316
diff changeset
    88
            {f. f: pset cl -> pset cl & monotone f (pset cl) (order cl)})"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
    89
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    90
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    91
  induced :: "['a set, ('a * 'a) set] => ('a *'a)set" where
19736
wenzelm
parents: 19316
diff changeset
    92
  "induced A r = {(a,b). a : A & b: A & (a,b): r}"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    93
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
    94
19736
wenzelm
parents: 19316
diff changeset
    95
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
    96
  sublattice :: "('a potype * 'a set)set" where
19736
wenzelm
parents: 19316
diff changeset
    97
  "sublattice =
wenzelm
parents: 19316
diff changeset
    98
      (SIGMA cl: CompleteLattice.
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
    99
          {S. S \<subseteq> pset cl &
19736
wenzelm
parents: 19316
diff changeset
   100
           (| pset = S, order = induced S (order cl) |): CompleteLattice})"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   101
19736
wenzelm
parents: 19316
diff changeset
   102
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
   103
  sublat :: "['a set, 'a potype] => bool"  ("_ <<= _" [51,50]50) where
19736
wenzelm
parents: 19316
diff changeset
   104
  "S <<= cl == S : sublattice `` {cl}"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   105
19736
wenzelm
parents: 19316
diff changeset
   106
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21232
diff changeset
   107
  dual :: "'a potype => 'a potype" where
19736
wenzelm
parents: 19316
diff changeset
   108
  "dual po = (| pset = pset po, order = converse (order po) |)"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   109
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   110
locale S =
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   111
  fixes cl :: "'a potype"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   112
    and A  :: "'a set"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   113
    and r  :: "('a * 'a) set"
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   114
  defines A_def: "A == pset cl"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   115
     and  r_def: "r == order cl"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   116
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   117
locale PO = S +
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   118
  assumes cl_po:  "cl : PartialOrder"
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   119
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   120
locale CL = S +
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   121
  assumes cl_co:  "cl : CompleteLattice"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   122
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   123
sublocale CL < PO
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   124
apply (simp_all add: A_def r_def)
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   125
apply unfold_locales
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   126
using cl_co unfolding CompleteLattice_def by auto
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   127
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   128
locale CLF = S +
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   129
  fixes f :: "'a => 'a"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   130
    and P :: "'a set"
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   131
  assumes f_cl:  "(cl,f) : CLF_set" (*was the equivalent "f : CLF_set``{cl}"*)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   132
  defines P_def: "P == fix f A"
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   133
29234
60f7fb56f8cd More porting to new locales.
ballarin
parents: 28823
diff changeset
   134
sublocale CLF < CL
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   135
apply (simp_all add: A_def r_def)
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   136
apply unfold_locales
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   137
using f_cl unfolding CLF_set_def by auto
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   138
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   139
locale Tarski = CLF +
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   140
  fixes Y     :: "'a set"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   141
    and intY1 :: "'a set"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   142
    and v     :: "'a"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   143
  assumes
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   144
    Y_ss: "Y \<subseteq> P"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   145
  defines
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   146
    intY1_def: "intY1 == interval r (lub Y cl) (Top cl)"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   147
    and v_def: "v == glb {x. ((%x: intY1. f x) x, x): induced intY1 r &
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   148
                             x: intY1}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   149
                      (| pset=intY1, order=induced intY1 r|)"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   150
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   151
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   152
subsection {* Partial Order *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   153
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   154
lemma (in PO) dual:
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   155
  "PO (dual cl)"
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   156
apply unfold_locales
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   157
using cl_po
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   158
unfolding PartialOrder_def dual_def
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   159
by auto
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   160
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   161
lemma (in PO) PO_imp_refl_on [simp]: "refl_on A r"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   162
apply (insert cl_po)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   163
apply (simp add: PartialOrder_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   164
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   165
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   166
lemma (in PO) PO_imp_sym [simp]: "antisym r"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   167
apply (insert cl_po)
19316
c04b75d482c4 Slight simplification of proofs
paulson
parents: 18750
diff changeset
   168
apply (simp add: PartialOrder_def r_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   169
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   170
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   171
lemma (in PO) PO_imp_trans [simp]: "trans r"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   172
apply (insert cl_po)
19316
c04b75d482c4 Slight simplification of proofs
paulson
parents: 18750
diff changeset
   173
apply (simp add: PartialOrder_def r_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   174
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   175
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   176
lemma (in PO) reflE: "x \<in> A ==> (x, x) \<in> r"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   177
apply (insert cl_po)
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   178
apply (simp add: PartialOrder_def refl_on_def A_def r_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   179
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   180
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   181
lemma (in PO) antisymE: "[| (a, b) \<in> r; (b, a) \<in> r |] ==> a = b"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   182
apply (insert cl_po)
19316
c04b75d482c4 Slight simplification of proofs
paulson
parents: 18750
diff changeset
   183
apply (simp add: PartialOrder_def antisym_def r_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   184
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   185
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   186
lemma (in PO) transE: "[| (a, b) \<in> r; (b, c) \<in> r|] ==> (a,c) \<in> r"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   187
apply (insert cl_po)
19316
c04b75d482c4 Slight simplification of proofs
paulson
parents: 18750
diff changeset
   188
apply (simp add: PartialOrder_def r_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   189
apply (unfold trans_def, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   190
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   191
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   192
lemma (in PO) monotoneE:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   193
     "[| monotone f A r;  x \<in> A; y \<in> A; (x, y) \<in> r |] ==> (f x, f y) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   194
by (simp add: monotone_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   195
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   196
lemma (in PO) po_subset_po:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   197
     "S \<subseteq> A ==> (| pset = S, order = induced S r |) \<in> PartialOrder"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   198
apply (simp (no_asm) add: PartialOrder_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   199
apply auto
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   200
-- {* refl *}
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   201
apply (simp add: refl_on_def induced_def)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   202
apply (blast intro: reflE)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   203
-- {* antisym *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   204
apply (simp add: antisym_def induced_def)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   205
apply (blast intro: antisymE)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   206
-- {* trans *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   207
apply (simp add: trans_def induced_def)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   208
apply (blast intro: transE)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   209
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   210
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   211
lemma (in PO) indE: "[| (x, y) \<in> induced S r; S \<subseteq> A |] ==> (x, y) \<in> r"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   212
by (simp add: add: induced_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   213
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   214
lemma (in PO) indI: "[| (x, y) \<in> r; x \<in> S; y \<in> S |] ==> (x, y) \<in> induced S r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   215
by (simp add: add: induced_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   216
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   217
lemma (in CL) CL_imp_ex_isLub: "S \<subseteq> A ==> \<exists>L. isLub S cl L"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   218
apply (insert cl_co)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   219
apply (simp add: CompleteLattice_def A_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   220
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   221
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   222
declare (in CL) cl_co [simp]
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   223
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   224
lemma isLub_lub: "(\<exists>L. isLub S cl L) = isLub S cl (lub S cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   225
by (simp add: lub_def least_def isLub_def some_eq_ex [symmetric])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   226
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   227
lemma isGlb_glb: "(\<exists>G. isGlb S cl G) = isGlb S cl (glb S cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   228
by (simp add: glb_def greatest_def isGlb_def some_eq_ex [symmetric])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   229
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   230
lemma isGlb_dual_isLub: "isGlb S cl = isLub S (dual cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   231
by (simp add: isLub_def isGlb_def dual_def converse_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   232
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   233
lemma isLub_dual_isGlb: "isLub S cl = isGlb S (dual cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   234
by (simp add: isLub_def isGlb_def dual_def converse_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   235
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   236
lemma (in PO) dualPO: "dual cl \<in> PartialOrder"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   237
apply (insert cl_po)
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   238
apply (simp add: PartialOrder_def dual_def refl_on_converse
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   239
                 trans_converse antisym_converse)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   240
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   241
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   242
lemma Rdual:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   243
     "\<forall>S. (S \<subseteq> A -->( \<exists>L. isLub S (| pset = A, order = r|) L))
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   244
      ==> \<forall>S. (S \<subseteq> A --> (\<exists>G. isGlb S (| pset = A, order = r|) G))"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   245
apply safe
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   246
apply (rule_tac x = "lub {y. y \<in> A & (\<forall>k \<in> S. (y, k) \<in> r)}
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   247
                      (|pset = A, order = r|) " in exI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   248
apply (drule_tac x = "{y. y \<in> A & (\<forall>k \<in> S. (y,k) \<in> r) }" in spec)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   249
apply (drule mp, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   250
apply (simp add: isLub_lub isGlb_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   251
apply (simp add: isLub_def, blast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   252
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   253
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   254
lemma lub_dual_glb: "lub S cl = glb S (dual cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   255
by (simp add: lub_def glb_def least_def greatest_def dual_def converse_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   256
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   257
lemma glb_dual_lub: "glb S cl = lub S (dual cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   258
by (simp add: lub_def glb_def least_def greatest_def dual_def converse_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   259
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   260
lemma CL_subset_PO: "CompleteLattice \<subseteq> PartialOrder"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   261
by (simp add: PartialOrder_def CompleteLattice_def, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   262
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   263
lemmas CL_imp_PO = CL_subset_PO [THEN subsetD]
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   264
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   265
(*declare CL_imp_PO [THEN PO.PO_imp_refl, simp]
21232
faacfd4392b5 fixed locale fact references;
wenzelm
parents: 19736
diff changeset
   266
declare CL_imp_PO [THEN PO.PO_imp_sym, simp]
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   267
declare CL_imp_PO [THEN PO.PO_imp_trans, simp]*)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   268
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   269
lemma (in CL) CO_refl_on: "refl_on A r"
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   270
by (rule PO_imp_refl_on)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   271
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   272
lemma (in CL) CO_antisym: "antisym r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   273
by (rule PO_imp_sym)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   274
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   275
lemma (in CL) CO_trans: "trans r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   276
by (rule PO_imp_trans)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   277
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   278
lemma CompleteLatticeI:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   279
     "[| po \<in> PartialOrder; (\<forall>S. S \<subseteq> pset po --> (\<exists>L. isLub S po L));
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   280
         (\<forall>S. S \<subseteq> pset po --> (\<exists>G. isGlb S po G))|]
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   281
      ==> po \<in> CompleteLattice"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   282
apply (unfold CompleteLattice_def, blast)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   283
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   284
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   285
lemma (in CL) CL_dualCL: "dual cl \<in> CompleteLattice"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   286
apply (insert cl_co)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   287
apply (simp add: CompleteLattice_def dual_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   288
apply (fold dual_def)
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   289
apply (simp add: isLub_dual_isGlb [symmetric] isGlb_dual_isLub [symmetric]
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   290
                 dualPO)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   291
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   292
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   293
lemma (in PO) dualA_iff: "pset (dual cl) = pset cl"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   294
by (simp add: dual_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   295
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   296
lemma (in PO) dualr_iff: "((x, y) \<in> (order(dual cl))) = ((y, x) \<in> order cl)"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   297
by (simp add: dual_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   298
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   299
lemma (in PO) monotone_dual:
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   300
     "monotone f (pset cl) (order cl) 
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   301
     ==> monotone f (pset (dual cl)) (order(dual cl))"
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   302
by (simp add: monotone_def dualA_iff dualr_iff)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   303
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   304
lemma (in PO) interval_dual:
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   305
     "[| x \<in> A; y \<in> A|] ==> interval r x y = interval (order(dual cl)) y x"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   306
apply (simp add: interval_def dualr_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   307
apply (fold r_def, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   308
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   309
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   310
lemma (in PO) trans:
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   311
  "(x, y) \<in> r \<Longrightarrow> (y, z) \<in> r \<Longrightarrow> (x, z) \<in> r"
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   312
using cl_po apply (auto simp add: PartialOrder_def r_def)
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   313
unfolding trans_def by blast 
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   314
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   315
lemma (in PO) interval_not_empty:
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   316
  "interval r a b \<noteq> {} ==> (a, b) \<in> r"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   317
apply (simp add: interval_def)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   318
using trans by blast
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   319
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   320
lemma (in PO) interval_imp_mem: "x \<in> interval r a b ==> (a, x) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   321
by (simp add: interval_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   322
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   323
lemma (in PO) left_in_interval:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   324
     "[| a \<in> A; b \<in> A; interval r a b \<noteq> {} |] ==> a \<in> interval r a b"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   325
apply (simp (no_asm_simp) add: interval_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   326
apply (simp add: PO_imp_trans interval_not_empty)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   327
apply (simp add: reflE)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   328
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   329
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   330
lemma (in PO) right_in_interval:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   331
     "[| a \<in> A; b \<in> A; interval r a b \<noteq> {} |] ==> b \<in> interval r a b"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   332
apply (simp (no_asm_simp) add: interval_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   333
apply (simp add: PO_imp_trans interval_not_empty)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   334
apply (simp add: reflE)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   335
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   336
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   337
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   338
subsection {* sublattice *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   339
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   340
lemma (in PO) sublattice_imp_CL:
18750
91a328803c6a fixed the <<= notation
paulson
parents: 18705
diff changeset
   341
     "S <<= cl  ==> (| pset = S, order = induced S r |) \<in> CompleteLattice"
19316
c04b75d482c4 Slight simplification of proofs
paulson
parents: 18750
diff changeset
   342
by (simp add: sublattice_def CompleteLattice_def r_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   343
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   344
lemma (in CL) sublatticeI:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   345
     "[| S \<subseteq> A; (| pset = S, order = induced S r |) \<in> CompleteLattice |]
18750
91a328803c6a fixed the <<= notation
paulson
parents: 18705
diff changeset
   346
      ==> S <<= cl"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   347
by (simp add: sublattice_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   348
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   349
lemma (in CL) dual:
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   350
  "CL (dual cl)"
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   351
apply unfold_locales
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   352
using cl_co unfolding CompleteLattice_def
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   353
apply (simp add: dualPO isGlb_dual_isLub [symmetric] isLub_dual_isGlb [symmetric] dualA_iff)
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   354
done
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   355
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   356
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   357
subsection {* lub *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   358
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   359
lemma (in CL) lub_unique: "[| S \<subseteq> A; isLub S cl x; isLub S cl L|] ==> x = L"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   360
apply (rule antisymE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   361
apply (auto simp add: isLub_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   362
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   363
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   364
lemma (in CL) lub_upper: "[|S \<subseteq> A; x \<in> S|] ==> (x, lub S cl) \<in> r"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   365
apply (rule CL_imp_ex_isLub [THEN exE], assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   366
apply (unfold lub_def least_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   367
apply (rule some_equality [THEN ssubst])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   368
  apply (simp add: isLub_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   369
 apply (simp add: lub_unique A_def isLub_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   370
apply (simp add: isLub_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   371
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   372
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   373
lemma (in CL) lub_least:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   374
     "[| S \<subseteq> A; L \<in> A; \<forall>x \<in> S. (x,L) \<in> r |] ==> (lub S cl, L) \<in> r"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   375
apply (rule CL_imp_ex_isLub [THEN exE], assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   376
apply (unfold lub_def least_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   377
apply (rule_tac s=x in some_equality [THEN ssubst])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   378
  apply (simp add: isLub_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   379
 apply (simp add: lub_unique A_def isLub_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   380
apply (simp add: isLub_def r_def A_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   381
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   382
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   383
lemma (in CL) lub_in_lattice: "S \<subseteq> A ==> lub S cl \<in> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   384
apply (rule CL_imp_ex_isLub [THEN exE], assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   385
apply (unfold lub_def least_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   386
apply (subst some_equality)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   387
apply (simp add: isLub_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   388
prefer 2 apply (simp add: isLub_def A_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   389
apply (simp add: lub_unique A_def isLub_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   390
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   391
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   392
lemma (in CL) lubI:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   393
     "[| S \<subseteq> A; L \<in> A; \<forall>x \<in> S. (x,L) \<in> r;
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   394
         \<forall>z \<in> A. (\<forall>y \<in> S. (y,z) \<in> r) --> (L,z) \<in> r |] ==> L = lub S cl"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   395
apply (rule lub_unique, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   396
apply (simp add: isLub_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   397
apply (unfold isLub_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   398
apply (rule conjI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   399
apply (fold A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   400
apply (rule lub_in_lattice, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   401
apply (simp add: lub_upper lub_least)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   402
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   403
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   404
lemma (in CL) lubIa: "[| S \<subseteq> A; isLub S cl L |] ==> L = lub S cl"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   405
by (simp add: lubI isLub_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   406
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   407
lemma (in CL) isLub_in_lattice: "isLub S cl L ==> L \<in> A"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   408
by (simp add: isLub_def  A_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   409
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   410
lemma (in CL) isLub_upper: "[|isLub S cl L; y \<in> S|] ==> (y, L) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   411
by (simp add: isLub_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   412
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   413
lemma (in CL) isLub_least:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   414
     "[| isLub S cl L; z \<in> A; \<forall>y \<in> S. (y, z) \<in> r|] ==> (L, z) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   415
by (simp add: isLub_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   416
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   417
lemma (in CL) isLubI:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   418
     "[| L \<in> A; \<forall>y \<in> S. (y, L) \<in> r;
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   419
         (\<forall>z \<in> A. (\<forall>y \<in> S. (y, z):r) --> (L, z) \<in> r)|] ==> isLub S cl L"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   420
by (simp add: isLub_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   421
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   422
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   423
subsection {* glb *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   424
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   425
lemma (in CL) glb_in_lattice: "S \<subseteq> A ==> glb S cl \<in> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   426
apply (subst glb_dual_lub)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   427
apply (simp add: A_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   428
apply (rule dualA_iff [THEN subst])
21232
faacfd4392b5 fixed locale fact references;
wenzelm
parents: 19736
diff changeset
   429
apply (rule CL.lub_in_lattice)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   430
apply (rule dual)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   431
apply (simp add: dualA_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   432
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   433
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   434
lemma (in CL) glb_lower: "[|S \<subseteq> A; x \<in> S|] ==> (glb S cl, x) \<in> r"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   435
apply (subst glb_dual_lub)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   436
apply (simp add: r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   437
apply (rule dualr_iff [THEN subst])
21232
faacfd4392b5 fixed locale fact references;
wenzelm
parents: 19736
diff changeset
   438
apply (rule CL.lub_upper)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   439
apply (rule dual)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   440
apply (simp add: dualA_iff A_def, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   441
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   442
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   443
text {*
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   444
  Reduce the sublattice property by using substructural properties;
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   445
  abandoned see @{text "Tarski_4.ML"}.
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   446
*}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   447
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   448
lemma (in CLF) [simp]:
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   449
    "f: pset cl -> pset cl & monotone f (pset cl) (order cl)"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   450
apply (insert f_cl)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   451
apply (simp add: CLF_set_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   452
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   453
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   454
declare (in CLF) f_cl [simp]
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   455
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   456
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   457
lemma (in CLF) f_in_funcset: "f \<in> A -> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   458
by (simp add: A_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   459
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   460
lemma (in CLF) monotone_f: "monotone f A r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   461
by (simp add: A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   462
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   463
lemma (in CLF) CLF_dual: "(dual cl, f) \<in> CLF_set"
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   464
apply (simp add: CLF_set_def  CL_dualCL monotone_dual)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   465
apply (simp add: dualA_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   466
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   467
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   468
lemma (in CLF) dual:
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   469
  "CLF (dual cl) f"
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   470
apply (rule CLF.intro)
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   471
apply (rule CLF_dual)
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   472
done
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   473
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   474
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   475
subsection {* fixed points *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   476
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   477
lemma fix_subset: "fix f A \<subseteq> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   478
by (simp add: fix_def, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   479
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   480
lemma fix_imp_eq: "x \<in> fix f A ==> f x = x"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   481
by (simp add: fix_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   482
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   483
lemma fixf_subset:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   484
     "[| A \<subseteq> B; x \<in> fix (%y: A. f y) A |] ==> x \<in> fix f B"
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   485
by (simp add: fix_def, auto)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   486
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   487
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   488
subsection {* lemmas for Tarski, lub *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   489
lemma (in CLF) lubH_le_flubH:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   490
     "H = {x. (x, f x) \<in> r & x \<in> A} ==> (lub H cl, f (lub H cl)) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   491
apply (rule lub_least, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   492
apply (rule f_in_funcset [THEN funcset_mem])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   493
apply (rule lub_in_lattice, fast)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   494
-- {* @{text "\<forall>x:H. (x, f (lub H r)) \<in> r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   495
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   496
apply (rule transE)
13585
db4005b40cc6 Converted Fun to Isar style.
paulson
parents: 13383
diff changeset
   497
-- {* instantiates @{text "(x, ???z) \<in> order cl to (x, f x)"}, *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   498
-- {* because of the def of @{text H} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   499
apply fast
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   500
-- {* so it remains to show @{text "(f x, f (lub H cl)) \<in> r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   501
apply (rule_tac f = "f" in monotoneE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   502
apply (rule monotone_f, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   503
apply (rule lub_in_lattice, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   504
apply (rule lub_upper, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   505
apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   506
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   507
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   508
lemma (in CLF) flubH_le_lubH:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   509
     "[|  H = {x. (x, f x) \<in> r & x \<in> A} |] ==> (f (lub H cl), lub H cl) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   510
apply (rule lub_upper, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   511
apply (rule_tac t = "H" in ssubst, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   512
apply (rule CollectI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   513
apply (rule conjI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   514
apply (rule_tac [2] f_in_funcset [THEN funcset_mem])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   515
apply (rule_tac [2] lub_in_lattice)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   516
prefer 2 apply fast
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   517
apply (rule_tac f = "f" in monotoneE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   518
apply (rule monotone_f)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   519
  apply (blast intro: lub_in_lattice)
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   520
 apply (blast intro: lub_in_lattice f_in_funcset [THEN funcset_mem])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   521
apply (simp add: lubH_le_flubH)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   522
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   523
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   524
lemma (in CLF) lubH_is_fixp:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   525
     "H = {x. (x, f x) \<in> r & x \<in> A} ==> lub H cl \<in> fix f A"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   526
apply (simp add: fix_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   527
apply (rule conjI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   528
apply (rule lub_in_lattice, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   529
apply (rule antisymE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   530
apply (simp add: flubH_le_lubH)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   531
apply (simp add: lubH_le_flubH)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   532
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   533
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   534
lemma (in CLF) fix_in_H:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   535
     "[| H = {x. (x, f x) \<in> r & x \<in> A};  x \<in> P |] ==> x \<in> H"
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   536
by (simp add: P_def fix_imp_eq [of _ f A] reflE CO_refl_on
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   537
                    fix_subset [of f A, THEN subsetD])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   538
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   539
lemma (in CLF) fixf_le_lubH:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   540
     "H = {x. (x, f x) \<in> r & x \<in> A} ==> \<forall>x \<in> fix f A. (x, lub H cl) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   541
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   542
apply (rule lub_upper, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   543
apply (rule fix_in_H)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   544
apply (simp_all add: P_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   545
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   546
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   547
lemma (in CLF) lubH_least_fixf:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   548
     "H = {x. (x, f x) \<in> r & x \<in> A}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   549
      ==> \<forall>L. (\<forall>y \<in> fix f A. (y,L) \<in> r) --> (lub H cl, L) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   550
apply (rule allI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   551
apply (rule impI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   552
apply (erule bspec)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   553
apply (rule lubH_is_fixp, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   554
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   555
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   556
subsection {* Tarski fixpoint theorem 1, first part *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   557
lemma (in CLF) T_thm_1_lub: "lub P cl = lub {x. (x, f x) \<in> r & x \<in> A} cl"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   558
apply (rule sym)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   559
apply (simp add: P_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   560
apply (rule lubI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   561
apply (rule fix_subset)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   562
apply (rule lub_in_lattice, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   563
apply (simp add: fixf_le_lubH)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   564
apply (simp add: lubH_least_fixf)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   565
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   566
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   567
lemma (in CLF) glbH_is_fixp: "H = {x. (f x, x) \<in> r & x \<in> A} ==> glb H cl \<in> P"
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   568
  -- {* Tarski for glb *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   569
apply (simp add: glb_dual_lub P_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   570
apply (rule dualA_iff [THEN subst])
21232
faacfd4392b5 fixed locale fact references;
wenzelm
parents: 19736
diff changeset
   571
apply (rule CLF.lubH_is_fixp)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   572
apply (rule dual)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   573
apply (simp add: dualr_iff dualA_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   574
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   575
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   576
lemma (in CLF) T_thm_1_glb: "glb P cl = glb {x. (f x, x) \<in> r & x \<in> A} cl"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   577
apply (simp add: glb_dual_lub P_def A_def r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   578
apply (rule dualA_iff [THEN subst])
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   579
apply (simp add: CLF.T_thm_1_lub [of _ f, OF dual]
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   580
                 dualPO CL_dualCL CLF_dual dualr_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   581
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   582
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   583
subsection {* interval *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   584
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   585
lemma (in CLF) rel_imp_elem: "(x, y) \<in> r ==> x \<in> A"
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   586
apply (insert CO_refl_on)
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   587
apply (simp add: refl_on_def, blast)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   588
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   589
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   590
lemma (in CLF) interval_subset: "[| a \<in> A; b \<in> A |] ==> interval r a b \<subseteq> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   591
apply (simp add: interval_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   592
apply (blast intro: rel_imp_elem)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   593
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   594
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   595
lemma (in CLF) intervalI:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   596
     "[| (a, x) \<in> r; (x, b) \<in> r |] ==> x \<in> interval r a b"
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   597
by (simp add: interval_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   598
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   599
lemma (in CLF) interval_lemma1:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   600
     "[| S \<subseteq> interval r a b; x \<in> S |] ==> (a, x) \<in> r"
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   601
by (unfold interval_def, fast)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   602
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   603
lemma (in CLF) interval_lemma2:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   604
     "[| S \<subseteq> interval r a b; x \<in> S |] ==> (x, b) \<in> r"
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   605
by (unfold interval_def, fast)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   606
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   607
lemma (in CLF) a_less_lub:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   608
     "[| S \<subseteq> A; S \<noteq> {};
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   609
         \<forall>x \<in> S. (a,x) \<in> r; \<forall>y \<in> S. (y, L) \<in> r |] ==> (a,L) \<in> r"
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   610
by (blast intro: transE)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   611
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   612
lemma (in CLF) glb_less_b:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   613
     "[| S \<subseteq> A; S \<noteq> {};
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   614
         \<forall>x \<in> S. (x,b) \<in> r; \<forall>y \<in> S. (G, y) \<in> r |] ==> (G,b) \<in> r"
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   615
by (blast intro: transE)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   616
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   617
lemma (in CLF) S_intv_cl:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   618
     "[| a \<in> A; b \<in> A; S \<subseteq> interval r a b |]==> S \<subseteq> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   619
by (simp add: subset_trans [OF _ interval_subset])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   620
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   621
lemma (in CLF) L_in_interval:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   622
     "[| a \<in> A; b \<in> A; S \<subseteq> interval r a b;
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   623
         S \<noteq> {}; isLub S cl L; interval r a b \<noteq> {} |] ==> L \<in> interval r a b"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   624
apply (rule intervalI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   625
apply (rule a_less_lub)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   626
prefer 2 apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   627
apply (simp add: S_intv_cl)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   628
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   629
apply (simp add: interval_lemma1)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   630
apply (simp add: isLub_upper)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   631
-- {* @{text "(L, b) \<in> r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   632
apply (simp add: isLub_least interval_lemma2)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   633
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   634
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   635
lemma (in CLF) G_in_interval:
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   636
     "[| a \<in> A; b \<in> A; interval r a b \<noteq> {}; S \<subseteq> interval r a b; isGlb S cl G;
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   637
         S \<noteq> {} |] ==> G \<in> interval r a b"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   638
apply (simp add: interval_dual)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   639
apply (simp add: CLF.L_in_interval [of _ f, OF dual]
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   640
                 dualA_iff A_def isGlb_dual_isLub)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   641
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   642
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   643
lemma (in CLF) intervalPO:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   644
     "[| a \<in> A; b \<in> A; interval r a b \<noteq> {} |]
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   645
      ==> (| pset = interval r a b, order = induced (interval r a b) r |)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   646
          \<in> PartialOrder"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   647
apply (rule po_subset_po)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   648
apply (simp add: interval_subset)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   649
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   650
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   651
lemma (in CLF) intv_CL_lub:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   652
 "[| a \<in> A; b \<in> A; interval r a b \<noteq> {} |]
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   653
  ==> \<forall>S. S \<subseteq> interval r a b -->
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   654
          (\<exists>L. isLub S (| pset = interval r a b,
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   655
                          order = induced (interval r a b) r |)  L)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   656
apply (intro strip)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   657
apply (frule S_intv_cl [THEN CL_imp_ex_isLub])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   658
prefer 2 apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   659
apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   660
apply (erule exE)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   661
-- {* define the lub for the interval as *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   662
apply (rule_tac x = "if S = {} then a else L" in exI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   663
apply (simp (no_asm_simp) add: isLub_def split del: split_if)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   664
apply (intro impI conjI)
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   665
-- {* @{text "(if S = {} then a else L) \<in> interval r a b"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   666
apply (simp add: CL_imp_PO L_in_interval)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   667
apply (simp add: left_in_interval)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   668
-- {* lub prop 1 *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   669
apply (case_tac "S = {}")
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   670
-- {* @{text "S = {}, y \<in> S = False => everything"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   671
apply fast
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   672
-- {* @{text "S \<noteq> {}"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   673
apply simp
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   674
-- {* @{text "\<forall>y:S. (y, L) \<in> induced (interval r a b) r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   675
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   676
apply (simp add: induced_def  L_in_interval)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   677
apply (rule conjI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   678
apply (rule subsetD)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   679
apply (simp add: S_intv_cl, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   680
apply (simp add: isLub_upper)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   681
-- {* @{text "\<forall>z:interval r a b. (\<forall>y:S. (y, z) \<in> induced (interval r a b) r \<longrightarrow> (if S = {} then a else L, z) \<in> induced (interval r a b) r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   682
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   683
apply (rule impI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   684
apply (case_tac "S = {}")
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   685
-- {* @{text "S = {}"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   686
apply simp
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   687
apply (simp add: induced_def  interval_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   688
apply (rule conjI)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   689
apply (rule reflE, assumption)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   690
apply (rule interval_not_empty)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   691
apply (simp add: interval_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   692
-- {* @{text "S \<noteq> {}"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   693
apply simp
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   694
apply (simp add: induced_def  L_in_interval)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   695
apply (rule isLub_least, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   696
apply (rule subsetD)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   697
prefer 2 apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   698
apply (simp add: S_intv_cl, fast)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   699
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   700
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   701
lemmas (in CLF) intv_CL_glb = intv_CL_lub [THEN Rdual]
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   702
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   703
lemma (in CLF) interval_is_sublattice:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   704
     "[| a \<in> A; b \<in> A; interval r a b \<noteq> {} |]
18750
91a328803c6a fixed the <<= notation
paulson
parents: 18705
diff changeset
   705
        ==> interval r a b <<= cl"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   706
apply (rule sublatticeI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   707
apply (simp add: interval_subset)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   708
apply (rule CompleteLatticeI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   709
apply (simp add: intervalPO)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   710
 apply (simp add: intv_CL_lub)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   711
apply (simp add: intv_CL_glb)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   712
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   713
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   714
lemmas (in CLF) interv_is_compl_latt =
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   715
    interval_is_sublattice [THEN sublattice_imp_CL]
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   716
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   717
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   718
subsection {* Top and Bottom *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   719
lemma (in CLF) Top_dual_Bot: "Top cl = Bot (dual cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   720
by (simp add: Top_def Bot_def least_def greatest_def dualA_iff dualr_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   721
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   722
lemma (in CLF) Bot_dual_Top: "Bot cl = Top (dual cl)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   723
by (simp add: Top_def Bot_def least_def greatest_def dualA_iff dualr_iff)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   724
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   725
lemma (in CLF) Bot_in_lattice: "Bot cl \<in> A"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   726
apply (simp add: Bot_def least_def)
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   727
apply (rule_tac a="glb A cl" in someI2)
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   728
apply (simp_all add: glb_in_lattice glb_lower 
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   729
                     r_def [symmetric] A_def [symmetric])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   730
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   731
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   732
lemma (in CLF) Top_in_lattice: "Top cl \<in> A"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   733
apply (simp add: Top_dual_Bot A_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   734
apply (rule dualA_iff [THEN subst])
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   735
apply (rule CLF.Bot_in_lattice [OF dual])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   736
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   737
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   738
lemma (in CLF) Top_prop: "x \<in> A ==> (x, Top cl) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   739
apply (simp add: Top_def greatest_def)
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   740
apply (rule_tac a="lub A cl" in someI2)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   741
apply (rule someI2)
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   742
apply (simp_all add: lub_in_lattice lub_upper 
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   743
                     r_def [symmetric] A_def [symmetric])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   744
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   745
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   746
lemma (in CLF) Bot_prop: "x \<in> A ==> (Bot cl, x) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   747
apply (simp add: Bot_dual_Top r_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   748
apply (rule dualr_iff [THEN subst])
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   749
apply (rule CLF.Top_prop [OF dual])
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   750
apply (simp add: dualA_iff A_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   751
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   752
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   753
lemma (in CLF) Top_intv_not_empty: "x \<in> A  ==> interval r x (Top cl) \<noteq> {}"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   754
apply (rule notI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   755
apply (drule_tac a = "Top cl" in equals0D)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   756
apply (simp add: interval_def)
30198
922f944f03b2 name changes
nipkow
parents: 29234
diff changeset
   757
apply (simp add: refl_on_def Top_in_lattice Top_prop)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   758
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   759
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   760
lemma (in CLF) Bot_intv_not_empty: "x \<in> A ==> interval r (Bot cl) x \<noteq> {}"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   761
apply (simp add: Bot_dual_Top)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   762
apply (subst interval_dual)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   763
prefer 2 apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   764
apply (simp add: A_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   765
apply (rule dualA_iff [THEN subst])
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   766
apply (rule CLF.Top_in_lattice [OF dual])
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   767
apply (rule CLF.Top_intv_not_empty [OF dual])
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   768
apply (simp add: dualA_iff A_def)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   769
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   770
14569
78b75a9eec01 Added ex/Exceptions.thy
nipkow
parents: 13585
diff changeset
   771
subsection {* fixed points form a partial order *}
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   772
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   773
lemma (in CLF) fixf_po: "(| pset = P, order = induced P r|) \<in> PartialOrder"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   774
by (simp add: P_def fix_subset po_subset_po)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   775
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   776
lemma (in Tarski) Y_subset_A: "Y \<subseteq> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   777
apply (rule subset_trans [OF _ fix_subset])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   778
apply (rule Y_ss [simplified P_def])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   779
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   780
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   781
lemma (in Tarski) lubY_in_A: "lub Y cl \<in> A"
18750
91a328803c6a fixed the <<= notation
paulson
parents: 18705
diff changeset
   782
  by (rule Y_subset_A [THEN lub_in_lattice])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   783
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   784
lemma (in Tarski) lubY_le_flubY: "(lub Y cl, f (lub Y cl)) \<in> r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   785
apply (rule lub_least)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   786
apply (rule Y_subset_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   787
apply (rule f_in_funcset [THEN funcset_mem])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   788
apply (rule lubY_in_A)
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   789
-- {* @{text "Y \<subseteq> P ==> f x = x"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   790
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   791
apply (rule_tac t = "x" in fix_imp_eq [THEN subst])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   792
apply (erule Y_ss [simplified P_def, THEN subsetD])
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   793
-- {* @{text "reduce (f x, f (lub Y cl)) \<in> r to (x, lub Y cl) \<in> r"} by monotonicity *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   794
apply (rule_tac f = "f" in monotoneE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   795
apply (rule monotone_f)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   796
apply (simp add: Y_subset_A [THEN subsetD])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   797
apply (rule lubY_in_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   798
apply (simp add: lub_upper Y_subset_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   799
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   800
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   801
lemma (in Tarski) intY1_subset: "intY1 \<subseteq> A"
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   802
apply (unfold intY1_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   803
apply (rule interval_subset)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   804
apply (rule lubY_in_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   805
apply (rule Top_in_lattice)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   806
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   807
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   808
lemmas (in Tarski) intY1_elem = intY1_subset [THEN subsetD]
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   809
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   810
lemma (in Tarski) intY1_f_closed: "x \<in> intY1 \<Longrightarrow> f x \<in> intY1"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   811
apply (simp add: intY1_def  interval_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   812
apply (rule conjI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   813
apply (rule transE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   814
apply (rule lubY_le_flubY)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   815
-- {* @{text "(f (lub Y cl), f x) \<in> r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   816
apply (rule_tac f=f in monotoneE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   817
apply (rule monotone_f)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   818
apply (rule lubY_in_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   819
apply (simp add: intY1_def interval_def  intY1_elem)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   820
apply (simp add: intY1_def  interval_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   821
-- {* @{text "(f x, Top cl) \<in> r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   822
apply (rule Top_prop)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   823
apply (rule f_in_funcset [THEN funcset_mem])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   824
apply (simp add: intY1_def interval_def  intY1_elem)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   825
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   826
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   827
lemma (in Tarski) intY1_mono:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   828
     "monotone (%x: intY1. f x) intY1 (induced intY1 r)"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   829
apply (auto simp add: monotone_def induced_def intY1_f_closed)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   830
apply (blast intro: intY1_elem monotone_f [THEN monotoneE])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   831
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   832
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   833
lemma (in Tarski) intY1_is_cl:
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   834
    "(| pset = intY1, order = induced intY1 r |) \<in> CompleteLattice"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   835
apply (unfold intY1_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   836
apply (rule interv_is_compl_latt)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   837
apply (rule lubY_in_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   838
apply (rule Top_in_lattice)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   839
apply (rule Top_intv_not_empty)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   840
apply (rule lubY_in_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   841
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   842
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   843
lemma (in Tarski) v_in_P: "v \<in> P"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   844
apply (unfold P_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   845
apply (rule_tac A = "intY1" in fixf_subset)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   846
apply (rule intY1_subset)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   847
unfolding v_def
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   848
apply (rule CLF.glbH_is_fixp [OF CLF.intro, unfolded CLF_set_def, of "\<lparr>pset = intY1, order = induced intY1 r\<rparr>", simplified])
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   849
apply auto
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   850
apply (rule intY1_is_cl)
31754
b5260f5272a4 tuned FuncSet
nipkow
parents: 30198
diff changeset
   851
apply (erule intY1_f_closed)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   852
apply (rule intY1_mono)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   853
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   854
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   855
lemma (in Tarski) z_in_interval:
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   856
     "[| z \<in> P; \<forall>y\<in>Y. (y, z) \<in> induced P r |] ==> z \<in> intY1"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   857
apply (unfold intY1_def P_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   858
apply (rule intervalI)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   859
prefer 2
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   860
 apply (erule fix_subset [THEN subsetD, THEN Top_prop])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   861
apply (rule lub_least)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   862
apply (rule Y_subset_A)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   863
apply (fast elim!: fix_subset [THEN subsetD])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   864
apply (simp add: induced_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   865
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   866
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   867
lemma (in Tarski) f'z_in_int_rel: "[| z \<in> P; \<forall>y\<in>Y. (y, z) \<in> induced P r |]
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   868
      ==> ((%x: intY1. f x) z, z) \<in> induced intY1 r"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   869
apply (simp add: induced_def  intY1_f_closed z_in_interval P_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   870
apply (simp add: fix_imp_eq [of _ f A] fix_subset [of f A, THEN subsetD]
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   871
                 reflE)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   872
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   873
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   874
lemma (in Tarski) tarski_full_lemma:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   875
     "\<exists>L. isLub Y (| pset = P, order = induced P r |) L"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   876
apply (rule_tac x = "v" in exI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   877
apply (simp add: isLub_def)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   878
-- {* @{text "v \<in> P"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   879
apply (simp add: v_in_P)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   880
apply (rule conjI)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   881
-- {* @{text v} is lub *}
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   882
-- {* @{text "1. \<forall>y:Y. (y, v) \<in> induced P r"} *}
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   883
apply (rule ballI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   884
apply (simp add: induced_def subsetD v_in_P)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   885
apply (rule conjI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   886
apply (erule Y_ss [THEN subsetD])
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   887
apply (rule_tac b = "lub Y cl" in transE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   888
apply (rule lub_upper)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   889
apply (rule Y_subset_A, assumption)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   890
apply (rule_tac b = "Top cl" in interval_imp_mem)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   891
apply (simp add: v_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   892
apply (fold intY1_def)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   893
apply (rule CL.glb_in_lattice [OF CL.intro [OF intY1_is_cl], simplified])
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   894
apply auto
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   895
apply (rule indI)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   896
  prefer 3 apply assumption
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   897
 prefer 2 apply (simp add: v_in_P)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   898
apply (unfold v_def)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   899
apply (rule indE)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   900
apply (rule_tac [2] intY1_subset)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   901
apply (rule CL.glb_lower [OF CL.intro [OF intY1_is_cl], simplified])
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   902
  apply (simp add: CL_imp_PO intY1_is_cl)
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   903
 apply force
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   904
apply (simp add: induced_def intY1_f_closed z_in_interval)
18705
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   905
apply (simp add: P_def fix_imp_eq [of _ f A] reflE
0874fdca3748 strengthened some lemmas; simplified some proofs
paulson
parents: 17841
diff changeset
   906
                 fix_subset [of f A, THEN subsetD])
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   907
done
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   908
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   909
lemma CompleteLatticeI_simp:
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   910
     "[| (| pset = A, order = r |) \<in> PartialOrder;
17841
b1f10b98430d tidying
paulson
parents: 16417
diff changeset
   911
         \<forall>S. S \<subseteq> A --> (\<exists>L. isLub S (| pset = A, order = r |)  L) |]
13115
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   912
    ==> (| pset = A, order = r |) \<in> CompleteLattice"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   913
by (simp add: CompleteLatticeI Rdual)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   914
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   915
theorem (in CLF) Tarski_full:
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   916
     "(| pset = P, order = induced P r|) \<in> CompleteLattice"
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   917
apply (rule CompleteLatticeI_simp)
0a6fbdedcde2 Tidied and converted to Isar by lcp
paulson
parents: 12459
diff changeset
   918
apply (rule fixf_po, clarify)
13383
041d78bf9403 adapted locales;
wenzelm
parents: 13115
diff changeset
   919
apply (simp add: P_def A_def r_def)
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 22547
diff changeset
   920
apply (rule Tarski.tarski_full_lemma [OF Tarski.intro [OF _ Tarski_axioms.intro]])
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 27681
diff changeset
   921
proof - show "CLF cl f" .. qed
7112
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   922
b142788d79e8 back again, supposedly with correct perms;
wenzelm
parents:
diff changeset
   923
end