src/HOL/Set.thy
author haftmann
Tue, 21 Jul 2009 07:54:44 +0200
changeset 32115 8f10fb3bb46e
parent 32082 90d03908b3d7
child 32117 0762b9ad83df
permissions -rw-r--r--
swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/Set.thy
12257
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
     2
    Author:     Tobias Nipkow, Lawrence C Paulson and Markus Wenzel
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
     5
header {* Set theory for higher-order logic *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15120
diff changeset
     7
theory Set
30304
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 29901
diff changeset
     8
imports Lattices
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15120
diff changeset
     9
begin
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
    10
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    11
subsection {* Sets as predicates *}
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    12
3947
eb707467f8c5 adapted to qualified names;
wenzelm
parents: 3842
diff changeset
    13
global
eb707467f8c5 adapted to qualified names;
wenzelm
parents: 3842
diff changeset
    14
26800
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
    15
types 'a set = "'a => bool"
3820
46b255e140dc fixed infix syntax;
wenzelm
parents: 3370
diff changeset
    16
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
consts
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    18
  Collect       :: "('a => bool) => 'a set"              -- "comprehension"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    19
  "op :"        :: "'a => 'a set => bool"                -- "membership"
30304
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 29901
diff changeset
    20
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 29901
diff changeset
    21
local
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    22
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20380
diff changeset
    23
notation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    24
  "op :"  ("op :") and
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    25
  "op :"  ("(_/ : _)" [50, 51] 50)
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
    26
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
    27
defs
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
    28
  mem_def [code]: "x : S == S x"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
    29
  Collect_def [code]: "Collect P == P"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
    30
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    31
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    32
  "not_mem x A == ~ (x : A)" -- "non-membership"
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    33
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20380
diff changeset
    34
notation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    35
  not_mem  ("op ~:") and
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    36
  not_mem  ("(_/ ~: _)" [50, 51] 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    37
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20380
diff changeset
    38
notation (xsymbols)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    39
  "op :"  ("op \<in>") and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    40
  "op :"  ("(_/ \<in> _)" [50, 51] 50) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    41
  not_mem  ("op \<notin>") and
30304
d8e4cd2ac2a1 set operations Int, Un, INTER, UNION, Inter, Union, empty, UNIV are now proper qualified constants with authentic syntax
haftmann
parents: 29901
diff changeset
    42
  not_mem  ("(_/ \<notin> _)" [50, 51] 50)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    43
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20380
diff changeset
    44
notation (HTML output)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    45
  "op :"  ("op \<in>") and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    46
  "op :"  ("(_/ \<in> _)" [50, 51] 50) and
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21384
diff changeset
    47
  not_mem  ("op \<notin>") and
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    48
  not_mem  ("(_/ \<notin> _)" [50, 51] 50)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    49
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    50
text {* Set comprehensions *}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    51
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    52
syntax
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    53
  "@Coll"       :: "pttrn => bool => 'a set"              ("(1{_./ _})")
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    54
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    55
translations
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    56
  "{x. P}"      == "Collect (%x. P)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    57
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    58
syntax
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    59
  "@SetCompr"   :: "'a => idts => bool => 'a set"         ("(1{_ |/_./ _})")
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    60
  "@Collect"    :: "idt => 'a set => bool => 'a set"      ("(1{_ :/ _./ _})")
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    61
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    62
syntax (xsymbols)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    63
  "@Collect"    :: "idt => 'a set => bool => 'a set"      ("(1{_ \<in>/ _./ _})")
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    64
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    65
translations
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    66
  "{x:A. P}"    => "{x. x:A & P}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    67
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    68
lemma mem_Collect_eq [iff]: "(a : {x. P(x)}) = P(a)"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    69
  by (simp add: Collect_def mem_def)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    70
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    71
lemma Collect_mem_eq [simp]: "{x. x:A} = A"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    72
  by (simp add: Collect_def mem_def)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    73
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    74
lemma CollectI: "P(a) ==> a : {x. P(x)}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    75
  by simp
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    76
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    77
lemma CollectD: "a : {x. P(x)} ==> P(a)"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    78
  by simp
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    79
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    80
lemma Collect_cong: "(!!x. P x = Q x) ==> {x. P(x)} = {x. Q(x)}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    81
  by simp
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    82
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    83
lemmas CollectE = CollectD [elim_format]
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    84
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    85
text {* Set enumerations *}
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    86
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    87
definition empty :: "'a set" ("{}") where
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    88
  "empty \<equiv> {x. False}"
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    89
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    90
definition insert :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a set" where
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    91
  insert_compr: "insert a B = {x. x = a \<or> x \<in> B}"
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    92
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    93
syntax
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    94
  "@Finset"     :: "args => 'a set"                       ("{(_)}")
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    95
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    96
translations
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    97
  "{x, xs}"     == "CONST insert x {xs}"
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    98
  "{x}"         == "CONST insert x {}"
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
    99
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   100
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   101
subsection {* Subsets and bounded quantifiers *}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   102
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   103
abbreviation
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   104
  subset :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   105
  "subset \<equiv> less"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   106
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   107
abbreviation
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   108
  subset_eq :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   109
  "subset_eq \<equiv> less_eq"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   110
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   111
notation (output)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   112
  subset  ("op <") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   113
  subset  ("(_/ < _)" [50, 51] 50) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   114
  subset_eq  ("op <=") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   115
  subset_eq  ("(_/ <= _)" [50, 51] 50)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   116
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   117
notation (xsymbols)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   118
  subset  ("op \<subset>") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   119
  subset  ("(_/ \<subset> _)" [50, 51] 50) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   120
  subset_eq  ("op \<subseteq>") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   121
  subset_eq  ("(_/ \<subseteq> _)" [50, 51] 50)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   122
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   123
notation (HTML output)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   124
  subset  ("op \<subset>") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   125
  subset  ("(_/ \<subset> _)" [50, 51] 50) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   126
  subset_eq  ("op \<subseteq>") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   127
  subset_eq  ("(_/ \<subseteq> _)" [50, 51] 50)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   128
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   129
abbreviation (input)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   130
  supset :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   131
  "supset \<equiv> greater"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   132
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   133
abbreviation (input)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   134
  supset_eq :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   135
  "supset_eq \<equiv> greater_eq"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   136
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   137
notation (xsymbols)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   138
  supset  ("op \<supset>") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   139
  supset  ("(_/ \<supset> _)" [50, 51] 50) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   140
  supset_eq  ("op \<supseteq>") and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   141
  supset_eq  ("(_/ \<supseteq> _)" [50, 51] 50)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   142
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   143
global
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   144
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   145
consts
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   146
  Ball          :: "'a set => ('a => bool) => bool"      -- "bounded universal quantifiers"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   147
  Bex           :: "'a set => ('a => bool) => bool"      -- "bounded existential quantifiers"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   148
  Bex1          :: "'a set => ('a => bool) => bool"      -- "bounded unique existential quantifiers"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   149
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   150
local
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   151
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   152
defs
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   153
  Ball_def:     "Ball A P       == ALL x. x:A --> P(x)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   154
  Bex_def:      "Bex A P        == EX x. x:A & P(x)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   155
  Bex1_def:     "Bex1 A P       == EX! x. x:A & P(x)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   156
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   157
syntax
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   158
  "_Ball"       :: "pttrn => 'a set => bool => bool"      ("(3ALL _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   159
  "_Bex"        :: "pttrn => 'a set => bool => bool"      ("(3EX _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   160
  "_Bex1"       :: "pttrn => 'a set => bool => bool"      ("(3EX! _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   161
  "_Bleast"     :: "id => 'a set => bool => 'a"           ("(3LEAST _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   162
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   163
syntax (HOL)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   164
  "_Ball"       :: "pttrn => 'a set => bool => bool"      ("(3! _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   165
  "_Bex"        :: "pttrn => 'a set => bool => bool"      ("(3? _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   166
  "_Bex1"       :: "pttrn => 'a set => bool => bool"      ("(3?! _:_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   167
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   168
syntax (xsymbols)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   169
  "_Ball"       :: "pttrn => 'a set => bool => bool"      ("(3\<forall>_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   170
  "_Bex"        :: "pttrn => 'a set => bool => bool"      ("(3\<exists>_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   171
  "_Bex1"       :: "pttrn => 'a set => bool => bool"      ("(3\<exists>!_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   172
  "_Bleast"     :: "id => 'a set => bool => 'a"           ("(3LEAST_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   173
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   174
syntax (HTML output)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   175
  "_Ball"       :: "pttrn => 'a set => bool => bool"      ("(3\<forall>_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   176
  "_Bex"        :: "pttrn => 'a set => bool => bool"      ("(3\<exists>_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   177
  "_Bex1"       :: "pttrn => 'a set => bool => bool"      ("(3\<exists>!_\<in>_./ _)" [0, 0, 10] 10)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   178
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   179
translations
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   180
  "ALL x:A. P"  == "Ball A (%x. P)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   181
  "EX x:A. P"   == "Bex A (%x. P)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   182
  "EX! x:A. P"  == "Bex1 A (%x. P)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   183
  "LEAST x:A. P" => "LEAST x. x:A & P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   184
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
   185
syntax (output)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   186
  "_setlessAll" :: "[idt, 'a, bool] => bool"  ("(3ALL _<_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   187
  "_setlessEx"  :: "[idt, 'a, bool] => bool"  ("(3EX _<_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   188
  "_setleAll"   :: "[idt, 'a, bool] => bool"  ("(3ALL _<=_./ _)" [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   189
  "_setleEx"    :: "[idt, 'a, bool] => bool"  ("(3EX _<=_./ _)" [0, 0, 10] 10)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19870
diff changeset
   190
  "_setleEx1"   :: "[idt, 'a, bool] => bool"  ("(3EX! _<=_./ _)" [0, 0, 10] 10)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   191
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   192
syntax (xsymbols)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   193
  "_setlessAll" :: "[idt, 'a, bool] => bool"   ("(3\<forall>_\<subset>_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   194
  "_setlessEx"  :: "[idt, 'a, bool] => bool"   ("(3\<exists>_\<subset>_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   195
  "_setleAll"   :: "[idt, 'a, bool] => bool"   ("(3\<forall>_\<subseteq>_./ _)" [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   196
  "_setleEx"    :: "[idt, 'a, bool] => bool"   ("(3\<exists>_\<subseteq>_./ _)" [0, 0, 10] 10)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19870
diff changeset
   197
  "_setleEx1"   :: "[idt, 'a, bool] => bool"   ("(3\<exists>!_\<subseteq>_./ _)" [0, 0, 10] 10)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   198
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
   199
syntax (HOL output)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   200
  "_setlessAll" :: "[idt, 'a, bool] => bool"   ("(3! _<_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   201
  "_setlessEx"  :: "[idt, 'a, bool] => bool"   ("(3? _<_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   202
  "_setleAll"   :: "[idt, 'a, bool] => bool"   ("(3! _<=_./ _)" [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   203
  "_setleEx"    :: "[idt, 'a, bool] => bool"   ("(3? _<=_./ _)" [0, 0, 10] 10)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19870
diff changeset
   204
  "_setleEx1"   :: "[idt, 'a, bool] => bool"   ("(3?! _<=_./ _)" [0, 0, 10] 10)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   205
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   206
syntax (HTML output)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   207
  "_setlessAll" :: "[idt, 'a, bool] => bool"   ("(3\<forall>_\<subset>_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   208
  "_setlessEx"  :: "[idt, 'a, bool] => bool"   ("(3\<exists>_\<subset>_./ _)"  [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   209
  "_setleAll"   :: "[idt, 'a, bool] => bool"   ("(3\<forall>_\<subseteq>_./ _)" [0, 0, 10] 10)
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   210
  "_setleEx"    :: "[idt, 'a, bool] => bool"   ("(3\<exists>_\<subseteq>_./ _)" [0, 0, 10] 10)
20217
25b068a99d2b linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents: 19870
diff changeset
   211
  "_setleEx1"   :: "[idt, 'a, bool] => bool"   ("(3\<exists>!_\<subseteq>_./ _)" [0, 0, 10] 10)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   212
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   213
translations
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   214
 "\<forall>A\<subset>B. P"   =>  "ALL A. A \<subset> B --> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   215
 "\<exists>A\<subset>B. P"   =>  "EX A. A \<subset> B & P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   216
 "\<forall>A\<subseteq>B. P"   =>  "ALL A. A \<subseteq> B --> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   217
 "\<exists>A\<subseteq>B. P"   =>  "EX A. A \<subseteq> B & P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   218
 "\<exists>!A\<subseteq>B. P"  =>  "EX! A. A \<subseteq> B & P"
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   219
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   220
print_translation {*
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   221
let
22377
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   222
  val Type (set_type, _) = @{typ "'a set"};
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   223
  val All_binder = Syntax.binder_name @{const_syntax "All"};
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   224
  val Ex_binder = Syntax.binder_name @{const_syntax "Ex"};
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   225
  val impl = @{const_syntax "op -->"};
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   226
  val conj = @{const_syntax "op &"};
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   227
  val sbset = @{const_syntax "subset"};
61610b1beedf tuned ML setup;
wenzelm
parents: 22172
diff changeset
   228
  val sbset_eq = @{const_syntax "subset_eq"};
21819
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   229
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   230
  val trans =
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   231
   [((All_binder, impl, sbset), "_setlessAll"),
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   232
    ((All_binder, impl, sbset_eq), "_setleAll"),
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   233
    ((Ex_binder, conj, sbset), "_setlessEx"),
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   234
    ((Ex_binder, conj, sbset_eq), "_setleEx")];
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   235
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   236
  fun mk v v' c n P =
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   237
    if v = v' andalso not (Term.exists_subterm (fn Free (x, _) => x = v | _ => false) n)
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   238
    then Syntax.const c $ Syntax.mark_bound v' $ n $ P else raise Match;
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   239
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   240
  fun tr' q = (q,
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   241
    fn [Const ("_bound", _) $ Free (v, Type (T, _)), Const (c, _) $ (Const (d, _) $ (Const ("_bound", _) $ Free (v', _)) $ n) $ P] =>
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   242
         if T = (set_type) then case AList.lookup (op =) trans (q, c, d)
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   243
          of NONE => raise Match
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   244
           | SOME l => mk v v' l n P
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   245
         else raise Match
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   246
     | _ => raise Match);
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   247
in
21819
8eb82ffcdd15 fixed syntax for bounded quantification
haftmann
parents: 21669
diff changeset
   248
  [tr' All_binder, tr' Ex_binder]
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   249
end
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   250
*}
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   251
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   252
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   253
text {*
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   254
  \medskip Translate between @{text "{e | x1...xn. P}"} and @{text
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   255
  "{u. EX x1..xn. u = e & P}"}; @{text "{y. EX x1..xn. y = e & P}"} is
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   256
  only translated if @{text "[0..n] subset bvs(e)"}.
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   257
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   258
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   259
parse_translation {*
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   260
  let
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   261
    val ex_tr = snd (mk_binder_tr ("EX ", "Ex"));
3947
eb707467f8c5 adapted to qualified names;
wenzelm
parents: 3842
diff changeset
   262
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   263
    fun nvars (Const ("_idts", _) $ _ $ idts) = nvars idts + 1
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   264
      | nvars _ = 1;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   265
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   266
    fun setcompr_tr [e, idts, b] =
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   267
      let
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   268
        val eq = Syntax.const "op =" $ Bound (nvars idts) $ e;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   269
        val P = Syntax.const "op &" $ eq $ b;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   270
        val exP = ex_tr [idts, P];
17784
5cbb52f2c478 Term.absdummy;
wenzelm
parents: 17715
diff changeset
   271
      in Syntax.const "Collect" $ Term.absdummy (dummyT, exP) end;
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   272
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   273
  in [("@SetCompr", setcompr_tr)] end;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   274
*}
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   275
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   276
(* To avoid eta-contraction of body: *)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   277
print_translation {*
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   278
let
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   279
  fun btr' syn [A, Abs abs] =
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   280
    let val (x, t) = atomic_abs_tr' abs
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   281
    in Syntax.const syn $ x $ A $ t end
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   282
in [(@{const_syntax Ball}, btr' "_Ball"), (@{const_syntax Bex}, btr' "_Bex")] end
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   283
*}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   284
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   285
print_translation {*
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   286
let
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   287
  val ex_tr' = snd (mk_binder_tr' ("Ex", "DUMMY"));
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   288
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   289
  fun setcompr_tr' [Abs (abs as (_, _, P))] =
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   290
    let
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   291
      fun check (Const ("Ex", _) $ Abs (_, _, P), n) = check (P, n + 1)
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   292
        | check (Const ("op &", _) $ (Const ("op =", _) $ Bound m $ e) $ P, n) =
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   293
            n > 0 andalso m = n andalso not (loose_bvar1 (P, n)) andalso
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   294
            ((0 upto (n - 1)) subset add_loose_bnos (e, 0, []))
13764
3e180bf68496 removed some problems with print translations
nipkow
parents: 13763
diff changeset
   295
        | check _ = false
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   296
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   297
        fun tr' (_ $ abs) =
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   298
          let val _ $ idts $ (_ $ (_ $ _ $ e) $ Q) = ex_tr' [abs]
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   299
          in Syntax.const "@SetCompr" $ e $ idts $ Q end;
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   300
    in if check (P, 0) then tr' P
15535
nipkow
parents: 15524
diff changeset
   301
       else let val (x as _ $ Free(xN,_), t) = atomic_abs_tr' abs
nipkow
parents: 15524
diff changeset
   302
                val M = Syntax.const "@Coll" $ x $ t
nipkow
parents: 15524
diff changeset
   303
            in case t of
nipkow
parents: 15524
diff changeset
   304
                 Const("op &",_)
nipkow
parents: 15524
diff changeset
   305
                   $ (Const("op :",_) $ (Const("_bound",_) $ Free(yN,_)) $ A)
nipkow
parents: 15524
diff changeset
   306
                   $ P =>
nipkow
parents: 15524
diff changeset
   307
                   if xN=yN then Syntax.const "@Collect" $ x $ A $ P else M
nipkow
parents: 15524
diff changeset
   308
               | _ => M
nipkow
parents: 15524
diff changeset
   309
            end
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   310
    end;
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   311
  in [("Collect", setcompr_tr')] end;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   312
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   313
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   314
lemma ballI [intro!]: "(!!x. x:A ==> P x) ==> ALL x:A. P x"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   315
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   316
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   317
lemmas strip = impI allI ballI
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   318
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   319
lemma bspec [dest?]: "ALL x:A. P x ==> x:A ==> P x"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   320
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   321
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   322
lemma ballE [elim]: "ALL x:A. P x ==> (P x ==> Q) ==> (x ~: A ==> Q) ==> Q"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   323
  by (unfold Ball_def) blast
22139
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
   324
31945
d5f186aa0bed structure Thm: less pervasive names;
wenzelm
parents: 31643
diff changeset
   325
ML {* bind_thm ("rev_ballE", Thm.permute_prems 1 1 @{thm ballE}) *}
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   326
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   327
text {*
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   328
  \medskip This tactic takes assumptions @{prop "ALL x:A. P x"} and
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   329
  @{prop "a:A"}; creates assumption @{prop "P a"}.
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   330
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   331
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   332
ML {*
22139
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
   333
  fun ball_tac i = etac @{thm ballE} i THEN contr_tac (i + 1)
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   334
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   335
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   336
text {*
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   337
  Gives better instantiation for bound:
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   338
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   339
26339
7825c83c9eff eliminated change_claset/simpset;
wenzelm
parents: 26150
diff changeset
   340
declaration {* fn _ =>
7825c83c9eff eliminated change_claset/simpset;
wenzelm
parents: 26150
diff changeset
   341
  Classical.map_cs (fn cs => cs addbefore ("bspec", datac @{thm bspec} 1))
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   342
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   343
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   344
lemma bexI [intro]: "P x ==> x:A ==> EX x:A. P x"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   345
  -- {* Normally the best argument order: @{prop "P x"} constrains the
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   346
    choice of @{prop "x:A"}. *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   347
  by (unfold Bex_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   348
13113
5eb9be7b72a5 rev_bexI [intro?];
wenzelm
parents: 13103
diff changeset
   349
lemma rev_bexI [intro?]: "x:A ==> P x ==> EX x:A. P x"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   350
  -- {* The best argument order when there is only one @{prop "x:A"}. *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   351
  by (unfold Bex_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   352
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   353
lemma bexCI: "(ALL x:A. ~P x ==> P a) ==> a:A ==> EX x:A. P x"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   354
  by (unfold Bex_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   355
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   356
lemma bexE [elim!]: "EX x:A. P x ==> (!!x. x:A ==> P x ==> Q) ==> Q"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   357
  by (unfold Bex_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   358
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   359
lemma ball_triv [simp]: "(ALL x:A. P) = ((EX x. x:A) --> P)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   360
  -- {* Trival rewrite rule. *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   361
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   362
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   363
lemma bex_triv [simp]: "(EX x:A. P) = ((EX x. x:A) & P)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   364
  -- {* Dual form for existentials. *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   365
  by (simp add: Bex_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   366
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   367
lemma bex_triv_one_point1 [simp]: "(EX x:A. x = a) = (a:A)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   368
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   369
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   370
lemma bex_triv_one_point2 [simp]: "(EX x:A. a = x) = (a:A)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   371
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   372
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   373
lemma bex_one_point1 [simp]: "(EX x:A. x = a & P x) = (a:A & P a)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   374
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   375
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   376
lemma bex_one_point2 [simp]: "(EX x:A. a = x & P x) = (a:A & P a)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   377
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   378
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   379
lemma ball_one_point1 [simp]: "(ALL x:A. x = a --> P x) = (a:A --> P a)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   380
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   381
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   382
lemma ball_one_point2 [simp]: "(ALL x:A. a = x --> P x) = (a:A --> P a)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   383
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   384
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26339
diff changeset
   385
ML {*
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13421
diff changeset
   386
  local
22139
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
   387
    val unfold_bex_tac = unfold_tac @{thms "Bex_def"};
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 18315
diff changeset
   388
    fun prove_bex_tac ss = unfold_bex_tac ss THEN Quantifier1.prove_one_point_ex_tac;
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   389
    val rearrange_bex = Quantifier1.rearrange_bex prove_bex_tac;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   390
22139
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
   391
    val unfold_ball_tac = unfold_tac @{thms "Ball_def"};
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 18315
diff changeset
   392
    fun prove_ball_tac ss = unfold_ball_tac ss THEN Quantifier1.prove_one_point_all_tac;
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   393
    val rearrange_ball = Quantifier1.rearrange_ball prove_ball_tac;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   394
  in
32010
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31991
diff changeset
   395
    val defBEX_regroup = Simplifier.simproc @{theory}
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13421
diff changeset
   396
      "defined BEX" ["EX x:A. P x & Q x"] rearrange_bex;
32010
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31991
diff changeset
   397
    val defBALL_regroup = Simplifier.simproc @{theory}
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13421
diff changeset
   398
      "defined BALL" ["ALL x:A. P x --> Q x"] rearrange_ball;
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   399
  end;
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13421
diff changeset
   400
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13421
diff changeset
   401
  Addsimprocs [defBALL_regroup, defBEX_regroup];
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   402
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   403
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   404
text {* Congruence rules *}
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   405
16636
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   406
lemma ball_cong:
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   407
  "A = B ==> (!!x. x:B ==> P x = Q x) ==>
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   408
    (ALL x:A. P x) = (ALL x:B. Q x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   409
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   410
16636
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   411
lemma strong_ball_cong [cong]:
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   412
  "A = B ==> (!!x. x:B =simp=> P x = Q x) ==>
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   413
    (ALL x:A. P x) = (ALL x:B. Q x)"
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   414
  by (simp add: simp_implies_def Ball_def)
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   415
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   416
lemma bex_cong:
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   417
  "A = B ==> (!!x. x:B ==> P x = Q x) ==>
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   418
    (EX x:A. P x) = (EX x:B. Q x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   419
  by (simp add: Bex_def cong: conj_cong)
1273
6960ec882bca added 8bit pragmas
regensbu
parents: 1068
diff changeset
   420
16636
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   421
lemma strong_bex_cong [cong]:
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   422
  "A = B ==> (!!x. x:B =simp=> P x = Q x) ==>
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   423
    (EX x:A. P x) = (EX x:B. Q x)"
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   424
  by (simp add: simp_implies_def Bex_def cong: conj_cong)
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   425
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   426
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   427
subsection {* Basic operations *}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   428
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   429
subsubsection {* Subsets *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   430
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   431
lemma subsetI [atp,intro!]: "(!!x. x:A ==> x:B) ==> A \<subseteq> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   432
  by (auto simp add: mem_def intro: predicate1I)
30352
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   433
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   434
text {*
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   435
  \medskip Map the type @{text "'a set => anything"} to just @{typ
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   436
  'a}; for overloading constants whose first argument has type @{typ
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   437
  "'a set"}.
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   438
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   439
30596
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
   440
lemma subsetD [elim, intro?]: "A \<subseteq> B ==> c \<in> A ==> c \<in> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   441
  -- {* Rule in Modus Ponens style. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   442
  by (unfold mem_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   443
30596
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
   444
lemma rev_subsetD [intro?]: "c \<in> A ==> A \<subseteq> B ==> c \<in> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   445
  -- {* The same, with reversed premises for use with @{text erule} --
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   446
      cf @{text rev_mp}. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   447
  by (rule subsetD)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   448
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   449
text {*
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   450
  \medskip Converts @{prop "A \<subseteq> B"} to @{prop "x \<in> A ==> x \<in> B"}.
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   451
*}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   452
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   453
ML {*
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   454
  fun impOfSubs th = th RSN (2, @{thm rev_subsetD})
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   455
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   456
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   457
lemma subsetCE [elim]: "A \<subseteq>  B ==> (c \<notin> A ==> P) ==> (c \<in> B ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   458
  -- {* Classical elimination rule. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   459
  by (unfold mem_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   460
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   461
lemma subset_eq: "A \<le> B = (\<forall>x\<in>A. x \<in> B)" by blast
2388
d1f0505fc602 added set inclusion symbol syntax;
wenzelm
parents: 2372
diff changeset
   462
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   463
text {*
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   464
  \medskip Takes assumptions @{prop "A \<subseteq> B"}; @{prop "c \<in> A"} and
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   465
  creates the assumption @{prop "c \<in> B"}.
30352
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   466
*}
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   467
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   468
ML {*
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   469
  fun set_mp_tac i = etac @{thm subsetCE} i THEN mp_tac i
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   470
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   471
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   472
lemma contra_subsetD: "A \<subseteq> B ==> c \<notin> B ==> c \<notin> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   473
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   474
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   475
lemma subset_refl [simp,atp]: "A \<subseteq> A"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   476
  by (fact order_refl)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   477
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   478
lemma subset_trans: "A \<subseteq> B ==> B \<subseteq> C ==> A \<subseteq> C"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   479
  by (fact order_trans)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   480
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   481
lemma set_rev_mp: "x:A ==> A \<subseteq> B ==> x:B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   482
  by (rule subsetD)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   483
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   484
lemma set_mp: "A \<subseteq> B ==> x:A ==> x:B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   485
  by (rule subsetD)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   486
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   487
lemmas basic_trans_rules [trans] =
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   488
  order_trans_rules set_rev_mp set_mp
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   489
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   490
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   491
subsubsection {* Equality *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   492
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   493
lemma set_ext: assumes prem: "(!!x. (x:A) = (x:B))" shows "A = B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   494
  apply (rule prem [THEN ext, THEN arg_cong, THEN box_equals])
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   495
   apply (rule Collect_mem_eq)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   496
  apply (rule Collect_mem_eq)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   497
  done
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   498
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   499
(* Due to Brian Huffman *)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   500
lemma expand_set_eq: "(A = B) = (ALL x. (x:A) = (x:B))"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   501
by(auto intro:set_ext)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   502
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   503
lemma subset_antisym [intro!]: "A \<subseteq> B ==> B \<subseteq> A ==> A = B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   504
  -- {* Anti-symmetry of the subset relation. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   505
  by (iprover intro: set_ext subsetD)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   506
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   507
text {*
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   508
  \medskip Equality rules from ZF set theory -- are they appropriate
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   509
  here?
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   510
*}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   511
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   512
lemma equalityD1: "A = B ==> A \<subseteq> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   513
  by (simp add: subset_refl)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   514
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   515
lemma equalityD2: "A = B ==> B \<subseteq> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   516
  by (simp add: subset_refl)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   517
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   518
text {*
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   519
  \medskip Be careful when adding this to the claset as @{text
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   520
  subset_empty} is in the simpset: @{prop "A = {}"} goes to @{prop "{}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   521
  \<subseteq> A"} and @{prop "A \<subseteq> {}"} and then back to @{prop "A = {}"}!
30352
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   522
*}
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   523
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   524
lemma equalityE: "A = B ==> (A \<subseteq> B ==> B \<subseteq> A ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   525
  by (simp add: subset_refl)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   526
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   527
lemma equalityCE [elim]:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   528
    "A = B ==> (c \<in> A ==> c \<in> B ==> P) ==> (c \<notin> A ==> c \<notin> B ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   529
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   530
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   531
lemma eqset_imp_iff: "A = B ==> (x : A) = (x : B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   532
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   533
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   534
lemma eqelem_imp_iff: "x = y ==> (x : A) = (y : A)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   535
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   536
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   537
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   538
subsubsection {* The universal set -- UNIV *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   539
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   540
definition UNIV :: "'a set" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   541
  "UNIV \<equiv> {x. True}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   542
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   543
lemma UNIV_I [simp]: "x : UNIV"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   544
  by (simp add: UNIV_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   545
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   546
declare UNIV_I [intro]  -- {* unsafe makes it less likely to cause problems *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   547
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   548
lemma UNIV_witness [intro?]: "EX x. x : UNIV"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   549
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   550
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   551
lemma subset_UNIV [simp]: "A \<subseteq> UNIV"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   552
  by (rule subsetI) (rule UNIV_I)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   553
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   554
lemma top_set_eq: "top = UNIV"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   555
  by (iprover intro!: subset_antisym subset_UNIV top_greatest)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   556
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   557
text {*
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   558
  \medskip Eta-contracting these two rules (to remove @{text P})
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   559
  causes them to be ignored because of their interaction with
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   560
  congruence rules.
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   561
*}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   562
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   563
lemma ball_UNIV [simp]: "Ball UNIV P = All P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   564
  by (simp add: Ball_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   565
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   566
lemma bex_UNIV [simp]: "Bex UNIV P = Ex P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   567
  by (simp add: Bex_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   568
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   569
lemma UNIV_eq_I: "(\<And>x. x \<in> A) \<Longrightarrow> UNIV = A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   570
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   571
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   572
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   573
subsubsection {* The empty set *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   574
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   575
lemma empty_iff [simp]: "(c : {}) = False"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   576
  by (simp add: empty_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   577
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   578
lemma emptyE [elim!]: "a : {} ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   579
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   580
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   581
lemma empty_subsetI [iff]: "{} \<subseteq> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   582
    -- {* One effect is to delete the ASSUMPTION @{prop "{} <= A"} *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   583
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   584
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   585
lemma bot_set_eq: "bot = {}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   586
  by (iprover intro!: subset_antisym empty_subsetI bot_least)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   587
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   588
lemma equals0I: "(!!y. y \<in> A ==> False) ==> A = {}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   589
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   590
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   591
lemma equals0D: "A = {} ==> a \<notin> A"
32082
90d03908b3d7 less digestible
haftmann
parents: 32081
diff changeset
   592
    -- {* Use for reasoning about disjointness: @{text "A Int B = {}"} *}
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   593
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   594
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   595
lemma ball_empty [simp]: "Ball {} P = True"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   596
  by (simp add: Ball_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   597
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   598
lemma bex_empty [simp]: "Bex {} P = False"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   599
  by (simp add: Bex_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   600
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   601
lemma UNIV_not_empty [iff]: "UNIV ~= {}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   602
  by (blast elim: equalityE)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   603
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   604
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   605
subsubsection {* The Powerset operator -- Pow *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   606
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   607
definition Pow :: "'a set => 'a set set" where
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   608
  Pow_def: "Pow A = {B. B \<le> A}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   609
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   610
lemma Pow_iff [iff]: "(A \<in> Pow B) = (A \<subseteq> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   611
  by (simp add: Pow_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   612
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   613
lemma PowI: "A \<subseteq> B ==> A \<in> Pow B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   614
  by (simp add: Pow_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   615
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   616
lemma PowD: "A \<in> Pow B ==> A \<subseteq> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   617
  by (simp add: Pow_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   618
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   619
lemma Pow_bottom: "{} \<in> Pow B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   620
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   621
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   622
lemma Pow_top: "A \<in> Pow A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   623
  by (simp add: subset_refl)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   624
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   625
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   626
subsubsection {* Set complement *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   627
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   628
lemma Compl_iff [simp]: "(c \<in> -A) = (c \<notin> A)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   629
  by (simp add: mem_def fun_Compl_def bool_Compl_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   630
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   631
lemma ComplI [intro!]: "(c \<in> A ==> False) ==> c \<in> -A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   632
  by (unfold mem_def fun_Compl_def bool_Compl_def) blast
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   633
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   634
text {*
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   635
  \medskip This form, with negated conclusion, works well with the
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   636
  Classical prover.  Negated assumptions behave like formulae on the
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   637
  right side of the notional turnstile ... *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   638
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   639
lemma ComplD [dest!]: "c : -A ==> c~:A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   640
  by (simp add: mem_def fun_Compl_def bool_Compl_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   641
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   642
lemmas ComplE = ComplD [elim_format]
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   643
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   644
lemma Compl_eq: "- A = {x. ~ x : A}" by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   645
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   646
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   647
subsubsection {* Binary union -- Un *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   648
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   649
definition Un :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl "Un" 65) where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   650
  "A Un B \<equiv> {x. x \<in> A \<or> x \<in> B}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   651
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   652
notation (xsymbols)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   653
  "Un"  (infixl "\<union>" 65)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   654
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   655
notation (HTML output)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   656
  "Un"  (infixl "\<union>" 65)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   657
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   658
lemma sup_set_eq: "sup A B = A \<union> B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   659
  by (simp add: sup_fun_eq sup_bool_eq Un_def Collect_def mem_def)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   660
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   661
lemma Un_iff [simp]: "(c : A Un B) = (c:A | c:B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   662
  by (unfold Un_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   663
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   664
lemma UnI1 [elim?]: "c:A ==> c : A Un B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   665
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   666
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   667
lemma UnI2 [elim?]: "c:B ==> c : A Un B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   668
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   669
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   670
text {*
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   671
  \medskip Classical introduction rule: no commitment to @{prop A} vs
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   672
  @{prop B}.
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   673
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   674
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   675
lemma UnCI [intro!]: "(c~:B ==> c:A) ==> c : A Un B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   676
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   677
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   678
lemma UnE [elim!]: "c : A Un B ==> (c:A ==> P) ==> (c:B ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   679
  by (unfold Un_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   680
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   681
lemma insert_def: "insert a B \<equiv> {x. x = a} \<union> B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   682
  by (simp add: Collect_def mem_def insert_compr Un_def)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   683
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   684
lemma mono_Un: "mono f \<Longrightarrow> f A \<union> f B \<subseteq> f (A \<union> B)"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   685
  apply (fold sup_set_eq)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   686
  apply (erule mono_sup)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   687
  done
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   688
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   689
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   690
subsubsection {* Binary intersection -- Int *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   691
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   692
definition Int :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set" (infixl "Int" 70) where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   693
  "A Int B \<equiv> {x. x \<in> A \<and> x \<in> B}"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   694
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   695
notation (xsymbols)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   696
  "Int"  (infixl "\<inter>" 70)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   697
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   698
notation (HTML output)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   699
  "Int"  (infixl "\<inter>" 70)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   700
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   701
lemma inf_set_eq: "inf A B = A \<inter> B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   702
  by (simp add: inf_fun_eq inf_bool_eq Int_def Collect_def mem_def)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   703
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   704
lemma Int_iff [simp]: "(c : A Int B) = (c:A & c:B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   705
  by (unfold Int_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   706
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   707
lemma IntI [intro!]: "c:A ==> c:B ==> c : A Int B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   708
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   709
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   710
lemma IntD1: "c : A Int B ==> c:A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   711
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   712
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   713
lemma IntD2: "c : A Int B ==> c:B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   714
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   715
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   716
lemma IntE [elim!]: "c : A Int B ==> (c:A ==> c:B ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   717
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   718
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   719
lemma mono_Int: "mono f \<Longrightarrow> f (A \<inter> B) \<subseteq> f A \<inter> f B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   720
  apply (fold inf_set_eq)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   721
  apply (erule mono_inf)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   722
  done
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   723
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   724
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   725
subsubsection {* Set difference *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   726
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   727
lemma Diff_iff [simp]: "(c : A - B) = (c:A & c~:B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   728
  by (simp add: mem_def fun_diff_def bool_diff_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   729
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   730
lemma DiffI [intro!]: "c : A ==> c ~: B ==> c : A - B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   731
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   732
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   733
lemma DiffD1: "c : A - B ==> c : A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   734
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   735
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   736
lemma DiffD2: "c : A - B ==> c : B ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   737
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   738
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   739
lemma DiffE [elim!]: "c : A - B ==> (c:A ==> c~:B ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   740
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   741
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   742
lemma set_diff_eq: "A - B = {x. x : A & ~ x : B}" by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   743
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   744
lemma Compl_eq_Diff_UNIV: "-A = (UNIV - A)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   745
by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   746
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   747
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
   748
subsubsection {* Augmenting a set -- @{const insert} *}
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   749
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   750
lemma insert_iff [simp]: "(a : insert b A) = (a = b | a:A)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   751
  by (unfold insert_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   752
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   753
lemma insertI1: "a : insert a B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   754
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   755
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   756
lemma insertI2: "a : B ==> a : insert b B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   757
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   758
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   759
lemma insertE [elim!]: "a : insert b A ==> (a = b ==> P) ==> (a:A ==> P) ==> P"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   760
  by (unfold insert_def) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   761
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   762
lemma insertCI [intro!]: "(a~:B ==> a = b) ==> a: insert b B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   763
  -- {* Classical introduction rule. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   764
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   765
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   766
lemma subset_insert_iff: "(A \<subseteq> insert x B) = (if x:A then A - {x} \<subseteq> B else A \<subseteq> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   767
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   768
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   769
lemma set_insert:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   770
  assumes "x \<in> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   771
  obtains B where "A = insert x B" and "x \<notin> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   772
proof
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   773
  from assms show "A = insert x (A - {x})" by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   774
next
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   775
  show "x \<notin> A - {x}" by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   776
qed
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   777
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   778
lemma insert_ident: "x ~: A ==> x ~: B ==> (insert x A = insert x B) = (A = B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   779
by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   780
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   781
subsubsection {* Singletons, using insert *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   782
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   783
lemma singletonI [intro!,noatp]: "a : {a}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   784
    -- {* Redundant? But unlike @{text insertCI}, it proves the subgoal immediately! *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   785
  by (rule insertI1)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   786
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   787
lemma singletonD [dest!,noatp]: "b : {a} ==> b = a"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   788
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   789
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   790
lemmas singletonE = singletonD [elim_format]
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   791
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   792
lemma singleton_iff: "(b : {a}) = (b = a)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   793
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   794
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   795
lemma singleton_inject [dest!]: "{a} = {b} ==> a = b"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   796
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   797
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   798
lemma singleton_insert_inj_eq [iff,noatp]:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   799
     "({b} = insert a A) = (a = b & A \<subseteq> {b})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   800
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   801
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   802
lemma singleton_insert_inj_eq' [iff,noatp]:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   803
     "(insert a A = {b}) = (a = b & A \<subseteq> {b})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   804
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   805
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   806
lemma subset_singletonD: "A \<subseteq> {x} ==> A = {} | A = {x}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   807
  by fast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   808
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   809
lemma singleton_conv [simp]: "{x. x = a} = {a}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   810
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   811
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   812
lemma singleton_conv2 [simp]: "{x. a = x} = {a}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   813
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   814
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   815
lemma diff_single_insert: "A - {x} \<subseteq> B ==> x \<in> A ==> A \<subseteq> insert x B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   816
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   817
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   818
lemma doubleton_eq_iff: "({a,b} = {c,d}) = (a=c & b=d | a=d & b=c)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   819
  by (blast elim: equalityE)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   820
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   821
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   822
subsubsection {* Image of a set under a function *}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   823
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   824
text {*
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   825
  Frequently @{term b} does not have the syntactic form of @{term "f x"}.
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   826
*}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   827
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   828
definition image :: "('a => 'b) => 'a set => 'b set" (infixr "`" 90) where
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   829
  image_def [noatp]: "f ` A = {y. EX x:A. y = f(x)}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   830
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   831
abbreviation
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   832
  range :: "('a => 'b) => 'b set" where -- "of function"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   833
  "range f == f ` UNIV"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   834
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   835
lemma image_eqI [simp, intro]: "b = f x ==> x:A ==> b : f`A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   836
  by (unfold image_def) blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   837
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   838
lemma imageI: "x : A ==> f x : f ` A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   839
  by (rule image_eqI) (rule refl)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   840
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   841
lemma rev_image_eqI: "x:A ==> b = f x ==> b : f`A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   842
  -- {* This version's more effective when we already have the
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   843
    required @{term x}. *}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   844
  by (unfold image_def) blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   845
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   846
lemma imageE [elim!]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   847
  "b : (%x. f x)`A ==> (!!x. b = f x ==> x:A ==> P) ==> P"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   848
  -- {* The eta-expansion gives variable-name preservation. *}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   849
  by (unfold image_def) blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   850
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   851
lemma image_Un: "f`(A Un B) = f`A Un f`B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   852
  by blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   853
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   854
lemma image_iff: "(z : f`A) = (EX x:A. z = f x)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   855
  by blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   856
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   857
lemma image_subset_iff: "(f`A \<subseteq> B) = (\<forall>x\<in>A. f x \<in> B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   858
  -- {* This rewrite rule would confuse users if made default. *}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   859
  by blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   860
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   861
lemma subset_image_iff: "(B \<subseteq> f`A) = (EX AA. AA \<subseteq> A & B = f`AA)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   862
  apply safe
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   863
   prefer 2 apply fast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   864
  apply (rule_tac x = "{a. a : A & f a : B}" in exI, fast)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   865
  done
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   866
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   867
lemma image_subsetI: "(!!x. x \<in> A ==> f x \<in> B) ==> f`A \<subseteq> B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   868
  -- {* Replaces the three steps @{text subsetI}, @{text imageE},
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   869
    @{text hypsubst}, but breaks too many existing proofs. *}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   870
  by blast
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   871
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   872
text {*
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   873
  \medskip Range of a function -- just a translation for image!
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   874
*}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   875
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   876
lemma range_eqI: "b = f x ==> b \<in> range f"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   877
  by simp
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   878
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   879
lemma rangeI: "f x \<in> range f"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   880
  by simp
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   881
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   882
lemma rangeE [elim?]: "b \<in> range (\<lambda>x. f x) ==> (!!x. b = f x ==> P) ==> P"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   883
  by blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   884
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   885
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   886
subsubsection {* Some proof tools *}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   887
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   888
text{* Elimination of @{text"{x. \<dots> & x=t & \<dots>}"}. *}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   889
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   890
lemma Collect_conv_if: "{x. x=a & P x} = (if P a then {a} else {})"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   891
by auto
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   892
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   893
lemma Collect_conv_if2: "{x. a=x & P x} = (if P a then {a} else {})"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   894
by auto
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   895
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   896
text {*
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   897
Simproc for pulling @{text "x=t"} in @{text "{x. \<dots> & x=t & \<dots>}"}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   898
to the front (and similarly for @{text "t=x"}):
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   899
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   900
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   901
ML{*
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   902
  local
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   903
    val Coll_perm_tac = rtac @{thm Collect_cong} 1 THEN rtac @{thm iffI} 1 THEN
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   904
    ALLGOALS(EVERY'[REPEAT_DETERM o (etac @{thm conjE}),
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   905
                    DEPTH_SOLVE_1 o (ares_tac [@{thm conjI}])])
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   906
  in
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   907
    val defColl_regroup = Simplifier.simproc @{theory}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   908
      "defined Collect" ["{x. P x & Q x}"]
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   909
      (Quantifier1.rearrange_Coll Coll_perm_tac)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   910
  end;
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   911
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   912
  Addsimprocs [defColl_regroup];
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   913
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   914
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   915
text {*
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   916
  Rewrite rules for boolean case-splitting: faster than @{text
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   917
  "split_if [split]"}.
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   918
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   919
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   920
lemma split_if_eq1: "((if Q then x else y) = b) = ((Q --> x = b) & (~ Q --> y = b))"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   921
  by (rule split_if)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   922
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   923
lemma split_if_eq2: "(a = (if Q then x else y)) = ((Q --> a = x) & (~ Q --> a = y))"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   924
  by (rule split_if)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   925
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   926
text {*
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   927
  Split ifs on either side of the membership relation.  Not for @{text
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   928
  "[simp]"} -- can cause goals to blow up!
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   929
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   930
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   931
lemma split_if_mem1: "((if Q then x else y) : b) = ((Q --> x : b) & (~ Q --> y : b))"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   932
  by (rule split_if)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   933
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   934
lemma split_if_mem2: "(a : (if Q then x else y)) = ((Q --> a : x) & (~ Q --> a : y))"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   935
  by (rule split_if [where P="%S. a : S"])
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   936
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   937
lemmas split_ifs = if_bool_eq_conj split_if_eq1 split_if_eq2 split_if_mem1 split_if_mem2
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   938
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   939
(*Would like to add these, but the existing code only searches for the
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   940
  outer-level constant, which in this case is just "op :"; we instead need
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   941
  to use term-nets to associate patterns with rules.  Also, if a rule fails to
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   942
  apply, then the formula should be kept.
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   943
  [("HOL.uminus", Compl_iff RS iffD1), ("HOL.minus", [Diff_iff RS iffD1]),
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   944
   ("Int", [IntD1,IntD2]),
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   945
   ("Collect", [CollectD]), ("Inter", [InterD]), ("INTER", [INT_D])]
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   946
 *)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   947
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   948
ML {*
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   949
  val mksimps_pairs = [(@{const_name Ball}, @{thms bspec})] @ mksimps_pairs;
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   950
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   951
declaration {* fn _ =>
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   952
  Simplifier.map_ss (fn ss => ss setmksimps (mksimps mksimps_pairs))
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   953
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   954
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   955
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   956
subsection {* Complete lattices *}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   957
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   958
notation
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   959
  less_eq  (infix "\<sqsubseteq>" 50) and
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   960
  less (infix "\<sqsubset>" 50) and
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   961
  inf  (infixl "\<sqinter>" 70) and
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   962
  sup  (infixl "\<squnion>" 65)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   963
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   964
class complete_lattice = lattice + bot + top +
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   965
  fixes Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   966
    and Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   967
  assumes Inf_lower: "x \<in> A \<Longrightarrow> \<Sqinter>A \<sqsubseteq> x"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   968
     and Inf_greatest: "(\<And>x. x \<in> A \<Longrightarrow> z \<sqsubseteq> x) \<Longrightarrow> z \<sqsubseteq> \<Sqinter>A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   969
  assumes Sup_upper: "x \<in> A \<Longrightarrow> x \<sqsubseteq> \<Squnion>A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   970
     and Sup_least: "(\<And>x. x \<in> A \<Longrightarrow> x \<sqsubseteq> z) \<Longrightarrow> \<Squnion>A \<sqsubseteq> z"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   971
begin
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   972
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   973
lemma Inf_Sup: "\<Sqinter>A = \<Squnion>{b. \<forall>a \<in> A. b \<le> a}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   974
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   975
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   976
lemma Sup_Inf:  "\<Squnion>A = \<Sqinter>{b. \<forall>a \<in> A. a \<le> b}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   977
  by (auto intro: antisym Inf_lower Inf_greatest Sup_upper Sup_least)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   978
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   979
lemma Inf_Univ: "\<Sqinter>UNIV = \<Squnion>{}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   980
  unfolding Sup_Inf by (auto simp add: UNIV_def)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   981
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   982
lemma Sup_Univ: "\<Squnion>UNIV = \<Sqinter>{}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   983
  unfolding Inf_Sup by (auto simp add: UNIV_def)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   984
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   985
lemma Inf_insert: "\<Sqinter>insert a A = a \<sqinter> \<Sqinter>A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   986
  by (auto intro: le_infI le_infI1 le_infI2 antisym Inf_greatest Inf_lower)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   987
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   988
lemma Sup_insert: "\<Squnion>insert a A = a \<squnion> \<Squnion>A"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   989
  by (auto intro: le_supI le_supI1 le_supI2 antisym Sup_least Sup_upper)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   990
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   991
lemma Inf_singleton [simp]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   992
  "\<Sqinter>{a} = a"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   993
  by (auto intro: antisym Inf_lower Inf_greatest)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   994
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   995
lemma Sup_singleton [simp]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   996
  "\<Squnion>{a} = a"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   997
  by (auto intro: antisym Sup_upper Sup_least)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   998
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   999
lemma Inf_insert_simp:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1000
  "\<Sqinter>insert a A = (if A = {} then a else a \<sqinter> \<Sqinter>A)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1001
  by (cases "A = {}") (simp_all, simp add: Inf_insert)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1002
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1003
lemma Sup_insert_simp:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1004
  "\<Squnion>insert a A = (if A = {} then a else a \<squnion> \<Squnion>A)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1005
  by (cases "A = {}") (simp_all, simp add: Sup_insert)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1006
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1007
lemma Inf_binary:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1008
  "\<Sqinter>{a, b} = a \<sqinter> b"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1009
  by (auto simp add: Inf_insert_simp)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1010
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1011
lemma Sup_binary:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1012
  "\<Squnion>{a, b} = a \<squnion> b"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1013
  by (auto simp add: Sup_insert_simp)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1014
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1015
lemma bot_def:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1016
  "bot = \<Squnion>{}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1017
  by (auto intro: antisym Sup_least)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1018
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1019
lemma top_def:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1020
  "top = \<Sqinter>{}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1021
  by (auto intro: antisym Inf_greatest)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1022
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1023
lemma sup_bot [simp]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1024
  "x \<squnion> bot = x"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1025
  using bot_least [of x] by (simp add: le_iff_sup sup_commute)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1026
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1027
lemma inf_top [simp]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1028
  "x \<sqinter> top = x"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1029
  using top_greatest [of x] by (simp add: le_iff_inf inf_commute)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1030
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1031
definition SUPR :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1032
  "SUPR A f == \<Squnion> (f ` A)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1033
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1034
definition INFI :: "'b set \<Rightarrow> ('b \<Rightarrow> 'a) \<Rightarrow> 'a" where
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1035
  "INFI A f == \<Sqinter> (f ` A)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1036
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1037
end
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1038
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1039
syntax
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1040
  "_SUP1"     :: "pttrns => 'b => 'b"           ("(3SUP _./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1041
  "_SUP"      :: "pttrn => 'a set => 'b => 'b"  ("(3SUP _:_./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1042
  "_INF1"     :: "pttrns => 'b => 'b"           ("(3INF _./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1043
  "_INF"      :: "pttrn => 'a set => 'b => 'b"  ("(3INF _:_./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1044
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1045
translations
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1046
  "SUP x y. B"   == "SUP x. SUP y. B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1047
  "SUP x. B"     == "CONST SUPR CONST UNIV (%x. B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1048
  "SUP x. B"     == "SUP x:CONST UNIV. B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1049
  "SUP x:A. B"   == "CONST SUPR A (%x. B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1050
  "INF x y. B"   == "INF x. INF y. B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1051
  "INF x. B"     == "CONST INFI CONST UNIV (%x. B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1052
  "INF x. B"     == "INF x:CONST UNIV. B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1053
  "INF x:A. B"   == "CONST INFI A (%x. B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1054
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1055
(* To avoid eta-contraction of body: *)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1056
print_translation {*
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1057
let
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1058
  fun btr' syn (A :: Abs abs :: ts) =
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1059
    let val (x,t) = atomic_abs_tr' abs
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1060
    in list_comb (Syntax.const syn $ x $ A $ t, ts) end
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1061
  val const_syntax_name = Sign.const_syntax_name @{theory} o fst o dest_Const
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1062
in
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1063
[(const_syntax_name @{term SUPR}, btr' "_SUP"),(const_syntax_name @{term "INFI"}, btr' "_INF")]
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1064
end
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1065
*}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1066
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1067
context complete_lattice
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1068
begin
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1069
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1070
lemma le_SUPI: "i : A \<Longrightarrow> M i \<le> (SUP i:A. M i)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1071
  by (auto simp add: SUPR_def intro: Sup_upper)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1072
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1073
lemma SUP_leI: "(\<And>i. i : A \<Longrightarrow> M i \<le> u) \<Longrightarrow> (SUP i:A. M i) \<le> u"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1074
  by (auto simp add: SUPR_def intro: Sup_least)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1075
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1076
lemma INF_leI: "i : A \<Longrightarrow> (INF i:A. M i) \<le> M i"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1077
  by (auto simp add: INFI_def intro: Inf_lower)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1078
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1079
lemma le_INFI: "(\<And>i. i : A \<Longrightarrow> u \<le> M i) \<Longrightarrow> u \<le> (INF i:A. M i)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1080
  by (auto simp add: INFI_def intro: Inf_greatest)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1081
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1082
lemma SUP_const[simp]: "A \<noteq> {} \<Longrightarrow> (SUP i:A. M) = M"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1083
  by (auto intro: antisym SUP_leI le_SUPI)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1084
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1085
lemma INF_const[simp]: "A \<noteq> {} \<Longrightarrow> (INF i:A. M) = M"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1086
  by (auto intro: antisym INF_leI le_INFI)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1087
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1088
end
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1089
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1090
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1091
subsubsection {* @{typ bool} and @{typ "_ \<Rightarrow> _"} as complete lattice *}
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1092
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1093
instantiation bool :: complete_lattice
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1094
begin
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1095
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1096
definition
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1097
  Inf_bool_def: "\<Sqinter>A \<longleftrightarrow> (\<forall>x\<in>A. x)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1098
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1099
definition
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1100
  Sup_bool_def: "\<Squnion>A \<longleftrightarrow> (\<exists>x\<in>A. x)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1101
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1102
instance proof
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1103
qed (auto simp add: Inf_bool_def Sup_bool_def le_bool_def)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1104
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1105
end
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1106
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1107
lemma Inf_empty_bool [simp]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1108
  "\<Sqinter>{}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1109
  unfolding Inf_bool_def by auto
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1110
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1111
lemma not_Sup_empty_bool [simp]:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1112
  "\<not> \<Squnion>{}"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1113
  unfolding Sup_bool_def by auto
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1114
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1115
instantiation "fun" :: (type, complete_lattice) complete_lattice
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1116
begin
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1117
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1118
definition
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1119
  Inf_fun_def [code del]: "\<Sqinter>A = (\<lambda>x. \<Sqinter>{y. \<exists>f\<in>A. y = f x})"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1120
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1121
definition
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1122
  Sup_fun_def [code del]: "\<Squnion>A = (\<lambda>x. \<Squnion>{y. \<exists>f\<in>A. y = f x})"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1123
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1124
instance proof
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1125
qed (auto simp add: Inf_fun_def Sup_fun_def le_fun_def
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1126
  intro: Inf_lower Sup_upper Inf_greatest Sup_least)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1127
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1128
end
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1129
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1130
lemma Inf_empty_fun:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1131
  "\<Sqinter>{} = (\<lambda>_. \<Sqinter>{})"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1132
  by rule (simp add: Inf_fun_def, simp add: empty_def)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1133
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1134
lemma Sup_empty_fun:
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1135
  "\<Squnion>{} = (\<lambda>_. \<Squnion>{})"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1136
  by rule (simp add: Sup_fun_def, simp add: empty_def)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1137
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1138
32115
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1139
subsubsection {* Union *}
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1140
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1141
definition Union :: "'a set set \<Rightarrow> 'a set" where
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1142
  Union_eq [code del]: "Union A = {x. \<exists>B \<in> A. x \<in> B}"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1143
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1144
notation (xsymbols)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1145
  Union  ("\<Union>_" [90] 90)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1146
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1147
lemma Sup_set_eq:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1148
  "\<Squnion>S = \<Union>S"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1149
proof (rule set_ext)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1150
  fix x
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1151
  have "(\<exists>Q\<in>{P. \<exists>A\<in>S. P \<longleftrightarrow> x \<in> A}. Q) \<longleftrightarrow> (\<exists>A\<in>S. x \<in> A)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1152
    by auto
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1153
  then show "x \<in> \<Squnion>S \<longleftrightarrow> x \<in> \<Union>S"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1154
    by (simp add: Sup_fun_def Sup_bool_def Union_eq) (simp add: mem_def)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1155
qed
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1156
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1157
lemma Union_iff [simp, noatp]:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1158
  "A \<in> \<Union>C \<longleftrightarrow> (\<exists>X\<in>C. A\<in>X)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1159
  by (unfold Union_eq) blast
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1160
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1161
lemma UnionI [intro]:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1162
  "X \<in> C \<Longrightarrow> A \<in> X \<Longrightarrow> A \<in> \<Union>C"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1163
  -- {* The order of the premises presupposes that @{term C} is rigid;
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1164
    @{term A} may be flexible. *}
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1165
  by auto
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1166
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1167
lemma UnionE [elim!]:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1168
  "A \<in> \<Union>C \<Longrightarrow> (\<And>X. A\<in>X \<Longrightarrow> X\<in>C \<Longrightarrow> R) \<Longrightarrow> R"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1169
  by auto
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1170
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1171
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1172
subsubsection {* Unions of families *}
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1173
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1174
definition UNION :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
32115
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1175
  UNION_eq_Union_image: "UNION A B = \<Union>(B`A)"
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1176
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1177
syntax
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1178
  "@UNION1"     :: "pttrns => 'b set => 'b set"           ("(3UN _./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1179
  "@UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3UN _:_./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1180
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1181
syntax (xsymbols)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1182
  "@UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>_./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1183
  "@UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>_\<in>_./ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1184
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1185
syntax (latex output)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1186
  "@UNION1"     :: "pttrns => 'b set => 'b set"           ("(3\<Union>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1187
  "@UNION"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Union>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 10] 10)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1188
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1189
translations
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1190
  "UN x y. B"   == "UN x. UN y. B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1191
  "UN x. B"     == "CONST UNION CONST UNIV (%x. B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1192
  "UN x. B"     == "UN x:CONST UNIV. B"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1193
  "UN x:A. B"   == "CONST UNION A (%x. B)"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1194
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1195
text {*
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1196
  Note the difference between ordinary xsymbol syntax of indexed
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1197
  unions and intersections (e.g.\ @{text"\<Union>a\<^isub>1\<in>A\<^isub>1. B"})
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1198
  and their \LaTeX\ rendition: @{term"\<Union>a\<^isub>1\<in>A\<^isub>1. B"}. The
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1199
  former does not make the index expression a subscript of the
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1200
  union/intersection symbol because this leads to problems with nested
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1201
  subscripts in Proof General.
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1202
*}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1203
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1204
(* To avoid eta-contraction of body: *)
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1205
print_translation {*
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1206
let
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1207
  fun btr' syn [A, Abs abs] =
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1208
    let val (x, t) = atomic_abs_tr' abs
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1209
    in Syntax.const syn $ x $ A $ t end
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1210
in [(@{const_syntax UNION}, btr' "@UNION")] end
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1211
*}
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1212
32115
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1213
lemma SUPR_set_eq:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1214
  "(SUP x:S. f x) = (\<Union>x\<in>S. f x)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1215
  by (simp add: SUPR_def UNION_eq_Union_image Sup_set_eq)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1216
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1217
lemma Union_def:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1218
  "\<Union>S \<equiv> \<Union>x\<in>S. x"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1219
  by (simp add: UNION_eq_Union_image image_def)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1220
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1221
lemma UNION_def [noatp]:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1222
  "UNION A B \<equiv> {y. \<exists>x\<in>A. y \<in> B x}"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1223
  by (rule eq_reflection) (auto simp add: UNION_eq_Union_image Union_eq)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1224
  
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1225
lemma Union_image_eq [simp]:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1226
  "\<Union>(B`A) = (\<Union>x\<in>A. B x)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1227
  by (rule sym) (fact UNION_eq_Union_image)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1228
  
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1229
lemma UN_iff [simp]: "(b: (UN x:A. B x)) = (EX x:A. b: B x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1230
  by (unfold UNION_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1231
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1232
lemma UN_I [intro]: "a:A ==> b: B a ==> b: (UN x:A. B x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1233
  -- {* The order of the premises presupposes that @{term A} is rigid;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1234
    @{term b} may be flexible. *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1235
  by auto
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1236
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1237
lemma UN_E [elim!]: "b : (UN x:A. B x) ==> (!!x. x:A ==> b: B x ==> R) ==> R"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1238
  by (unfold UNION_def) blast
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
  1239
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1240
lemma UN_cong [cong]:
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1241
    "A = B ==> (!!x. x:B ==> C x = D x) ==> (UN x:A. C x) = (UN x:B. D x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1242
  by (simp add: UNION_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1243
29691
9f03b5f847cd Added strong congruence rule for UN.
berghofe
parents: 28562
diff changeset
  1244
lemma strong_UN_cong:
9f03b5f847cd Added strong congruence rule for UN.
berghofe
parents: 28562
diff changeset
  1245
    "A = B ==> (!!x. x:B =simp=> C x = D x) ==> (UN x:A. C x) = (UN x:B. D x)"
9f03b5f847cd Added strong congruence rule for UN.
berghofe
parents: 28562
diff changeset
  1246
  by (simp add: UNION_def simp_implies_def)
9f03b5f847cd Added strong congruence rule for UN.
berghofe
parents: 28562
diff changeset
  1247
32077
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1248
lemma image_eq_UN: "f`A = (UN x:A. {f x})"
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1249
  by blast
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
  1250
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1251
32115
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1252
subsubsection {* Inter *}
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1253
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1254
definition Inter :: "'a set set \<Rightarrow> 'a set" where
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1255
  Inter_eq [code del]: "Inter A = {x. \<forall>B \<in> A. x \<in> B}"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1256
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1257
notation (xsymbols)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1258
  Inter  ("\<Inter>_" [90] 90)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1259
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1260
lemma Inf_set_eq:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1261
  "\<Sqinter>S = \<Inter>S"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1262
proof (rule set_ext)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1263
  fix x
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1264
  have "(\<forall>Q\<in>{P. \<exists>A\<in>S. P \<longleftrightarrow> x \<in> A}. Q) \<longleftrightarrow> (\<forall>A\<in>S. x \<in> A)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1265
    by auto
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1266
  then show "x \<in> \<Sqinter>S \<longleftrightarrow> x \<in> \<Inter>S"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1267
    by (simp add: Inter_eq Inf_fun_def Inf_bool_def) (simp add: mem_def)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1268
qed
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1269
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1270
lemma Inter_iff [simp,noatp]: "(A : Inter C) = (ALL X:C. A:X)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1271
  by (unfold Inter_eq) blast
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1272
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1273
lemma InterI [intro!]: "(!!X. X:C ==> A:X) ==> A : Inter C"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1274
  by (simp add: Inter_eq)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1275
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1276
text {*
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1277
  \medskip A ``destruct'' rule -- every @{term X} in @{term C}
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1278
  contains @{term A} as an element, but @{prop "A:X"} can hold when
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1279
  @{prop "X:C"} does not!  This rule is analogous to @{text spec}.
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1280
*}
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1281
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1282
lemma InterD [elim]: "A : Inter C ==> X:C ==> A:X"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1283
  by auto
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1284
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1285
lemma InterE [elim]: "A : Inter C ==> (X~:C ==> R) ==> (A:X ==> R) ==> R"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1286
  -- {* ``Classical'' elimination rule -- does not require proving
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1287
    @{prop "X:C"}. *}
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1288
  by (unfold Inter_eq) blast
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1289
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1290
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1291
subsubsection {* Intersections of families *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1292
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1293
definition INTER :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set" where
32115
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1294
  INTER_eq_Inter_image: "INTER A B = \<Inter>(B`A)"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1295
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1296
syntax
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1297
  "@INTER1"     :: "pttrns => 'b set => 'b set"           ("(3INT _./ _)" [0, 10] 10)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1298
  "@INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3INT _:_./ _)" [0, 10] 10)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1299
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1300
syntax (xsymbols)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1301
  "@INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>_./ _)" [0, 10] 10)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1302
  "@INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>_\<in>_./ _)" [0, 10] 10)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1303
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1304
syntax (latex output)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1305
  "@INTER1"     :: "pttrns => 'b set => 'b set"           ("(3\<Inter>(00\<^bsub>_\<^esub>)/ _)" [0, 10] 10)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1306
  "@INTER"      :: "pttrn => 'a set => 'b set => 'b set"  ("(3\<Inter>(00\<^bsub>_\<in>_\<^esub>)/ _)" [0, 10] 10)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1307
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1308
translations
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1309
  "INT x y. B"  == "INT x. INT y. B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1310
  "INT x. B"    == "CONST INTER CONST UNIV (%x. B)"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1311
  "INT x. B"    == "INT x:CONST UNIV. B"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1312
  "INT x:A. B"  == "CONST INTER A (%x. B)"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1313
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1314
(* To avoid eta-contraction of body: *)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1315
print_translation {*
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1316
let
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1317
  fun btr' syn [A, Abs abs] =
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1318
    let val (x, t) = atomic_abs_tr' abs
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1319
    in Syntax.const syn $ x $ A $ t end
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1320
in [(@{const_syntax INTER}, btr' "@INTER")] end
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1321
*}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1322
32115
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1323
lemma INFI_set_eq:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1324
  "(INF x:S. f x) = (\<Inter>x\<in>S. f x)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1325
  by (simp add: INFI_def INTER_eq_Inter_image Inf_set_eq)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1326
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1327
lemma Inter_def:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1328
  "Inter S \<equiv> INTER S (\<lambda>x. x)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1329
  by (simp add: INTER_eq_Inter_image image_def)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1330
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1331
lemma INTER_def:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1332
  "INTER A B \<equiv> {y. \<forall>x\<in>A. y \<in> B x}"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1333
  by (rule eq_reflection) (auto simp add: INTER_eq_Inter_image Inter_eq)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1334
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1335
lemma Inter_image_eq [simp]:
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1336
  "\<Inter>(B`A) = (\<Inter>x\<in>A. B x)"
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1337
  by (rule sym) (fact INTER_eq_Inter_image)
8f10fb3bb46e swapped bootstrap order of UNION/Union and INTER/Inter in theory Set
haftmann
parents: 32082
diff changeset
  1338
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1339
lemma INT_iff [simp]: "(b: (INT x:A. B x)) = (ALL x:A. b: B x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1340
  by (unfold INTER_def) blast
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
  1341
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1342
lemma INT_I [intro!]: "(!!x. x:A ==> b: B x) ==> b : (INT x:A. B x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1343
  by (unfold INTER_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1344
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1345
lemma INT_D [elim]: "b : (INT x:A. B x) ==> a:A ==> b: B a"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1346
  by auto
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1347
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1348
lemma INT_E [elim]: "b : (INT x:A. B x) ==> (b: B a ==> R) ==> (a~:A ==> R) ==> R"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1349
  -- {* "Classical" elimination -- by the Excluded Middle on @{prop "a:A"}. *}
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1350
  by (unfold INTER_def) blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1351
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1352
lemma INT_cong [cong]:
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1353
    "A = B ==> (!!x. x:B ==> C x = D x) ==> (INT x:A. C x) = (INT x:B. D x)"
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  1354
  by (simp add: INTER_def)
7238
36e58620ffc8 replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents: 5931
diff changeset
  1355
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
  1356
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1357
no_notation
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1358
  less_eq  (infix "\<sqsubseteq>" 50) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1359
  less (infix "\<sqsubset>" 50) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1360
  inf  (infixl "\<sqinter>" 70) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1361
  sup  (infixl "\<squnion>" 65) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1362
  Inf  ("\<Sqinter>_" [900] 900) and
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1363
  Sup  ("\<Squnion>_" [900] 900)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1364
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1365
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1366
subsection {* Further operations and lemmas *}
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1367
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1368
subsubsection {* The ``proper subset'' relation *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1369
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1370
lemma psubsetI [intro!,noatp]: "A \<subseteq> B ==> A \<noteq> B ==> A \<subset> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1371
  by (unfold less_le) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1372
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1373
lemma psubsetE [elim!,noatp]: 
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1374
    "[|A \<subset> B;  [|A \<subseteq> B; ~ (B\<subseteq>A)|] ==> R|] ==> R"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1375
  by (unfold less_le) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1376
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1377
lemma psubset_insert_iff:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1378
  "(A \<subset> insert x B) = (if x \<in> B then A \<subset> B else if x \<in> A then A - {x} \<subset> B else A \<subseteq> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1379
  by (auto simp add: less_le subset_insert_iff)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1380
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1381
lemma psubset_eq: "(A \<subset> B) = (A \<subseteq> B & A \<noteq> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1382
  by (simp only: less_le)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1383
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1384
lemma psubset_imp_subset: "A \<subset> B ==> A \<subseteq> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1385
  by (simp add: psubset_eq)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1386
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1387
lemma psubset_trans: "[| A \<subset> B; B \<subset> C |] ==> A \<subset> C"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1388
apply (unfold less_le)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1389
apply (auto dest: subset_antisym)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1390
done
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1391
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1392
lemma psubsetD: "[| A \<subset> B; c \<in> A |] ==> c \<in> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1393
apply (unfold less_le)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1394
apply (auto dest: subsetD)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1395
done
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1396
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1397
lemma psubset_subset_trans: "A \<subset> B ==> B \<subseteq> C ==> A \<subset> C"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1398
  by (auto simp add: psubset_eq)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1399
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1400
lemma subset_psubset_trans: "A \<subseteq> B ==> B \<subset> C ==> A \<subset> C"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1401
  by (auto simp add: psubset_eq)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1402
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1403
lemma psubset_imp_ex_mem: "A \<subset> B ==> \<exists>b. b \<in> (B - A)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1404
  by (unfold less_le) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1405
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1406
lemma atomize_ball:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1407
    "(!!x. x \<in> A ==> P x) == Trueprop (\<forall>x\<in>A. P x)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1408
  by (simp only: Ball_def atomize_all atomize_imp)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1409
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1410
lemmas [symmetric, rulify] = atomize_ball
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1411
  and [symmetric, defn] = atomize_ball
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1412
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1413
subsubsection {* Derived rules involving subsets. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1414
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1415
text {* @{text insert}. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1416
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1417
lemma subset_insertI: "B \<subseteq> insert a B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1418
  by (rule subsetI) (erule insertI2)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1419
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1420
lemma subset_insertI2: "A \<subseteq> B \<Longrightarrow> A \<subseteq> insert b B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1421
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1422
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1423
lemma subset_insert: "x \<notin> A ==> (A \<subseteq> insert x B) = (A \<subseteq> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1424
  by blast
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1425
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1426
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1427
text {* \medskip Big Union -- least upper bound of a set. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1428
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1429
lemma Union_upper: "B \<in> A ==> B \<subseteq> Union A"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  1430
  by (iprover intro: subsetI UnionI)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1431
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1432
lemma Union_least: "(!!X. X \<in> A ==> X \<subseteq> C) ==> Union A \<subseteq> C"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  1433
  by (iprover intro: subsetI elim: UnionE dest: subsetD)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1434
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1435
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1436
text {* \medskip General union. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1437
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1438
lemma UN_upper: "a \<in> A ==> B a \<subseteq> (\<Union>x\<in>A. B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1439
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1440
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1441
lemma UN_least: "(!!x. x \<in> A ==> B x \<subseteq> C) ==> (\<Union>x\<in>A. B x) \<subseteq> C"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  1442
  by (iprover intro: subsetI elim: UN_E dest: subsetD)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1443
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1444
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1445
text {* \medskip Big Intersection -- greatest lower bound of a set. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1446
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1447
lemma Inter_lower: "B \<in> A ==> Inter A \<subseteq> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1448
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1449
14551
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14479
diff changeset
  1450
lemma Inter_subset:
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14479
diff changeset
  1451
  "[| !!X. X \<in> A ==> X \<subseteq> B; A ~= {} |] ==> \<Inter>A \<subseteq> B"
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14479
diff changeset
  1452
  by blast
2cb6ff394bfb Various changes to HOL-Algebra;
ballarin
parents: 14479
diff changeset
  1453
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1454
lemma Inter_greatest: "(!!X. X \<in> A ==> C \<subseteq> X) ==> C \<subseteq> Inter A"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  1455
  by (iprover intro: InterI subsetI dest: subsetD)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1456
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1457
lemma INT_lower: "a \<in> A ==> (\<Inter>x\<in>A. B x) \<subseteq> B a"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1458
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1459
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1460
lemma INT_greatest: "(!!x. x \<in> A ==> C \<subseteq> B x) ==> C \<subseteq> (\<Inter>x\<in>A. B x)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  1461
  by (iprover intro: INT_I subsetI dest: subsetD)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1462
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1463
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1464
text {* \medskip Finite Union -- the least upper bound of two sets. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1465
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1466
lemma Un_upper1: "A \<subseteq> A \<union> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1467
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1468
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1469
lemma Un_upper2: "B \<subseteq> A \<union> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1470
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1471
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1472
lemma Un_least: "A \<subseteq> C ==> B \<subseteq> C ==> A \<union> B \<subseteq> C"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1473
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1474
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1475
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1476
text {* \medskip Finite Intersection -- the greatest lower bound of two sets. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1477
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1478
lemma Int_lower1: "A \<inter> B \<subseteq> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1479
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1480
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1481
lemma Int_lower2: "A \<inter> B \<subseteq> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1482
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1483
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1484
lemma Int_greatest: "C \<subseteq> A ==> C \<subseteq> B ==> C \<subseteq> A \<inter> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1485
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1486
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1487
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1488
text {* \medskip Set difference. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1489
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1490
lemma Diff_subset: "A - B \<subseteq> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1491
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1492
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1493
lemma Diff_subset_conv: "(A - B \<subseteq> C) = (A \<subseteq> B \<union> C)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1494
by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1495
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1496
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1497
subsubsection {* Equalities involving union, intersection, inclusion, etc. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1498
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1499
text {* @{text "{}"}. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1500
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1501
lemma Collect_const [simp]: "{s. P} = (if P then UNIV else {})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1502
  -- {* supersedes @{text "Collect_False_empty"} *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1503
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1504
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1505
lemma subset_empty [simp]: "(A \<subseteq> {}) = (A = {})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1506
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1507
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1508
lemma not_psubset_empty [iff]: "\<not> (A < {})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1509
  by (unfold less_le) blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1510
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1511
lemma Collect_empty_eq [simp]: "(Collect P = {}) = (\<forall>x. \<not> P x)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1512
by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1513
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1514
lemma empty_Collect_eq [simp]: "({} = Collect P) = (\<forall>x. \<not> P x)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1515
by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1516
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1517
lemma Collect_neg_eq: "{x. \<not> P x} = - {x. P x}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1518
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1519
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1520
lemma Collect_disj_eq: "{x. P x | Q x} = {x. P x} \<union> {x. Q x}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1521
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1522
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1523
lemma Collect_imp_eq: "{x. P x --> Q x} = -{x. P x} \<union> {x. Q x}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1524
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1525
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1526
lemma Collect_conj_eq: "{x. P x & Q x} = {x. P x} \<inter> {x. Q x}"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1527
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1528
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1529
lemma Collect_all_eq: "{x. \<forall>y. P x y} = (\<Inter>y. {x. P x y})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1530
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1531
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1532
lemma Collect_ball_eq: "{x. \<forall>y\<in>A. P x y} = (\<Inter>y\<in>A. {x. P x y})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1533
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1534
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1535
lemma Collect_ex_eq [noatp]: "{x. \<exists>y. P x y} = (\<Union>y. {x. P x y})"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1536
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1537
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1538
lemma Collect_bex_eq [noatp]: "{x. \<exists>y\<in>A. P x y} = (\<Union>y\<in>A. {x. P x y})"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1539
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1540
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1541
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1542
text {* \medskip @{text insert}. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1543
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1544
lemma insert_is_Un: "insert a A = {a} Un A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1545
  -- {* NOT SUITABLE FOR REWRITING since @{text "{a} == insert a {}"} *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1546
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1547
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1548
lemma insert_not_empty [simp]: "insert a A \<noteq> {}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1549
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1550
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1551
lemmas empty_not_insert = insert_not_empty [symmetric, standard]
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1552
declare empty_not_insert [simp]
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1553
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1554
lemma insert_absorb: "a \<in> A ==> insert a A = A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1555
  -- {* @{text "[simp]"} causes recursive calls when there are nested inserts *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1556
  -- {* with \emph{quadratic} running time *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1557
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1558
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1559
lemma insert_absorb2 [simp]: "insert x (insert x A) = insert x A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1560
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1561
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1562
lemma insert_commute: "insert x (insert y A) = insert y (insert x A)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1563
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1564
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1565
lemma insert_subset [simp]: "(insert x A \<subseteq> B) = (x \<in> B & A \<subseteq> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1566
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1567
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1568
lemma mk_disjoint_insert: "a \<in> A ==> \<exists>B. A = insert a B & a \<notin> B"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1569
  -- {* use new @{text B} rather than @{text "A - {a}"} to avoid infinite unfolding *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1570
  apply (rule_tac x = "A - {a}" in exI, blast)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1571
  done
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1572
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1573
lemma insert_Collect: "insert a (Collect P) = {u. u \<noteq> a --> P u}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1574
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1575
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1576
lemma UN_insert_distrib: "u \<in> A ==> (\<Union>x\<in>A. insert a (B x)) = insert a (\<Union>x\<in>A. B x)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1577
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1578
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1579
lemma insert_inter_insert[simp]: "insert a A \<inter> insert a B = insert a (A \<inter> B)"
14742
dde816115d6a New simp rules added:
mehta
parents: 14692
diff changeset
  1580
  by blast
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  1581
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1582
lemma insert_disjoint [simp,noatp]:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1583
 "(insert a A \<inter> B = {}) = (a \<notin> B \<and> A \<inter> B = {})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1584
 "({} = insert a A \<inter> B) = (a \<notin> B \<and> {} = A \<inter> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1585
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1586
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1587
lemma disjoint_insert [simp,noatp]:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1588
 "(B \<inter> insert a A = {}) = (a \<notin> B \<and> B \<inter> A = {})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1589
 "({} = A \<inter> insert b B) = (b \<notin> A \<and> {} = A \<inter> B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1590
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1591
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1592
text {* \medskip @{text image}. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1593
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1594
lemma image_empty [simp]: "f`{} = {}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1595
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1596
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1597
lemma image_insert [simp]: "f ` insert a B = insert (f a) (f`B)"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1598
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1599
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1600
lemma image_constant: "x \<in> A ==> (\<lambda>x. c) ` A = {c}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1601
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1602
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1603
lemma image_constant_conv: "(%x. c) ` A = (if A = {} then {} else {c})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1604
by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1605
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1606
lemma image_image: "f ` (g ` A) = (\<lambda>x. f (g x)) ` A"
31441
428e4caf2299 finite lemmas
nipkow
parents: 31197
diff changeset
  1607
by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1608
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1609
lemma insert_image [simp]: "x \<in> A ==> insert (f x) (f`A) = f`A"
31441
428e4caf2299 finite lemmas
nipkow
parents: 31197
diff changeset
  1610
by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1611
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1612
lemma image_is_empty [iff]: "(f`A = {}) = (A = {})"
31441
428e4caf2299 finite lemmas
nipkow
parents: 31197
diff changeset
  1613
by blast
428e4caf2299 finite lemmas
nipkow
parents: 31197
diff changeset
  1614
428e4caf2299 finite lemmas
nipkow
parents: 31197
diff changeset
  1615
lemma empty_is_image[iff]: "({} = f ` A) = (A = {})"
428e4caf2299 finite lemmas
nipkow
parents: 31197
diff changeset
  1616
by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1617
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1618
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1619
lemma image_Collect [noatp]: "f ` {x. P x} = {f x | x. P x}"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1620
  -- {* NOT suitable as a default simprule: the RHS isn't simpler than the LHS,
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1621
      with its implicit quantifier and conjunction.  Also image enjoys better
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1622
      equational properties than does the RHS. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1623
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1624
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1625
lemma if_image_distrib [simp]:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1626
  "(\<lambda>x. if P x then f x else g x) ` S
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1627
    = (f ` (S \<inter> {x. P x})) \<union> (g ` (S \<inter> {x. \<not> P x}))"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1628
  by (auto simp add: image_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1629
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1630
lemma image_cong: "M = N ==> (!!x. x \<in> N ==> f x = g x) ==> f`M = g`N"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1631
  by (simp add: image_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1632
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1633
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1634
text {* \medskip @{text range}. *}
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  1635
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1636
lemma full_SetCompr_eq [noatp]: "{u. \<exists>x. u = f x} = range f"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1637
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1638
27418
564117b58d73 remove simp attribute from range_composition
huffman
parents: 27106
diff changeset
  1639
lemma range_composition: "range (\<lambda>x. f (g x)) = f`range g"
14208
144f45277d5a misc tidying
paulson
parents: 14098
diff changeset
  1640
by (subst image_image, simp)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1641
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1642
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1643
text {* \medskip @{text Int} *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1644
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1645
lemma Int_absorb [simp]: "A \<inter> A = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1646
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1647
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1648
lemma Int_left_absorb: "A \<inter> (A \<inter> B) = A \<inter> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1649
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1650
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1651
lemma Int_commute: "A \<inter> B = B \<inter> A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1652
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1653
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1654
lemma Int_left_commute: "A \<inter> (B \<inter> C) = B \<inter> (A \<inter> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1655
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1656
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1657
lemma Int_assoc: "(A \<inter> B) \<inter> C = A \<inter> (B \<inter> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1658
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1659
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1660
lemmas Int_ac = Int_assoc Int_left_absorb Int_commute Int_left_commute
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1661
  -- {* Intersection is an AC-operator *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1662
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1663
lemma Int_absorb1: "B \<subseteq> A ==> A \<inter> B = B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1664
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1665
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1666
lemma Int_absorb2: "A \<subseteq> B ==> A \<inter> B = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1667
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1668
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1669
lemma Int_empty_left [simp]: "{} \<inter> B = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1670
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1671
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1672
lemma Int_empty_right [simp]: "A \<inter> {} = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1673
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1674
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1675
lemma disjoint_eq_subset_Compl: "(A \<inter> B = {}) = (A \<subseteq> -B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1676
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1677
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1678
lemma disjoint_iff_not_equal: "(A \<inter> B = {}) = (\<forall>x\<in>A. \<forall>y\<in>B. x \<noteq> y)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1679
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1680
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1681
lemma Int_UNIV_left [simp]: "UNIV \<inter> B = B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1682
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1683
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1684
lemma Int_UNIV_right [simp]: "A \<inter> UNIV = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1685
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1686
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1687
lemma Int_eq_Inter: "A \<inter> B = \<Inter>{A, B}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1688
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1689
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1690
lemma Int_Un_distrib: "A \<inter> (B \<union> C) = (A \<inter> B) \<union> (A \<inter> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1691
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1692
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1693
lemma Int_Un_distrib2: "(B \<union> C) \<inter> A = (B \<inter> A) \<union> (C \<inter> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1694
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1695
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1696
lemma Int_UNIV [simp,noatp]: "(A \<inter> B = UNIV) = (A = UNIV & B = UNIV)"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1697
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1698
15102
04b0e943fcc9 new simprules Int_subset_iff and Un_subset_iff
paulson
parents: 14981
diff changeset
  1699
lemma Int_subset_iff [simp]: "(C \<subseteq> A \<inter> B) = (C \<subseteq> A & C \<subseteq> B)"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1700
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1701
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1702
lemma Int_Collect: "(x \<in> A \<inter> {x. P x}) = (x \<in> A & P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1703
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1704
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1705
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1706
text {* \medskip @{text Un}. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1707
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1708
lemma Un_absorb [simp]: "A \<union> A = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1709
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1710
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1711
lemma Un_left_absorb: "A \<union> (A \<union> B) = A \<union> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1712
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1713
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1714
lemma Un_commute: "A \<union> B = B \<union> A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1715
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1716
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1717
lemma Un_left_commute: "A \<union> (B \<union> C) = B \<union> (A \<union> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1718
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1719
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1720
lemma Un_assoc: "(A \<union> B) \<union> C = A \<union> (B \<union> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1721
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1722
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1723
lemmas Un_ac = Un_assoc Un_left_absorb Un_commute Un_left_commute
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1724
  -- {* Union is an AC-operator *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1725
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1726
lemma Un_absorb1: "A \<subseteq> B ==> A \<union> B = B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1727
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1728
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1729
lemma Un_absorb2: "B \<subseteq> A ==> A \<union> B = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1730
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1731
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1732
lemma Un_empty_left [simp]: "{} \<union> B = B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1733
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1734
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1735
lemma Un_empty_right [simp]: "A \<union> {} = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1736
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1737
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1738
lemma Un_UNIV_left [simp]: "UNIV \<union> B = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1739
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1740
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1741
lemma Un_UNIV_right [simp]: "A \<union> UNIV = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1742
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1743
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1744
lemma Un_eq_Union: "A \<union> B = \<Union>{A, B}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1745
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1746
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1747
lemma Un_insert_left [simp]: "(insert a B) \<union> C = insert a (B \<union> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1748
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1749
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1750
lemma Un_insert_right [simp]: "A \<union> (insert a B) = insert a (A \<union> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1751
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1752
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1753
lemma Int_insert_left:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1754
    "(insert a B) Int C = (if a \<in> C then insert a (B \<inter> C) else B \<inter> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1755
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1756
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1757
lemma Int_insert_right:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1758
    "A \<inter> (insert a B) = (if a \<in> A then insert a (A \<inter> B) else A \<inter> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1759
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1760
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1761
lemma Un_Int_distrib: "A \<union> (B \<inter> C) = (A \<union> B) \<inter> (A \<union> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1762
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1763
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1764
lemma Un_Int_distrib2: "(B \<inter> C) \<union> A = (B \<union> A) \<inter> (C \<union> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1765
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1766
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1767
lemma Un_Int_crazy:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1768
    "(A \<inter> B) \<union> (B \<inter> C) \<union> (C \<inter> A) = (A \<union> B) \<inter> (B \<union> C) \<inter> (C \<union> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1769
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1770
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1771
lemma subset_Un_eq: "(A \<subseteq> B) = (A \<union> B = B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1772
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1773
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1774
lemma Un_empty [iff]: "(A \<union> B = {}) = (A = {} & B = {})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1775
  by blast
15102
04b0e943fcc9 new simprules Int_subset_iff and Un_subset_iff
paulson
parents: 14981
diff changeset
  1776
04b0e943fcc9 new simprules Int_subset_iff and Un_subset_iff
paulson
parents: 14981
diff changeset
  1777
lemma Un_subset_iff [simp]: "(A \<union> B \<subseteq> C) = (A \<subseteq> C & B \<subseteq> C)"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1778
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1779
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1780
lemma Un_Diff_Int: "(A - B) \<union> (A \<inter> B) = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1781
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1782
22172
e7d6cb237b5e some new lemmas
paulson
parents: 22139
diff changeset
  1783
lemma Diff_Int2: "A \<inter> C - B \<inter> C = A \<inter> C - B"
e7d6cb237b5e some new lemmas
paulson
parents: 22139
diff changeset
  1784
  by blast
e7d6cb237b5e some new lemmas
paulson
parents: 22139
diff changeset
  1785
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1786
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1787
text {* \medskip Set complement *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1788
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1789
lemma Compl_disjoint [simp]: "A \<inter> -A = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1790
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1791
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1792
lemma Compl_disjoint2 [simp]: "-A \<inter> A = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1793
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1794
13818
274fda8cca4b new theorem Compl_partition2
paulson
parents: 13764
diff changeset
  1795
lemma Compl_partition: "A \<union> -A = UNIV"
274fda8cca4b new theorem Compl_partition2
paulson
parents: 13764
diff changeset
  1796
  by blast
274fda8cca4b new theorem Compl_partition2
paulson
parents: 13764
diff changeset
  1797
274fda8cca4b new theorem Compl_partition2
paulson
parents: 13764
diff changeset
  1798
lemma Compl_partition2: "-A \<union> A = UNIV"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1799
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1800
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1801
lemma double_complement [simp]: "- (-A) = (A::'a set)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1802
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1803
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1804
lemma Compl_Un [simp]: "-(A \<union> B) = (-A) \<inter> (-B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1805
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1806
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1807
lemma Compl_Int [simp]: "-(A \<inter> B) = (-A) \<union> (-B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1808
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1809
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1810
lemma Compl_UN [simp]: "-(\<Union>x\<in>A. B x) = (\<Inter>x\<in>A. -B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1811
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1812
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1813
lemma Compl_INT [simp]: "-(\<Inter>x\<in>A. B x) = (\<Union>x\<in>A. -B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1814
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1815
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1816
lemma subset_Compl_self_eq: "(A \<subseteq> -A) = (A = {})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1817
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1818
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1819
lemma Un_Int_assoc_eq: "((A \<inter> B) \<union> C = A \<inter> (B \<union> C)) = (C \<subseteq> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1820
  -- {* Halmos, Naive Set Theory, page 16. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1821
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1822
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1823
lemma Compl_UNIV_eq [simp]: "-UNIV = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1824
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1825
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1826
lemma Compl_empty_eq [simp]: "-{} = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1827
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1828
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1829
lemma Compl_subset_Compl_iff [iff]: "(-A \<subseteq> -B) = (B \<subseteq> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1830
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1831
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1832
lemma Compl_eq_Compl_iff [iff]: "(-A = -B) = (A = (B::'a set))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1833
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1834
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1835
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1836
text {* \medskip @{text Union}. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1837
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1838
lemma Union_empty [simp]: "Union({}) = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1839
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1840
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1841
lemma Union_UNIV [simp]: "Union UNIV = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1842
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1843
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1844
lemma Union_insert [simp]: "Union (insert a B) = a \<union> \<Union>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1845
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1846
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1847
lemma Union_Un_distrib [simp]: "\<Union>(A Un B) = \<Union>A \<union> \<Union>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1848
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1849
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1850
lemma Union_Int_subset: "\<Union>(A \<inter> B) \<subseteq> \<Union>A \<inter> \<Union>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1851
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1852
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1853
lemma Union_empty_conv [simp,noatp]: "(\<Union>A = {}) = (\<forall>x\<in>A. x = {})"
13653
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1854
  by blast
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1855
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1856
lemma empty_Union_conv [simp,noatp]: "({} = \<Union>A) = (\<forall>x\<in>A. x = {})"
13653
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1857
  by blast
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1858
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1859
lemma Union_disjoint: "(\<Union>C \<inter> A = {}) = (\<forall>B\<in>C. B \<inter> A = {})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1860
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1861
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1862
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1863
text {* \medskip @{text Inter}. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1864
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1865
lemma Inter_empty [simp]: "\<Inter>{} = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1866
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1867
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1868
lemma Inter_UNIV [simp]: "\<Inter>UNIV = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1869
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1870
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1871
lemma Inter_insert [simp]: "\<Inter>(insert a B) = a \<inter> \<Inter>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1872
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1873
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1874
lemma Inter_Un_subset: "\<Inter>A \<union> \<Inter>B \<subseteq> \<Inter>(A \<inter> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1875
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1876
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1877
lemma Inter_Un_distrib: "\<Inter>(A \<union> B) = \<Inter>A \<inter> \<Inter>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1878
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1879
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1880
lemma Inter_UNIV_conv [simp,noatp]:
13653
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1881
  "(\<Inter>A = UNIV) = (\<forall>x\<in>A. x = UNIV)"
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1882
  "(UNIV = \<Inter>A) = (\<forall>x\<in>A. x = UNIV)"
14208
144f45277d5a misc tidying
paulson
parents: 14098
diff changeset
  1883
  by blast+
13653
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1884
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1885
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1886
text {*
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1887
  \medskip @{text UN} and @{text INT}.
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1888
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1889
  Basic identities: *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1890
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  1891
lemma UN_empty [simp,noatp]: "(\<Union>x\<in>{}. B x) = {}"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1892
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1893
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1894
lemma UN_empty2 [simp]: "(\<Union>x\<in>A. {}) = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1895
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1896
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1897
lemma UN_singleton [simp]: "(\<Union>x\<in>A. {x}) = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1898
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1899
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1900
lemma UN_absorb: "k \<in> I ==> A k \<union> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. A i)"
15102
04b0e943fcc9 new simprules Int_subset_iff and Un_subset_iff
paulson
parents: 14981
diff changeset
  1901
  by auto
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1902
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1903
lemma INT_empty [simp]: "(\<Inter>x\<in>{}. B x) = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1904
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1905
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1906
lemma INT_absorb: "k \<in> I ==> A k \<inter> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. A i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1907
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1908
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1909
lemma UN_insert [simp]: "(\<Union>x\<in>insert a A. B x) = B a \<union> UNION A B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1910
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1911
24331
76f7a8c6e842 Made UN_Un simp
nipkow
parents: 24303
diff changeset
  1912
lemma UN_Un[simp]: "(\<Union>i \<in> A \<union> B. M i) = (\<Union>i\<in>A. M i) \<union> (\<Union>i\<in>B. M i)"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1913
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1914
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1915
lemma UN_UN_flatten: "(\<Union>x \<in> (\<Union>y\<in>A. B y). C x) = (\<Union>y\<in>A. \<Union>x\<in>B y. C x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1916
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1917
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1918
lemma UN_subset_iff: "((\<Union>i\<in>I. A i) \<subseteq> B) = (\<forall>i\<in>I. A i \<subseteq> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1919
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1920
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1921
lemma INT_subset_iff: "(B \<subseteq> (\<Inter>i\<in>I. A i)) = (\<forall>i\<in>I. B \<subseteq> A i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1922
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1923
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1924
lemma INT_insert [simp]: "(\<Inter>x \<in> insert a A. B x) = B a \<inter> INTER A B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1925
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1926
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1927
lemma INT_Un: "(\<Inter>i \<in> A \<union> B. M i) = (\<Inter>i \<in> A. M i) \<inter> (\<Inter>i\<in>B. M i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1928
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1929
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1930
lemma INT_insert_distrib:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1931
    "u \<in> A ==> (\<Inter>x\<in>A. insert a (B x)) = insert a (\<Inter>x\<in>A. B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1932
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1933
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1934
lemma image_Union: "f ` \<Union>S = (\<Union>x\<in>S. f ` x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1935
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1936
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1937
lemma UN_constant [simp]: "(\<Union>y\<in>A. c) = (if A = {} then {} else c)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1938
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1939
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1940
lemma INT_constant [simp]: "(\<Inter>y\<in>A. c) = (if A = {} then UNIV else c)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1941
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1942
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1943
lemma UN_eq: "(\<Union>x\<in>A. B x) = \<Union>({Y. \<exists>x\<in>A. Y = B x})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1944
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1945
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1946
lemma INT_eq: "(\<Inter>x\<in>A. B x) = \<Inter>({Y. \<exists>x\<in>A. Y = B x})"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1947
  -- {* Look: it has an \emph{existential} quantifier *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1948
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1949
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1950
lemma UNION_empty_conv[simp]:
13653
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1951
  "({} = (UN x:A. B x)) = (\<forall>x\<in>A. B x = {})"
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1952
  "((UN x:A. B x) = {}) = (\<forall>x\<in>A. B x = {})"
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1953
by blast+
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1954
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1955
lemma INTER_UNIV_conv[simp]:
13653
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1956
 "(UNIV = (INT x:A. B x)) = (\<forall>x\<in>A. B x = UNIV)"
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1957
 "((INT x:A. B x) = UNIV) = (\<forall>x\<in>A. B x = UNIV)"
ef123b9e8089 Added a few thms about UN/INT/{}/UNIV
nipkow
parents: 13624
diff changeset
  1958
by blast+
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1959
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1960
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1961
text {* \medskip Distributive laws: *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1962
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1963
lemma Int_Union: "A \<inter> \<Union>B = (\<Union>C\<in>B. A \<inter> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1964
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1965
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1966
lemma Int_Union2: "\<Union>B \<inter> A = (\<Union>C\<in>B. C \<inter> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1967
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1968
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1969
lemma Un_Union_image: "(\<Union>x\<in>C. A x \<union> B x) = \<Union>(A`C) \<union> \<Union>(B`C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1970
  -- {* Devlin, Fundamentals of Contemporary Set Theory, page 12, exercise 5: *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1971
  -- {* Union of a family of unions *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1972
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1973
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1974
lemma UN_Un_distrib: "(\<Union>i\<in>I. A i \<union> B i) = (\<Union>i\<in>I. A i) \<union> (\<Union>i\<in>I. B i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1975
  -- {* Equivalent version *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1976
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1977
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1978
lemma Un_Inter: "A \<union> \<Inter>B = (\<Inter>C\<in>B. A \<union> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1979
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1980
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1981
lemma Int_Inter_image: "(\<Inter>x\<in>C. A x \<inter> B x) = \<Inter>(A`C) \<inter> \<Inter>(B`C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1982
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1983
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1984
lemma INT_Int_distrib: "(\<Inter>i\<in>I. A i \<inter> B i) = (\<Inter>i\<in>I. A i) \<inter> (\<Inter>i\<in>I. B i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1985
  -- {* Equivalent version *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1986
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1987
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1988
lemma Int_UN_distrib: "B \<inter> (\<Union>i\<in>I. A i) = (\<Union>i\<in>I. B \<inter> A i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1989
  -- {* Halmos, Naive Set Theory, page 35. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1990
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1991
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1992
lemma Un_INT_distrib: "B \<union> (\<Inter>i\<in>I. A i) = (\<Inter>i\<in>I. B \<union> A i)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1993
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1994
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1995
lemma Int_UN_distrib2: "(\<Union>i\<in>I. A i) \<inter> (\<Union>j\<in>J. B j) = (\<Union>i\<in>I. \<Union>j\<in>J. A i \<inter> B j)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1996
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1997
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1998
lemma Un_INT_distrib2: "(\<Inter>i\<in>I. A i) \<union> (\<Inter>j\<in>J. B j) = (\<Inter>i\<in>I. \<Inter>j\<in>J. A i \<union> B j)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  1999
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2000
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2001
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2002
text {* \medskip Bounded quantifiers.
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2003
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2004
  The following are not added to the default simpset because
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2005
  (a) they duplicate the body and (b) there are no similar rules for @{text Int}. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2006
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2007
lemma ball_Un: "(\<forall>x \<in> A \<union> B. P x) = ((\<forall>x\<in>A. P x) & (\<forall>x\<in>B. P x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2008
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2009
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2010
lemma bex_Un: "(\<exists>x \<in> A \<union> B. P x) = ((\<exists>x\<in>A. P x) | (\<exists>x\<in>B. P x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2011
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2012
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2013
lemma ball_UN: "(\<forall>z \<in> UNION A B. P z) = (\<forall>x\<in>A. \<forall>z \<in> B x. P z)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2014
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2015
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2016
lemma bex_UN: "(\<exists>z \<in> UNION A B. P z) = (\<exists>x\<in>A. \<exists>z\<in>B x. P z)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2017
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2018
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2019
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2020
text {* \medskip Set difference. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2021
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2022
lemma Diff_eq: "A - B = A \<inter> (-B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2023
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2024
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  2025
lemma Diff_eq_empty_iff [simp,noatp]: "(A - B = {}) = (A \<subseteq> B)"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2026
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2027
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2028
lemma Diff_cancel [simp]: "A - A = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2029
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2030
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  2031
lemma Diff_idemp [simp]: "(A - B) - B = A - (B::'a set)"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  2032
by blast
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  2033
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2034
lemma Diff_triv: "A \<inter> B = {} ==> A - B = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2035
  by (blast elim: equalityE)
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2036
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2037
lemma empty_Diff [simp]: "{} - A = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2038
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2039
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2040
lemma Diff_empty [simp]: "A - {} = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2041
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2042
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2043
lemma Diff_UNIV [simp]: "A - UNIV = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2044
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2045
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  2046
lemma Diff_insert0 [simp,noatp]: "x \<notin> A ==> A - insert x B = A - B"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2047
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2048
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2049
lemma Diff_insert: "A - insert a B = A - B - {a}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2050
  -- {* NOT SUITABLE FOR REWRITING since @{text "{a} == insert a 0"} *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2051
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2052
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2053
lemma Diff_insert2: "A - insert a B = A - {a} - B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2054
  -- {* NOT SUITABLE FOR REWRITING since @{text "{a} == insert a 0"} *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2055
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2056
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2057
lemma insert_Diff_if: "insert x A - B = (if x \<in> B then A - B else insert x (A - B))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2058
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2059
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2060
lemma insert_Diff1 [simp]: "x \<in> B ==> insert x A - B = A - B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2061
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2062
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  2063
lemma insert_Diff_single[simp]: "insert a (A - {a}) = insert a A"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  2064
by blast
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  2065
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2066
lemma insert_Diff: "a \<in> A ==> insert a (A - {a}) = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2067
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2068
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2069
lemma Diff_insert_absorb: "x \<notin> A ==> (insert x A) - {x} = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2070
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2071
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2072
lemma Diff_disjoint [simp]: "A \<inter> (B - A) = {}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2073
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2074
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2075
lemma Diff_partition: "A \<subseteq> B ==> A \<union> (B - A) = B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2076
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2077
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2078
lemma double_diff: "A \<subseteq> B ==> B \<subseteq> C ==> B - (C - A) = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2079
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2080
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2081
lemma Un_Diff_cancel [simp]: "A \<union> (B - A) = A \<union> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2082
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2083
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2084
lemma Un_Diff_cancel2 [simp]: "(B - A) \<union> A = B \<union> A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2085
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2086
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2087
lemma Diff_Un: "A - (B \<union> C) = (A - B) \<inter> (A - C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2088
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2089
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2090
lemma Diff_Int: "A - (B \<inter> C) = (A - B) \<union> (A - C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2091
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2092
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2093
lemma Un_Diff: "(A \<union> B) - C = (A - C) \<union> (B - C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2094
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2095
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2096
lemma Int_Diff: "(A \<inter> B) - C = A \<inter> (B - C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2097
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2098
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2099
lemma Diff_Int_distrib: "C \<inter> (A - B) = (C \<inter> A) - (C \<inter> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2100
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2101
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2102
lemma Diff_Int_distrib2: "(A - B) \<inter> C = (A \<inter> C) - (B \<inter> C)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2103
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2104
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2105
lemma Diff_Compl [simp]: "A - (- B) = A \<inter> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2106
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2107
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2108
lemma Compl_Diff_eq [simp]: "- (A - B) = -A \<union> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2109
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2110
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2111
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2112
text {* \medskip Quantification over type @{typ bool}. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2113
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2114
lemma bool_induct: "P True \<Longrightarrow> P False \<Longrightarrow> P x"
21549
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2115
  by (cases x) auto
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2116
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2117
lemma all_bool_eq: "(\<forall>b. P b) \<longleftrightarrow> P True \<and> P False"
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2118
  by (auto intro: bool_induct)
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2119
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2120
lemma bool_contrapos: "P x \<Longrightarrow> \<not> P False \<Longrightarrow> P True"
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2121
  by (cases x) auto
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2122
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2123
lemma ex_bool_eq: "(\<exists>b. P b) \<longleftrightarrow> P True \<or> P False"
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2124
  by (auto intro: bool_contrapos)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2125
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2126
lemma Un_eq_UN: "A \<union> B = (\<Union>b. if b then A else B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2127
  by (auto simp add: split_if_mem2)
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2128
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2129
lemma UN_bool_eq: "(\<Union>b::bool. A b) = (A True \<union> A False)"
21549
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2130
  by (auto intro: bool_contrapos)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2131
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2132
lemma INT_bool_eq: "(\<Inter>b::bool. A b) = (A True \<inter> A False)"
21549
12eff58b56a0 restructured some proofs
haftmann
parents: 21524
diff changeset
  2133
  by (auto intro: bool_induct)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2134
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2135
text {* \medskip @{text Pow} *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2136
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2137
lemma Pow_empty [simp]: "Pow {} = {{}}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2138
  by (auto simp add: Pow_def)
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2139
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2140
lemma Pow_insert: "Pow (insert a A) = Pow A \<union> (insert a ` Pow A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2141
  by (blast intro: image_eqI [where ?x = "u - {a}", standard])
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2142
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2143
lemma Pow_Compl: "Pow (- A) = {-B | B. A \<in> Pow B}"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2144
  by (blast intro: exI [where ?x = "- u", standard])
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2145
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2146
lemma Pow_UNIV [simp]: "Pow UNIV = UNIV"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2147
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2148
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2149
lemma Un_Pow_subset: "Pow A \<union> Pow B \<subseteq> Pow (A \<union> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2150
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2151
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2152
lemma UN_Pow_subset: "(\<Union>x\<in>A. Pow (B x)) \<subseteq> Pow (\<Union>x\<in>A. B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2153
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2154
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2155
lemma subset_Pow_Union: "A \<subseteq> Pow (\<Union>A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2156
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2157
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2158
lemma Union_Pow_eq [simp]: "\<Union>(Pow A) = A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2159
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2160
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2161
lemma Pow_Int_eq [simp]: "Pow (A \<inter> B) = Pow A \<inter> Pow B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2162
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2163
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2164
lemma Pow_INT_eq: "Pow (\<Inter>x\<in>A. B x) = (\<Inter>x\<in>A. Pow (B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2165
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2166
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2167
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2168
text {* \medskip Miscellany. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2169
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2170
lemma set_eq_subset: "(A = B) = (A \<subseteq> B & B \<subseteq> A)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2171
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2172
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2173
lemma subset_iff: "(A \<subseteq> B) = (\<forall>t. t \<in> A --> t \<in> B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2174
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2175
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2176
lemma subset_iff_psubset_eq: "(A \<subseteq> B) = ((A \<subset> B) | (A = B))"
26800
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2177
  by (unfold less_le) blast
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2178
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  2179
lemma all_not_in_conv [simp]: "(\<forall>x. x \<notin> A) = (A = {})"
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2180
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2181
13831
ab27b36aba99 new lemma
paulson
parents: 13826
diff changeset
  2182
lemma ex_in_conv: "(\<exists>x. x \<in> A) = (A \<noteq> {})"
ab27b36aba99 new lemma
paulson
parents: 13826
diff changeset
  2183
  by blast
ab27b36aba99 new lemma
paulson
parents: 13826
diff changeset
  2184
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2185
lemma distinct_lemma: "f x \<noteq> f y ==> x \<noteq> y"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2186
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2187
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2188
13860
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2189
text {* \medskip Miniscoping: pushing in quantifiers and big Unions
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2190
           and Intersections. *}
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2191
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2192
lemma UN_simps [simp]:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2193
  "!!a B C. (UN x:C. insert a (B x)) = (if C={} then {} else insert a (UN x:C. B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2194
  "!!A B C. (UN x:C. A x Un B)   = ((if C={} then {} else (UN x:C. A x) Un B))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2195
  "!!A B C. (UN x:C. A Un B x)   = ((if C={} then {} else A Un (UN x:C. B x)))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2196
  "!!A B C. (UN x:C. A x Int B)  = ((UN x:C. A x) Int B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2197
  "!!A B C. (UN x:C. A Int B x)  = (A Int (UN x:C. B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2198
  "!!A B C. (UN x:C. A x - B)    = ((UN x:C. A x) - B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2199
  "!!A B C. (UN x:C. A - B x)    = (A - (INT x:C. B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2200
  "!!A B. (UN x: Union A. B x) = (UN y:A. UN x:y. B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2201
  "!!A B C. (UN z: UNION A B. C z) = (UN  x:A. UN z: B(x). C z)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2202
  "!!A B f. (UN x:f`A. B x)     = (UN a:A. B (f a))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2203
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2204
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2205
lemma INT_simps [simp]:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2206
  "!!A B C. (INT x:C. A x Int B) = (if C={} then UNIV else (INT x:C. A x) Int B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2207
  "!!A B C. (INT x:C. A Int B x) = (if C={} then UNIV else A Int (INT x:C. B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2208
  "!!A B C. (INT x:C. A x - B)   = (if C={} then UNIV else (INT x:C. A x) - B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2209
  "!!A B C. (INT x:C. A - B x)   = (if C={} then UNIV else A - (UN x:C. B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2210
  "!!a B C. (INT x:C. insert a (B x)) = insert a (INT x:C. B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2211
  "!!A B C. (INT x:C. A x Un B)  = ((INT x:C. A x) Un B)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2212
  "!!A B C. (INT x:C. A Un B x)  = (A Un (INT x:C. B x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2213
  "!!A B. (INT x: Union A. B x) = (INT y:A. INT x:y. B x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2214
  "!!A B C. (INT z: UNION A B. C z) = (INT x:A. INT z: B(x). C z)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2215
  "!!A B f. (INT x:f`A. B x)    = (INT a:A. B (f a))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2216
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2217
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  2218
lemma ball_simps [simp,noatp]:
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2219
  "!!A P Q. (ALL x:A. P x | Q) = ((ALL x:A. P x) | Q)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2220
  "!!A P Q. (ALL x:A. P | Q x) = (P | (ALL x:A. Q x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2221
  "!!A P Q. (ALL x:A. P --> Q x) = (P --> (ALL x:A. Q x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2222
  "!!A P Q. (ALL x:A. P x --> Q) = ((EX x:A. P x) --> Q)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2223
  "!!P. (ALL x:{}. P x) = True"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2224
  "!!P. (ALL x:UNIV. P x) = (ALL x. P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2225
  "!!a B P. (ALL x:insert a B. P x) = (P a & (ALL x:B. P x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2226
  "!!A P. (ALL x:Union A. P x) = (ALL y:A. ALL x:y. P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2227
  "!!A B P. (ALL x: UNION A B. P x) = (ALL a:A. ALL x: B a. P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2228
  "!!P Q. (ALL x:Collect Q. P x) = (ALL x. Q x --> P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2229
  "!!A P f. (ALL x:f`A. P x) = (ALL x:A. P (f x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2230
  "!!A P. (~(ALL x:A. P x)) = (EX x:A. ~P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2231
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2232
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24280
diff changeset
  2233
lemma bex_simps [simp,noatp]:
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2234
  "!!A P Q. (EX x:A. P x & Q) = ((EX x:A. P x) & Q)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2235
  "!!A P Q. (EX x:A. P & Q x) = (P & (EX x:A. Q x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2236
  "!!P. (EX x:{}. P x) = False"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2237
  "!!P. (EX x:UNIV. P x) = (EX x. P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2238
  "!!a B P. (EX x:insert a B. P x) = (P(a) | (EX x:B. P x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2239
  "!!A P. (EX x:Union A. P x) = (EX y:A. EX x:y. P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2240
  "!!A B P. (EX x: UNION A B. P x) = (EX a:A. EX x:B a. P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2241
  "!!P Q. (EX x:Collect Q. P x) = (EX x. Q x & P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2242
  "!!A P f. (EX x:f`A. P x) = (EX x:A. P (f x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2243
  "!!A P. (~(EX x:A. P x)) = (ALL x:A. ~P x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2244
  by auto
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2245
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2246
lemma ball_conj_distrib:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2247
  "(ALL x:A. P x & Q x) = ((ALL x:A. P x) & (ALL x:A. Q x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2248
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2249
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2250
lemma bex_disj_distrib:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2251
  "(EX x:A. P x | Q x) = ((EX x:A. P x) | (EX x:A. Q x))"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2252
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2253
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2254
13860
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2255
text {* \medskip Maxiscoping: pulling out big Unions and Intersections. *}
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2256
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2257
lemma UN_extend_simps:
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2258
  "!!a B C. insert a (UN x:C. B x) = (if C={} then {a} else (UN x:C. insert a (B x)))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2259
  "!!A B C. (UN x:C. A x) Un B    = (if C={} then B else (UN x:C. A x Un B))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2260
  "!!A B C. A Un (UN x:C. B x)   = (if C={} then A else (UN x:C. A Un B x))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2261
  "!!A B C. ((UN x:C. A x) Int B) = (UN x:C. A x Int B)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2262
  "!!A B C. (A Int (UN x:C. B x)) = (UN x:C. A Int B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2263
  "!!A B C. ((UN x:C. A x) - B) = (UN x:C. A x - B)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2264
  "!!A B C. (A - (INT x:C. B x)) = (UN x:C. A - B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2265
  "!!A B. (UN y:A. UN x:y. B x) = (UN x: Union A. B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2266
  "!!A B C. (UN  x:A. UN z: B(x). C z) = (UN z: UNION A B. C z)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2267
  "!!A B f. (UN a:A. B (f a)) = (UN x:f`A. B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2268
  by auto
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2269
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2270
lemma INT_extend_simps:
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2271
  "!!A B C. (INT x:C. A x) Int B = (if C={} then B else (INT x:C. A x Int B))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2272
  "!!A B C. A Int (INT x:C. B x) = (if C={} then A else (INT x:C. A Int B x))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2273
  "!!A B C. (INT x:C. A x) - B   = (if C={} then UNIV-B else (INT x:C. A x - B))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2274
  "!!A B C. A - (UN x:C. B x)   = (if C={} then A else (INT x:C. A - B x))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2275
  "!!a B C. insert a (INT x:C. B x) = (INT x:C. insert a (B x))"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2276
  "!!A B C. ((INT x:C. A x) Un B)  = (INT x:C. A x Un B)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2277
  "!!A B C. A Un (INT x:C. B x)  = (INT x:C. A Un B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2278
  "!!A B. (INT y:A. INT x:y. B x) = (INT x: Union A. B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2279
  "!!A B C. (INT x:A. INT z: B(x). C z) = (INT z: UNION A B. C z)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2280
  "!!A B f. (INT a:A. B (f a))    = (INT x:f`A. B x)"
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2281
  by auto
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2282
b681a3cb0beb new UN/INT simprules
paulson
parents: 13858
diff changeset
  2283
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2284
subsubsection {* Monotonicity of various operations *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2285
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2286
lemma image_mono: "A \<subseteq> B ==> f`A \<subseteq> f`B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2287
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2288
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2289
lemma Pow_mono: "A \<subseteq> B ==> Pow A \<subseteq> Pow B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2290
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2291
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2292
lemma Union_mono: "A \<subseteq> B ==> \<Union>A \<subseteq> \<Union>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2293
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2294
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2295
lemma Inter_anti_mono: "B \<subseteq> A ==> \<Inter>A \<subseteq> \<Inter>B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2296
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2297
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2298
lemma UN_mono:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2299
  "A \<subseteq> B ==> (!!x. x \<in> A ==> f x \<subseteq> g x) ==>
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2300
    (\<Union>x\<in>A. f x) \<subseteq> (\<Union>x\<in>B. g x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2301
  by (blast dest: subsetD)
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2302
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2303
lemma INT_anti_mono:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2304
  "B \<subseteq> A ==> (!!x. x \<in> A ==> f x \<subseteq> g x) ==>
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2305
    (\<Inter>x\<in>A. f x) \<subseteq> (\<Inter>x\<in>A. g x)"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2306
  -- {* The last inclusion is POSITIVE! *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2307
  by (blast dest: subsetD)
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2308
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2309
lemma insert_mono: "C \<subseteq> D ==> insert a C \<subseteq> insert a D"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2310
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2311
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2312
lemma Un_mono: "A \<subseteq> C ==> B \<subseteq> D ==> A \<union> B \<subseteq> C \<union> D"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2313
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2314
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2315
lemma Int_mono: "A \<subseteq> C ==> B \<subseteq> D ==> A \<inter> B \<subseteq> C \<inter> D"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2316
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2317
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2318
lemma Diff_mono: "A \<subseteq> C ==> D \<subseteq> B ==> A - B \<subseteq> C - D"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2319
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2320
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2321
lemma Compl_anti_mono: "A \<subseteq> B ==> -B \<subseteq> -A"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2322
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2323
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2324
text {* \medskip Monotonicity of implications. *}
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2325
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2326
lemma in_mono: "A \<subseteq> B ==> x \<in> A --> x \<in> B"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2327
  apply (rule impI)
14208
144f45277d5a misc tidying
paulson
parents: 14098
diff changeset
  2328
  apply (erule subsetD, assumption)
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2329
  done
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2330
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2331
lemma conj_mono: "P1 --> Q1 ==> P2 --> Q2 ==> (P1 & P2) --> (Q1 & Q2)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2332
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2333
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2334
lemma disj_mono: "P1 --> Q1 ==> P2 --> Q2 ==> (P1 | P2) --> (Q1 | Q2)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2335
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2336
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2337
lemma imp_mono: "Q1 --> P1 ==> P2 --> Q2 ==> (P1 --> P2) --> (Q1 --> Q2)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2338
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2339
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2340
lemma imp_refl: "P --> P" ..
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2341
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2342
lemma ex_mono: "(!!x. P x --> Q x) ==> (EX x. P x) --> (EX x. Q x)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2343
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2344
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2345
lemma all_mono: "(!!x. P x --> Q x) ==> (ALL x. P x) --> (ALL x. Q x)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2346
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2347
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2348
lemma Collect_mono: "(!!x. P x --> Q x) ==> Collect P \<subseteq> Collect Q"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2349
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2350
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2351
lemma Int_Collect_mono:
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2352
    "A \<subseteq> B ==> (!!x. x \<in> A ==> P x --> Q x) ==> A \<inter> Collect P \<subseteq> B \<inter> Collect Q"
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2353
  by blast
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2354
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2355
lemmas basic_monos =
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2356
  subset_refl imp_refl disj_mono conj_mono
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2357
  ex_mono Collect_mono in_mono
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2358
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2359
lemma eq_to_mono: "a = b ==> c = d ==> b --> d ==> a --> c"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2360
  by iprover
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2361
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2362
lemma eq_to_mono2: "a = b ==> c = d ==> ~ b --> ~ d ==> ~ a --> ~ c"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17508
diff changeset
  2363
  by iprover
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  2364
12020
a24373086908 theory Calculation move to Set;
wenzelm
parents: 11982
diff changeset
  2365
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2366
subsubsection {* Inverse image of a function *}
12257
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2367
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2368
constdefs
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2369
  vimage :: "('a => 'b) => 'b set => 'a set"    (infixr "-`" 90)
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2370
  [code del]: "f -` B == {x. f x : B}"
12257
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2371
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2372
lemma vimage_eq [simp]: "(a : f -` B) = (f a : B)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2373
  by (unfold vimage_def) blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2374
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2375
lemma vimage_singleton_eq: "(a : f -` {b}) = (f a = b)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2376
  by simp
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2377
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2378
lemma vimageI [intro]: "f a = b ==> b:B ==> a : f -` B"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2379
  by (unfold vimage_def) blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2380
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2381
lemma vimageI2: "f a : A ==> a : f -` A"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2382
  by (unfold vimage_def) fast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2383
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2384
lemma vimageE [elim!]: "a: f -` B ==> (!!x. f a = x ==> x:B ==> P) ==> P"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2385
  by (unfold vimage_def) blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2386
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2387
lemma vimageD: "a : f -` A ==> f a : A"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2388
  by (unfold vimage_def) fast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2389
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2390
lemma vimage_empty [simp]: "f -` {} = {}"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2391
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2392
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2393
lemma vimage_Compl: "f -` (-A) = -(f -` A)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2394
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2395
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2396
lemma vimage_Un [simp]: "f -` (A Un B) = (f -` A) Un (f -` B)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2397
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2398
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2399
lemma vimage_Int [simp]: "f -` (A Int B) = (f -` A) Int (f -` B)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2400
  by fast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2401
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2402
lemma vimage_Union: "f -` (Union A) = (UN X:A. f -` X)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2403
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2404
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2405
lemma vimage_UN: "f-`(UN x:A. B x) = (UN x:A. f -` B x)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2406
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2407
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2408
lemma vimage_INT: "f-`(INT x:A. B x) = (INT x:A. f -` B x)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2409
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2410
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2411
lemma vimage_Collect_eq [simp]: "f -` Collect P = {y. P (f y)}"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2412
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2413
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2414
lemma vimage_Collect: "(!!x. P (f x) = Q x) ==> f -` (Collect P) = Collect Q"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2415
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2416
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2417
lemma vimage_insert: "f-`(insert a B) = (f-`{a}) Un (f-`B)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2418
  -- {* NOT suitable for rewriting because of the recurrence of @{term "{a}"}. *}
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2419
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2420
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2421
lemma vimage_Diff: "f -` (A - B) = (f -` A) - (f -` B)"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2422
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2423
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2424
lemma vimage_UNIV [simp]: "f -` UNIV = UNIV"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2425
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2426
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2427
lemma vimage_eq_UN: "f-`B = (UN y: B. f-`{y})"
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2428
  -- {* NOT suitable for rewriting *}
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2429
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2430
12897
f4d10ad0ea7b converted/deleted equalities.ML, mono.ML, subset.ML (see Set.thy);
wenzelm
parents: 12633
diff changeset
  2431
lemma vimage_mono: "A \<subseteq> B ==> f -` A \<subseteq> f -` B"
12257
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2432
  -- {* monotonicity *}
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2433
  by blast
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2434
26150
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2435
lemma vimage_image_eq [noatp]: "f -` (f ` A) = {y. EX x:A. f x = f y}"
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2436
by (blast intro: sym)
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2437
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2438
lemma image_vimage_subset: "f ` (f -` A) <= A"
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2439
by blast
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2440
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2441
lemma image_vimage_eq [simp]: "f ` (f -` A) = A Int range f"
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2442
by blast
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2443
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2444
lemma image_Int_subset: "f`(A Int B) <= f`A Int f`B"
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2445
by blast
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2446
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2447
lemma image_diff_subset: "f`A - f`B <= f`(A - B)"
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2448
by blast
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2449
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2450
lemma image_UN: "(f ` (UNION A B)) = (UN x:A.(f ` (B x)))"
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2451
by blast
f6bd8686b71e moved some set lemmas from Set.thy here
haftmann
parents: 25965
diff changeset
  2452
12257
e3f7d6fb55d7 theory Inverse_Image converted and moved to Set;
wenzelm
parents: 12114
diff changeset
  2453
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2454
subsubsection {* Getting the Contents of a Singleton Set *}
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2455
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2456
definition contents :: "'a set \<Rightarrow> 'a" where
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2457
  [code del]: "contents X = (THE x. X = {x})"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2458
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2459
lemma contents_eq [simp]: "contents {x} = x"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2460
  by (simp add: contents_def)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2461
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
  2462
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2463
subsubsection {* Least value operator *}
26800
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2464
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2465
lemma Least_mono:
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2466
  "mono (f::'a::order => 'b::order) ==> EX x:S. ALL y:S. x <= y
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2467
    ==> (LEAST y. y : f ` S) = f (LEAST x. x : S)"
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2468
    -- {* Courtesy of Stephan Merz *}
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2469
  apply clarify
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2470
  apply (erule_tac P = "%x. x : S" in LeastI2_order, fast)
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2471
  apply (rule LeastI2_order)
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2472
  apply (auto elim: monoD intro!: order_antisym)
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2473
  done
dcf1dfc915a7 - Now uses Orderings as parent theory
berghofe
parents: 26732
diff changeset
  2474
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2475
subsection {* Misc *}
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2476
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2477
text {* Rudimentary code generation *}
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2478
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2479
lemma empty_code [code]: "{} x \<longleftrightarrow> False"
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2480
  unfolding empty_def Collect_def ..
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2481
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2482
lemma UNIV_code [code]: "UNIV x \<longleftrightarrow> True"
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2483
  unfolding UNIV_def Collect_def ..
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2484
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2485
lemma insert_code [code]: "insert y A x \<longleftrightarrow> y = x \<or> A x"
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2486
  unfolding insert_def Collect_def mem_def Un_def by auto
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2487
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2488
lemma inter_code [code]: "(A \<inter> B) x \<longleftrightarrow> A x \<and> B x"
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2489
  unfolding Int_def Collect_def mem_def ..
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2490
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2491
lemma union_code [code]: "(A \<union> B) x \<longleftrightarrow> A x \<or> B x"
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2492
  unfolding Un_def Collect_def mem_def ..
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2493
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27824
diff changeset
  2494
lemma vimage_code [code]: "(f -` A) x = A (f x)"
27824
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2495
  unfolding vimage_def Collect_def mem_def ..
97d2a3797ce0 rudimentary code setup for set operations
haftmann
parents: 27418
diff changeset
  2496
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  2497
text {* Misc theorem and ML bindings *}
30596
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
  2498
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
  2499
lemmas equalityI = subset_antisym
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
  2500
lemmas mem_simps =
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
  2501
  insert_iff empty_iff Un_iff Int_iff Compl_iff Diff_iff
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
  2502
  mem_Collect_eq UN_iff Union_iff INT_iff Inter_iff
140b22f22071 tuned some theorem and attribute bindings
haftmann
parents: 30531
diff changeset
  2503
  -- {* Each of these has ALREADY been added @{text "[simp]"} above. *}
21669
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21549
diff changeset
  2504
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21549
diff changeset
  2505
ML {*
22139
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2506
val Ball_def = @{thm Ball_def}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2507
val Bex_def = @{thm Bex_def}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2508
val CollectD = @{thm CollectD}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2509
val CollectE = @{thm CollectE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2510
val CollectI = @{thm CollectI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2511
val Collect_conj_eq = @{thm Collect_conj_eq}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2512
val Collect_mem_eq = @{thm Collect_mem_eq}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2513
val IntD1 = @{thm IntD1}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2514
val IntD2 = @{thm IntD2}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2515
val IntE = @{thm IntE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2516
val IntI = @{thm IntI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2517
val Int_Collect = @{thm Int_Collect}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2518
val UNIV_I = @{thm UNIV_I}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2519
val UNIV_witness = @{thm UNIV_witness}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2520
val UnE = @{thm UnE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2521
val UnI1 = @{thm UnI1}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2522
val UnI2 = @{thm UnI2}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2523
val ballE = @{thm ballE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2524
val ballI = @{thm ballI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2525
val bexCI = @{thm bexCI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2526
val bexE = @{thm bexE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2527
val bexI = @{thm bexI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2528
val bex_triv = @{thm bex_triv}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2529
val bspec = @{thm bspec}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2530
val contra_subsetD = @{thm contra_subsetD}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2531
val distinct_lemma = @{thm distinct_lemma}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2532
val eq_to_mono = @{thm eq_to_mono}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2533
val eq_to_mono2 = @{thm eq_to_mono2}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2534
val equalityCE = @{thm equalityCE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2535
val equalityD1 = @{thm equalityD1}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2536
val equalityD2 = @{thm equalityD2}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2537
val equalityE = @{thm equalityE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2538
val equalityI = @{thm equalityI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2539
val imageE = @{thm imageE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2540
val imageI = @{thm imageI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2541
val image_Un = @{thm image_Un}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2542
val image_insert = @{thm image_insert}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2543
val insert_commute = @{thm insert_commute}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2544
val insert_iff = @{thm insert_iff}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2545
val mem_Collect_eq = @{thm mem_Collect_eq}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2546
val rangeE = @{thm rangeE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2547
val rangeI = @{thm rangeI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2548
val range_eqI = @{thm range_eqI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2549
val subsetCE = @{thm subsetCE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2550
val subsetD = @{thm subsetD}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2551
val subsetI = @{thm subsetI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2552
val subset_refl = @{thm subset_refl}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2553
val subset_trans = @{thm subset_trans}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2554
val vimageD = @{thm vimageD}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2555
val vimageE = @{thm vimageE}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2556
val vimageI = @{thm vimageI}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2557
val vimageI2 = @{thm vimageI2}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2558
val vimage_Collect = @{thm vimage_Collect}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2559
val vimage_Int = @{thm vimage_Int}
539a63b98f76 tuned ML setup;
wenzelm
parents: 21833
diff changeset
  2560
val vimage_Un = @{thm vimage_Un}
21669
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21549
diff changeset
  2561
*}
c68717c16013 removed legacy ML bindings;
wenzelm
parents: 21549
diff changeset
  2562
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
  2563
end