src/HOL/Set.thy
author wenzelm
Fri, 29 Nov 2024 17:40:15 +0100
changeset 81507 08574da77b4a
parent 81473 53e61087bc6f
child 81545 6f8a56a6b391
permissions -rw-r--r--
clarified signature: shorten common cases;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
     1
(*  Title:      HOL/Set.thy
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
     2
    Author:     Tobias Nipkow
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
     3
    Author:     Lawrence C Paulson
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
     4
    Author:     Markus Wenzel
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
     5
*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
     7
section \<open>Set theory for higher-order logic\<close>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
     8
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15120
diff changeset
     9
theory Set
74123
7c5842b06114 clarified abstract and concrete boolean algebras
haftmann
parents: 74101
diff changeset
    10
  imports Lattices Boolean_Algebras
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15120
diff changeset
    11
begin
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
    12
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
    13
subsection \<open>Sets as predicates\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    14
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
    15
typedecl 'a set
3820
46b255e140dc fixed infix syntax;
wenzelm
parents: 3370
diff changeset
    16
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67403
diff changeset
    17
axiomatization Collect :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set" \<comment> \<open>comprehension\<close>
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67403
diff changeset
    18
  and member :: "'a \<Rightarrow> 'a set \<Rightarrow> bool" \<comment> \<open>membership\<close>
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
    19
  where mem_Collect_eq [iff, code_unfold]: "member a (Collect P) = P a"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
    20
    and Collect_mem_eq [simp]: "Collect (\<lambda>x. member x A) = A"
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19637
diff changeset
    21
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20380
diff changeset
    22
notation
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
    23
  member  (\<open>'(\<in>')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
    24
  member  (\<open>(\<open>notation=\<open>infix \<in>\<close>\<close>_/ \<in> _)\<close> [51, 51] 50)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    25
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    26
abbreviation not_member
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67403
diff changeset
    27
  where "not_member x A \<equiv> \<not> (x \<in> A)" \<comment> \<open>non-membership\<close>
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    28
notation
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
    29
  not_member  (\<open>'(\<notin>')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
    30
  not_member  (\<open>(\<open>notation=\<open>infix \<notin>\<close>\<close>_/ \<notin> _)\<close> [51, 51] 50)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    31
81110
08165a4e105d bundles for syntax modifications seen in AFP;
wenzelm
parents: 81096
diff changeset
    32
open_bundle member_ASCII_syntax
08165a4e105d bundles for syntax modifications seen in AFP;
wenzelm
parents: 81096
diff changeset
    33
begin
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    34
notation (ASCII)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
    35
  member  (\<open>'(:')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
    36
  member  (\<open>(\<open>notation=\<open>infix :\<close>\<close>_/ : _)\<close> [51, 51] 50) and
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
    37
  not_member  (\<open>'(~:')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
    38
  not_member  (\<open>(\<open>notation=\<open>infix ~:\<close>\<close>_/ ~: _)\<close> [51, 51] 50)
81110
08165a4e105d bundles for syntax modifications seen in AFP;
wenzelm
parents: 81096
diff changeset
    39
end
08165a4e105d bundles for syntax modifications seen in AFP;
wenzelm
parents: 81096
diff changeset
    40
41107
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    41
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
    42
text \<open>Set comprehensions\<close>
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    43
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    44
syntax
81096
e957b2dd8983 tuned markup;
wenzelm
parents: 81091
diff changeset
    45
  "_Coll" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a set"    (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{_./ _})\<close>)
81182
fc5066122e68 more inner-syntax markup;
wenzelm
parents: 81150
diff changeset
    46
syntax_consts
fc5066122e68 more inner-syntax markup;
wenzelm
parents: 81150
diff changeset
    47
  "_Coll" \<rightleftharpoons> Collect
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
    48
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    49
  "{x. P}" \<rightleftharpoons> "CONST Collect (\<lambda>x. P)"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    50
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    51
syntax (ASCII)
81096
e957b2dd8983 tuned markup;
wenzelm
parents: 81091
diff changeset
    52
  "_Collect" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a set"  (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{(_/: _)./ _})\<close>)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    53
syntax
81096
e957b2dd8983 tuned markup;
wenzelm
parents: 81091
diff changeset
    54
  "_Collect" :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a set"  (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{(_/ \<in> _)./ _})\<close>)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    55
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
    56
  "{p:A. P}" \<rightharpoonup> "CONST Collect (\<lambda>p. p \<in> A \<and> P)"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    57
81150
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    58
ML \<open>
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    59
  fun Collect_binder_tr' c [Abs (x, T, t), Const (\<^const_syntax>\<open>Collect\<close>, _) $ Abs (y, _, P)] =
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    60
        if x = y then
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    61
          let
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    62
            val x' = Syntax_Trans.mark_bound_body (x, T);
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    63
            val t' = subst_bound (x', t);
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    64
            val P' = subst_bound (x', P);
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    65
          in Syntax.const c $ Syntax_Trans.mark_bound_abs (x, T) $ P' $ t' end
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    66
        else raise Match
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    67
    | Collect_binder_tr' _ _ = raise Match
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    68
\<close>
3dd8035578b8 eliminate clones: just one Collect_binder_tr';
wenzelm
parents: 81116
diff changeset
    69
41107
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    70
lemma CollectI: "P a \<Longrightarrow> a \<in> {x. P x}"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    71
  by simp
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    72
41107
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    73
lemma CollectD: "a \<in> {x. P x} \<Longrightarrow> P a"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    74
  by simp
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    75
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
    76
lemma Collect_cong: "(\<And>x. P x = Q x) \<Longrightarrow> {x. P x} = {x. Q x}"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    77
  by simp
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    78
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
    79
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
    80
  Simproc for pulling \<open>x = t\<close> in \<open>{x. \<dots> \<and> x = t \<and> \<dots>}\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
    81
  to the front (and similarly for \<open>t = x\<close>):
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
    82
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
    83
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
    84
simproc_setup defined_Collect ("{x. P x \<and> Q x}") = \<open>
78099
4d9349989d94 more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents: 77935
diff changeset
    85
  K (Quantifier1.rearrange_Collect
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59000
diff changeset
    86
    (fn ctxt =>
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59000
diff changeset
    87
      resolve_tac ctxt @{thms Collect_cong} 1 THEN
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59000
diff changeset
    88
      resolve_tac ctxt @{thms iffI} 1 THEN
42459
38b9f023cc34 misc tuning and simplification;
wenzelm
parents: 42456
diff changeset
    89
      ALLGOALS
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59000
diff changeset
    90
        (EVERY' [REPEAT_DETERM o eresolve_tac ctxt @{thms conjE},
78099
4d9349989d94 more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents: 77935
diff changeset
    91
          DEPTH_SOLVE_1 o (assume_tac ctxt ORELSE' resolve_tac ctxt @{thms conjI})])))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
    92
\<close>
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
    93
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    94
lemmas CollectE = CollectD [elim_format]
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
    95
41107
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    96
lemma set_eqI:
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    97
  assumes "\<And>x. x \<in> A \<longleftrightarrow> x \<in> B"
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    98
  shows "A = B"
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
    99
proof -
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
   100
  from assms have "{x. x \<in> A} = {x. x \<in> B}"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
   101
    by simp
41107
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
   102
  then show ?thesis by simp
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
   103
qed
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
   104
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   105
lemma set_eq_iff: "A = B \<longleftrightarrow> (\<forall>x. x \<in> A \<longleftrightarrow> x \<in> B)"
41107
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
   106
  by (auto intro:set_eqI)
8795cd75965e moved most fundamental lemmas upwards
haftmann
parents: 41082
diff changeset
   107
63365
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
   108
lemma Collect_eqI:
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
   109
  assumes "\<And>x. P x = Q x"
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
   110
  shows "Collect P = Collect Q"
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
   111
  using assms by (auto intro: set_eqI)
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
   112
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   113
text \<open>Lifting of predicate class instances\<close>
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   114
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   115
instantiation set :: (type) boolean_algebra
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   116
begin
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   117
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   118
definition less_eq_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   119
  where "A \<le> B \<longleftrightarrow> (\<lambda>x. member x A) \<le> (\<lambda>x. member x B)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   120
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   121
definition less_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   122
  where "A < B \<longleftrightarrow> (\<lambda>x. member x A) < (\<lambda>x. member x B)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   123
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   124
definition inf_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   125
  where "A \<sqinter> B = Collect ((\<lambda>x. member x A) \<sqinter> (\<lambda>x. member x B))"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   126
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   127
definition sup_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   128
  where "A \<squnion> B = Collect ((\<lambda>x. member x A) \<squnion> (\<lambda>x. member x B))"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   129
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   130
definition bot_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   131
  where "\<bottom> = Collect \<bottom>"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   132
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   133
definition top_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   134
  where "\<top> = Collect \<top>"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   135
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   136
definition uminus_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   137
  where "- A = Collect (- (\<lambda>x. member x A))"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   138
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   139
definition minus_set
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   140
  where "A - B = Collect ((\<lambda>x. member x A) - (\<lambda>x. member x B))"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   141
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   142
instance
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   143
  by standard
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   144
    (simp_all add: less_eq_set_def less_set_def inf_set_def sup_set_def
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   145
      bot_set_def top_set_def uminus_set_def minus_set_def
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   146
      less_le_not_le sup_inf_distrib1 diff_eq set_eqI fun_eq_iff
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   147
      del: inf_apply sup_apply bot_apply top_apply minus_apply uminus_apply)
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   148
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   149
end
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   150
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   151
text \<open>Set enumerations\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   152
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   153
abbreviation empty :: "'a set" (\<open>{}\<close>)
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   154
  where "{} \<equiv> bot"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   155
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   156
definition insert :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a set"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   157
  where 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
   158
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
   159
syntax
81090
843dba3d307a clarified syntax: use outer block (with indent);
wenzelm
parents: 81019
diff changeset
   160
  "_Finset" :: "args \<Rightarrow> 'a set"  (\<open>(\<open>indent=1 notation=\<open>mixfix set enumeration\<close>\<close>{_})\<close>)
81182
fc5066122e68 more inner-syntax markup;
wenzelm
parents: 81150
diff changeset
   161
syntax_consts
fc5066122e68 more inner-syntax markup;
wenzelm
parents: 81150
diff changeset
   162
  "_Finset" \<rightleftharpoons> insert
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
   163
translations
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   164
  "{x, xs}" \<rightleftharpoons> "CONST insert x {xs}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   165
  "{x}" \<rightleftharpoons> "CONST insert x {}"
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31197
diff changeset
   166
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   167
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   168
subsection \<open>Subsets and bounded quantifiers\<close>
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   169
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   170
abbreviation subset :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   171
  where "subset \<equiv> less"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   172
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   173
abbreviation subset_eq :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   174
  where "subset_eq \<equiv> less_eq"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   175
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   176
notation
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   177
  subset  (\<open>'(\<subset>')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   178
  subset  (\<open>(\<open>notation=\<open>infix \<subset>\<close>\<close>_/ \<subset> _)\<close> [51, 51] 50) and
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   179
  subset_eq  (\<open>'(\<subseteq>')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   180
  subset_eq  (\<open>(\<open>notation=\<open>infix \<subseteq>\<close>\<close>_/ \<subseteq> _)\<close> [51, 51] 50)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   181
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   182
abbreviation (input)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   183
  supset :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   184
  "supset \<equiv> greater"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   185
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   186
abbreviation (input)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   187
  supset_eq :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool" where
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   188
  "supset_eq \<equiv> greater_eq"
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   189
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   190
notation
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   191
  supset  (\<open>'(\<supset>')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   192
  supset  (\<open>(\<open>notation=\<open>infix \<supset>\<close>\<close>_/ \<supset> _)\<close> [51, 51] 50) and
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   193
  supset_eq  (\<open>'(\<supseteq>')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   194
  supset_eq  (\<open>(\<open>notation=\<open>infix \<supseteq>\<close>\<close>_/ \<supseteq> _)\<close> [51, 51] 50)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   195
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   196
notation (ASCII output)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   197
  subset  (\<open>'(<')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   198
  subset  (\<open>(\<open>notation=\<open>infix <\<close>\<close>_/ < _)\<close> [51, 51] 50) and
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   199
  subset_eq  (\<open>'(<=')\<close>) and
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   200
  subset_eq  (\<open>(\<open>notation=\<open>infix <=\<close>\<close>_/ <= _)\<close> [51, 51] 50)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   201
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   202
definition Ball :: "'a set \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool"
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67403
diff changeset
   203
  where "Ball A P \<longleftrightarrow> (\<forall>x. x \<in> A \<longrightarrow> P x)"   \<comment> \<open>bounded universal quantifiers\<close>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   204
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   205
definition Bex :: "'a set \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool"
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67403
diff changeset
   206
  where "Bex A P \<longleftrightarrow> (\<exists>x. x \<in> A \<and> P x)"   \<comment> \<open>bounded existential quantifiers\<close>
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
   207
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   208
syntax (ASCII)
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   209
  "_Ball"       :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder ALL :\<close>\<close>ALL (_/:_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   210
  "_Bex"        :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder EX :\<close>\<close>EX (_/:_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   211
  "_Bex1"       :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder EX! :\<close>\<close>EX! (_/:_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   212
  "_Bleast"     :: "id \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a"           (\<open>(\<open>indent=3 notation=\<open>binder LEAST :\<close>\<close>LEAST (_/:_)./ _)\<close> [0, 0, 10] 10)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   213
62521
6383440f41a8 old HOL syntax is for input only;
wenzelm
parents: 62390
diff changeset
   214
syntax (input)
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   215
  "_Ball"       :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder ! :\<close>\<close>! (_/:_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   216
  "_Bex"        :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder ? :\<close>\<close>? (_/:_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   217
  "_Bex1"       :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder ?! :\<close>\<close>?! (_/:_)./ _)\<close> [0, 0, 10] 10)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   218
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   219
syntax
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   220
  "_Ball"       :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder \<forall>\<close>\<close>\<forall>(_/\<in>_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   221
  "_Bex"        :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder \<exists>\<close>\<close>\<exists>(_/\<in>_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   222
  "_Bex1"       :: "pttrn \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> bool"      (\<open>(\<open>indent=3 notation=\<open>binder \<exists>!\<close>\<close>\<exists>!(_/\<in>_)./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   223
  "_Bleast"     :: "id \<Rightarrow> 'a set \<Rightarrow> bool \<Rightarrow> 'a"           (\<open>(\<open>indent=3 notation=\<open>binder LEAST\<close>\<close>LEAST(_/\<in>_)./ _)\<close> [0, 0, 10] 10)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   224
80760
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   225
syntax_consts
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   226
  "_Ball" \<rightleftharpoons> Ball and
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   227
  "_Bex" \<rightleftharpoons> Bex and
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   228
  "_Bex1" \<rightleftharpoons> Ex1 and
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   229
  "_Bleast" \<rightleftharpoons> Least
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   230
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   231
translations
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   232
  "\<forall>x\<in>A. P" \<rightleftharpoons> "CONST Ball A (\<lambda>x. P)"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   233
  "\<exists>x\<in>A. P" \<rightleftharpoons> "CONST Bex A (\<lambda>x. P)"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   234
  "\<exists>!x\<in>A. P" \<rightharpoonup> "\<exists>!x. x \<in> A \<and> P"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   235
  "LEAST x:A. P" \<rightharpoonup> "LEAST x. x \<in> A \<and> P"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   236
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   237
syntax (ASCII output)
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   238
  "_setlessAll" :: "[idt, 'a, bool] \<Rightarrow> bool"  (\<open>(\<open>indent=3 notation=\<open>binder ALL\<close>\<close>ALL _<_./ _)\<close>  [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   239
  "_setlessEx"  :: "[idt, 'a, bool] \<Rightarrow> bool"  (\<open>(\<open>indent=3 notation=\<open>binder EX\<close>\<close>EX _<_./ _)\<close>  [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   240
  "_setleAll"   :: "[idt, 'a, bool] \<Rightarrow> bool"  (\<open>(\<open>indent=3 notation=\<open>binder ALL\<close>\<close>ALL _<=_./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   241
  "_setleEx"    :: "[idt, 'a, bool] \<Rightarrow> bool"  (\<open>(\<open>indent=3 notation=\<open>binder EX\<close>\<close>EX _<=_./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   242
  "_setleEx1"   :: "[idt, 'a, bool] \<Rightarrow> bool"  (\<open>(\<open>indent=3 notation=\<open>binder EX!\<close>\<close>EX! _<=_./ _)\<close> [0, 0, 10] 10)
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   243
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   244
syntax
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   245
  "_setlessAll" :: "[idt, 'a, bool] \<Rightarrow> bool"   (\<open>(\<open>indent=3 notation=\<open>binder \<forall>\<close>\<close>\<forall>_\<subset>_./ _)\<close>  [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   246
  "_setlessEx"  :: "[idt, 'a, bool] \<Rightarrow> bool"   (\<open>(\<open>indent=3 notation=\<open>binder \<exists>\<close>\<close>\<exists>_\<subset>_./ _)\<close>  [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   247
  "_setleAll"   :: "[idt, 'a, bool] \<Rightarrow> bool"   (\<open>(\<open>indent=3 notation=\<open>binder \<forall>\<close>\<close>\<forall>_\<subseteq>_./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   248
  "_setleEx"    :: "[idt, 'a, bool] \<Rightarrow> bool"   (\<open>(\<open>indent=3 notation=\<open>binder \<exists>\<close>\<close>\<exists>_\<subseteq>_./ _)\<close> [0, 0, 10] 10)
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   249
  "_setleEx1"   :: "[idt, 'a, bool] \<Rightarrow> bool"   (\<open>(\<open>indent=3 notation=\<open>binder \<exists>!\<close>\<close>\<exists>!_\<subseteq>_./ _)\<close> [0, 0, 10] 10)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   250
80760
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   251
syntax_consts
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   252
  "_setlessAll" "_setleAll" \<rightleftharpoons> All and
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   253
  "_setlessEx" "_setleEx" \<rightleftharpoons> Ex and
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   254
  "_setleEx1" \<rightleftharpoons> Ex1
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   255
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   256
translations
80763
29837d4809e7 tuned whitespace;
wenzelm
parents: 80760
diff changeset
   257
  "\<forall>A\<subset>B. P" \<rightharpoonup> "\<forall>A. A \<subset> B \<longrightarrow> P"
29837d4809e7 tuned whitespace;
wenzelm
parents: 80760
diff changeset
   258
  "\<exists>A\<subset>B. P" \<rightharpoonup> "\<exists>A. A \<subset> B \<and> P"
29837d4809e7 tuned whitespace;
wenzelm
parents: 80760
diff changeset
   259
  "\<forall>A\<subseteq>B. P" \<rightharpoonup> "\<forall>A. A \<subseteq> B \<longrightarrow> P"
29837d4809e7 tuned whitespace;
wenzelm
parents: 80760
diff changeset
   260
  "\<exists>A\<subseteq>B. P" \<rightharpoonup> "\<exists>A. A \<subseteq> B \<and> P"
29837d4809e7 tuned whitespace;
wenzelm
parents: 80760
diff changeset
   261
  "\<exists>!A\<subseteq>B. P" \<rightharpoonup> "\<exists>!A. A \<subseteq> B \<and> P"
14804
8de39d3e8eb6 Corrected printer bug for bounded quantifiers Q x<=y. P
nipkow
parents: 14752
diff changeset
   262
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   263
print_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   264
  let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   265
    val All_binder = Mixfix.binder_name \<^const_syntax>\<open>All\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   266
    val Ex_binder = Mixfix.binder_name \<^const_syntax>\<open>Ex\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   267
    val impl = \<^const_syntax>\<open>HOL.implies\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   268
    val conj = \<^const_syntax>\<open>HOL.conj\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   269
    val sbset = \<^const_syntax>\<open>subset\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   270
    val sbset_eq = \<^const_syntax>\<open>subset_eq\<close>;
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   271
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   272
    val trans =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   273
     [((All_binder, impl, sbset), \<^syntax_const>\<open>_setlessAll\<close>),
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   274
      ((All_binder, impl, sbset_eq), \<^syntax_const>\<open>_setleAll\<close>),
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   275
      ((Ex_binder, conj, sbset), \<^syntax_const>\<open>_setlessEx\<close>),
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   276
      ((Ex_binder, conj, sbset_eq), \<^syntax_const>\<open>_setleEx\<close>)];
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   277
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   278
    fun mk v (v', T) c n P =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   279
      if v = v' andalso not (Term.exists_subterm (fn Free (x, _) => x = v | _ => false) n)
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   280
      then Syntax.const c $ Syntax_Trans.mark_bound_body (v', T) $ n $ P
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   281
      else raise Match;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   282
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   283
    fun tr' q = (q, fn _ =>
80662
ad9647592a81 tuned: more antiquotations;
wenzelm
parents: 79566
diff changeset
   284
      (fn [Const (\<^syntax_const>\<open>_bound\<close>, _) $ Free (v, \<^Type>\<open>set _\<close>),
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   285
          Const (c, _) $
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   286
            (Const (d, _) $ (Const (\<^syntax_const>\<open>_bound\<close>, _) $ Free (v', T)) $ n) $ P] =>
67398
5eb932e604a2 Manual updates towards conversion of "op" syntax
nipkow
parents: 67307
diff changeset
   287
          (case AList.lookup (=) trans (q, c, d) of
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   288
            NONE => raise Match
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   289
          | SOME l => mk v (v', T) l n P)
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   290
        | _ => raise Match));
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   291
  in
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   292
    [tr' All_binder, tr' Ex_binder]
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   293
  end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   294
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   295
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   296
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   297
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   298
  \<^medskip>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   299
  Translate between \<open>{e | x1\<dots>xn. P}\<close> and \<open>{u. \<exists>x1\<dots>xn. u = e \<and> P}\<close>;
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   300
  \<open>{y. \<exists>x1\<dots>xn. y = e \<and> P}\<close> is only translated if \<open>[0..n] \<subseteq> bvs e\<close>.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   301
\<close>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   302
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   303
syntax
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   304
  "_Setcompr" :: "'a \<Rightarrow> idts \<Rightarrow> bool \<Rightarrow> 'a set"
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
   305
    (\<open>(\<open>indent=1 notation=\<open>mixfix set comprehension\<close>\<close>{_ |/_./ _})\<close>)
80760
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   306
syntax_consts
be8c0e039a5e more markup for syntax consts;
wenzelm
parents: 80662
diff changeset
   307
  "_Setcompr" \<rightleftharpoons> Collect
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   308
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   309
parse_translation \<open>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   310
  let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   311
    val ex_tr = snd (Syntax_Trans.mk_binder_tr ("EX ", \<^const_syntax>\<open>Ex\<close>));
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   312
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   313
    fun nvars (Const (\<^syntax_const>\<open>_idts\<close>, _) $ _ $ idts) = nvars idts + 1
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   314
      | nvars _ = 1;
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   315
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   316
    fun setcompr_tr ctxt [e, idts, b] =
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   317
      let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   318
        val eq = Syntax.const \<^const_syntax>\<open>HOL.eq\<close> $ Bound (nvars idts) $ e;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   319
        val P = Syntax.const \<^const_syntax>\<open>HOL.conj\<close> $ eq $ b;
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   320
        val exP = ex_tr ctxt [idts, P];
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   321
      in Syntax.const \<^const_syntax>\<open>Collect\<close> $ absdummy dummyT exP end;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   322
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   323
  in [(\<^syntax_const>\<open>_Setcompr\<close>, setcompr_tr)] end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   324
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   325
81202
243f6bec771c more type information;
wenzelm
parents: 81182
diff changeset
   326
typed_print_translation \<open>
243f6bec771c more type information;
wenzelm
parents: 81182
diff changeset
   327
 [(\<^const_syntax>\<open>Ball\<close>, fn _ => Syntax_Trans.preserve_binder_abs2_tr' \<^syntax_const>\<open>_Ball\<close>),
243f6bec771c more type information;
wenzelm
parents: 81182
diff changeset
   328
  (\<^const_syntax>\<open>Bex\<close>, fn _ => Syntax_Trans.preserve_binder_abs2_tr' \<^syntax_const>\<open>_Bex\<close>)]
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   329
\<close> \<comment> \<open>to avoid eta-contraction of body\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   330
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   331
print_translation \<open>
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   332
let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   333
  val ex_tr' = snd (Syntax_Trans.mk_binder_tr' (\<^const_syntax>\<open>Ex\<close>, "DUMMY"));
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   334
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   335
  fun setcompr_tr' ctxt [Abs (abs as (_, _, P))] =
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   336
    let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   337
      fun check (Const (\<^const_syntax>\<open>Ex\<close>, _) $ Abs (_, _, P), n) = check (P, n + 1)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   338
        | check (Const (\<^const_syntax>\<open>HOL.conj\<close>, _) $
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   339
              (Const (\<^const_syntax>\<open>HOL.eq\<close>, _) $ Bound m $ e) $ P, n) =
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   340
            n > 0 andalso m = n andalso not (loose_bvar1 (P, n)) andalso
67398
5eb932e604a2 Manual updates towards conversion of "op" syntax
nipkow
parents: 67307
diff changeset
   341
            subset (=) (0 upto (n - 1), add_loose_bnos (e, 0, []))
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   342
        | check _ = false;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   343
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   344
        fun tr' (_ $ abs) =
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
   345
          let val _ $ idts $ (_ $ (_ $ _ $ e) $ Q) = ex_tr' ctxt [abs]
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   346
          in Syntax.const \<^syntax_const>\<open>_Setcompr\<close> $ e $ idts $ Q end;
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   347
    in
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   348
      if check (P, 0) then tr' P
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   349
      else
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   350
        let
42284
326f57825e1a explicit structure Syntax_Trans;
wenzelm
parents: 42163
diff changeset
   351
          val (x as _ $ Free(xN, _), t) = Syntax_Trans.atomic_abs_tr' abs;
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   352
          val M = Syntax.const \<^syntax_const>\<open>_Coll\<close> $ x $ t;
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   353
        in
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   354
          case t of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   355
            Const (\<^const_syntax>\<open>HOL.conj\<close>, _) $
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   356
              (Const (\<^const_syntax>\<open>Set.member\<close>, _) $
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   357
                (Const (\<^syntax_const>\<open>_bound\<close>, _) $ Free (yN, _)) $ A) $ P =>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   358
            if xN = yN then Syntax.const \<^syntax_const>\<open>_Collect\<close> $ x $ A $ P else M
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   359
          | _ => M
446c5063e4fd modernized translations;
wenzelm
parents: 34999
diff changeset
   360
        end
13763
f94b569cd610 added print translations tha avoid eta contraction for important binders.
nipkow
parents: 13653
diff changeset
   361
    end;
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   362
  in [(\<^const_syntax>\<open>Collect\<close>, setcompr_tr')] end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   363
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   364
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   365
simproc_setup defined_Bex ("\<exists>x\<in>A. P x \<and> Q x") = \<open>
78099
4d9349989d94 more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents: 77935
diff changeset
   366
  K (Quantifier1.rearrange_Bex (fn ctxt => unfold_tac ctxt @{thms Bex_def}))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   367
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   368
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   369
simproc_setup defined_All ("\<forall>x\<in>A. P x \<longrightarrow> Q x") = \<open>
78099
4d9349989d94 more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents: 77935
diff changeset
   370
  K (Quantifier1.rearrange_Ball (fn ctxt => unfold_tac ctxt @{thms Ball_def}))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   371
\<close>
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   372
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   373
lemma ballI [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> P x) \<Longrightarrow> \<forall>x\<in>A. P x"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   374
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   375
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   376
lemmas strip = impI allI ballI
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   377
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   378
lemma bspec [dest?]: "\<forall>x\<in>A. P x \<Longrightarrow> x \<in> A \<Longrightarrow> P x"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   379
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   380
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   381
text \<open>Gives better instantiation for bound:\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   382
setup \<open>
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51703
diff changeset
   383
  map_theory_claset (fn ctxt =>
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59000
diff changeset
   384
    ctxt addbefore ("bspec", fn ctxt' => dresolve_tac ctxt' @{thms bspec} THEN' assume_tac ctxt'))
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   385
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   386
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   387
ML \<open>
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   388
structure Simpdata =
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   389
struct
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   390
  open Simpdata;
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   391
  val mksimps_pairs = [(\<^const_name>\<open>Ball\<close>, @{thms bspec})] @ mksimps_pairs;
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   392
end;
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   393
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   394
open Simpdata;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   395
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   396
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   397
declaration \<open>fn _ => Simplifier.map_ss (Simplifier.set_mksimps (mksimps mksimps_pairs))\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   398
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   399
lemma ballE [elim]: "\<forall>x\<in>A. P x \<Longrightarrow> (P x \<Longrightarrow> Q) \<Longrightarrow> (x \<notin> A \<Longrightarrow> Q) \<Longrightarrow> Q"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   400
  unfolding Ball_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   401
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   402
lemma bexI [intro]: "P x \<Longrightarrow> x \<in> A \<Longrightarrow> \<exists>x\<in>A. P x"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   403
  \<comment> \<open>Normally the best argument order: \<open>P x\<close> constrains the choice of \<open>x \<in> A\<close>.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   404
  unfolding Bex_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   405
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   406
lemma rev_bexI [intro?]: "x \<in> A \<Longrightarrow> P x \<Longrightarrow> \<exists>x\<in>A. P x"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   407
  \<comment> \<open>The best argument order when there is only one \<open>x \<in> A\<close>.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   408
  unfolding Bex_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   409
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   410
lemma bexCI: "(\<forall>x\<in>A. \<not> P x \<Longrightarrow> P a) \<Longrightarrow> a \<in> A \<Longrightarrow> \<exists>x\<in>A. P x"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   411
  unfolding Bex_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   412
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   413
lemma bexE [elim!]: "\<exists>x\<in>A. P x \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> P x \<Longrightarrow> Q) \<Longrightarrow> Q"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   414
  unfolding Bex_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   415
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   416
lemma ball_triv [simp]: "(\<forall>x\<in>A. P) \<longleftrightarrow> ((\<exists>x. x \<in> A) \<longrightarrow> P)"
72610
paulson <lp15@cam.ac.uk>
parents: 72567
diff changeset
   417
  \<comment> \<open>trivial rewrite rule.\<close>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   418
  by (simp add: Ball_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   419
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   420
lemma bex_triv [simp]: "(\<exists>x\<in>A. P) \<longleftrightarrow> ((\<exists>x. x \<in> A) \<and> P)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   421
  \<comment> \<open>Dual form for existentials.\<close>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   422
  by (simp add: Bex_def)
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   423
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   424
lemma bex_triv_one_point1 [simp]: "(\<exists>x\<in>A. x = a) \<longleftrightarrow> a \<in> A"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   425
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   426
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   427
lemma bex_triv_one_point2 [simp]: "(\<exists>x\<in>A. a = x) \<longleftrightarrow> a \<in> A"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   428
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   429
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   430
lemma bex_one_point1 [simp]: "(\<exists>x\<in>A. x = a \<and> P x) \<longleftrightarrow> a \<in> A \<and> P a"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   431
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   432
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   433
lemma bex_one_point2 [simp]: "(\<exists>x\<in>A. a = x \<and> P x) \<longleftrightarrow> a \<in> A \<and> P a"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   434
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   435
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   436
lemma ball_one_point1 [simp]: "(\<forall>x\<in>A. x = a \<longrightarrow> P x) \<longleftrightarrow> (a \<in> A \<longrightarrow> P a)"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   437
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   438
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   439
lemma ball_one_point2 [simp]: "(\<forall>x\<in>A. a = x \<longrightarrow> P x) \<longleftrightarrow> (a \<in> A \<longrightarrow> P a)"
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   440
  by blast
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   441
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   442
lemma ball_conj_distrib: "(\<forall>x\<in>A. P x \<and> Q x) \<longleftrightarrow> (\<forall>x\<in>A. P x) \<and> (\<forall>x\<in>A. Q x)"
43818
fcc5d3ffb6f5 tuned lemma positions and proofs
haftmann
parents: 42459
diff changeset
   443
  by blast
fcc5d3ffb6f5 tuned lemma positions and proofs
haftmann
parents: 42459
diff changeset
   444
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   445
lemma bex_disj_distrib: "(\<exists>x\<in>A. P x \<or> Q x) \<longleftrightarrow> (\<exists>x\<in>A. P x) \<or> (\<exists>x\<in>A. Q x)"
43818
fcc5d3ffb6f5 tuned lemma positions and proofs
haftmann
parents: 42459
diff changeset
   446
  by blast
fcc5d3ffb6f5 tuned lemma positions and proofs
haftmann
parents: 42459
diff changeset
   447
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   448
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   449
text \<open>Congruence rules\<close>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   450
16636
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   451
lemma ball_cong:
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   452
  "\<lbrakk> A = B;  \<And>x. x \<in> B \<Longrightarrow> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   453
    (\<forall>x\<in>A. P x) \<longleftrightarrow> (\<forall>x\<in>B. Q x)"
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   454
by (simp add: Ball_def)
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   455
69546
27dae626822b prefer naming convention from datatype package for strong congruence rules
haftmann
parents: 69284
diff changeset
   456
lemma ball_cong_simp [cong]:
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   457
  "\<lbrakk> A = B;  \<And>x. x \<in> B =simp=> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   458
    (\<forall>x\<in>A. P x) \<longleftrightarrow> (\<forall>x\<in>B. Q x)"
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   459
by (simp add: simp_implies_def Ball_def)
16636
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   460
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   461
lemma bex_cong:
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   462
  "\<lbrakk> A = B;  \<And>x. x \<in> B \<Longrightarrow> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   463
    (\<exists>x\<in>A. P x) \<longleftrightarrow> (\<exists>x\<in>B. Q x)"
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   464
by (simp add: Bex_def cong: conj_cong)
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   465
69546
27dae626822b prefer naming convention from datatype package for strong congruence rules
haftmann
parents: 69284
diff changeset
   466
lemma bex_cong_simp [cong]:
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   467
  "\<lbrakk> A = B;  \<And>x. x \<in> B =simp=> P x \<longleftrightarrow> Q x \<rbrakk> \<Longrightarrow>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   468
    (\<exists>x\<in>A. P x) \<longleftrightarrow> (\<exists>x\<in>B. Q x)"
69164
74f1b0f10b2b uniform naming of strong congruence rules
nipkow
parents: 69163
diff changeset
   469
by (simp add: simp_implies_def Bex_def cong: conj_cong)
16636
1ed737a98198 Added strong_ball_cong and strong_bex_cong (these are now the standard
berghofe
parents: 15950
diff changeset
   470
59000
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58963
diff changeset
   471
lemma bex1_def: "(\<exists>!x\<in>X. P x) \<longleftrightarrow> (\<exists>x\<in>X. P x) \<and> (\<forall>x\<in>X. \<forall>y\<in>X. P x \<longrightarrow> P y \<longrightarrow> x = y)"
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58963
diff changeset
   472
  by auto
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   473
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   474
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   475
subsection \<open>Basic operations\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   476
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   477
subsubsection \<open>Subsets\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   478
33022
c95102496490 Removal of the unused atpset concept, the atp attribute and some related code.
paulson
parents: 32888
diff changeset
   479
lemma subsetI [intro!]: "(\<And>x. x \<in> A \<Longrightarrow> x \<in> B) \<Longrightarrow> A \<subseteq> B"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   480
  by (simp add: less_eq_set_def le_fun_def)
30352
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   481
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   482
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   483
  \<^medskip>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   484
  Map the type \<open>'a set \<Rightarrow> anything\<close> to just \<open>'a\<close>; for overloading constants
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   485
  whose first argument has type \<open>'a set\<close>.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   486
\<close>
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   487
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   488
lemma subsetD [elim, intro?]: "A \<subseteq> B \<Longrightarrow> c \<in> A \<Longrightarrow> c \<in> B"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   489
  by (simp add: less_eq_set_def le_fun_def)
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   490
  \<comment> \<open>Rule in Modus Ponens style.\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   491
69712
dc85b5b3a532 renamings and new material
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
   492
lemma rev_subsetD [intro?,no_atp]: "c \<in> A \<Longrightarrow> A \<subseteq> B \<Longrightarrow> c \<in> B"
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
   493
  \<comment> \<open>The same, with reversed premises for use with @{method erule} -- cf. @{thm rev_mp}.\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   494
  by (rule subsetD)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   495
69712
dc85b5b3a532 renamings and new material
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
   496
lemma subsetCE [elim,no_atp]: "A \<subseteq> B \<Longrightarrow> (c \<notin> A \<Longrightarrow> P) \<Longrightarrow> (c \<in> B \<Longrightarrow> P) \<Longrightarrow> P"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   497
  \<comment> \<open>Classical elimination rule.\<close>
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   498
  by (auto simp add: less_eq_set_def le_fun_def)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   499
63400
249fa34faba2 misc tuning and modernization;
wenzelm
parents: 63398
diff changeset
   500
lemma subset_eq: "A \<subseteq> B \<longleftrightarrow> (\<forall>x\<in>A. x \<in> B)"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   501
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   502
69712
dc85b5b3a532 renamings and new material
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
   503
lemma contra_subsetD [no_atp]: "A \<subseteq> B \<Longrightarrow> c \<notin> B \<Longrightarrow> c \<notin> A"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   504
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   505
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
   506
lemma subset_refl: "A \<subseteq> A"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
   507
  by (fact order_refl) (* already [iff] *)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   508
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   509
lemma subset_trans: "A \<subseteq> B \<Longrightarrow> B \<subseteq> C \<Longrightarrow> A \<subseteq> C"
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   510
  by (fact order_trans)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   511
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   512
lemma subset_not_subset_eq [code]: "A \<subset> B \<longleftrightarrow> A \<subseteq> B \<and> \<not> B \<subseteq> A"
46146
6baea4fca6bd incorporated various theorems from theory More_Set into corpus
haftmann
parents: 46137
diff changeset
   513
  by (fact less_le_not_le)
6baea4fca6bd incorporated various theorems from theory More_Set into corpus
haftmann
parents: 46137
diff changeset
   514
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   515
lemma eq_mem_trans: "a = b \<Longrightarrow> b \<in> A \<Longrightarrow> a \<in> A"
33044
fd0a9c794ec1 Some new lemmas concerning sets
paulson
parents: 33022
diff changeset
   516
  by simp
fd0a9c794ec1 Some new lemmas concerning sets
paulson
parents: 33022
diff changeset
   517
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   518
lemmas basic_trans_rules [trans] =
69712
dc85b5b3a532 renamings and new material
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
   519
  order_trans_rules rev_subsetD subsetD eq_mem_trans
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   520
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   521
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   522
subsubsection \<open>Equality\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   523
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   524
lemma subset_antisym [intro!]: "A \<subseteq> B \<Longrightarrow> B \<subseteq> A \<Longrightarrow> A = B"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   525
  \<comment> \<open>Anti-symmetry of the subset relation.\<close>
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39213
diff changeset
   526
  by (iprover intro: set_eqI subsetD)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   527
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   528
text \<open>\<^medskip> Equality rules from ZF set theory -- are they appropriate here?\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   529
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   530
lemma equalityD1: "A = B \<Longrightarrow> A \<subseteq> B"
34209
c7f621786035 killed a few warnings
krauss
parents: 33935
diff changeset
   531
  by simp
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   532
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   533
lemma equalityD2: "A = B \<Longrightarrow> B \<subseteq> A"
34209
c7f621786035 killed a few warnings
krauss
parents: 33935
diff changeset
   534
  by simp
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   535
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   536
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   537
  \<^medskip>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   538
  Be careful when adding this to the claset as \<open>subset_empty\<close> is in the
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   539
  simpset: \<^prop>\<open>A = {}\<close> goes to \<^prop>\<open>{} \<subseteq> A\<close> and \<^prop>\<open>A \<subseteq> {}\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   540
  and then back to \<^prop>\<open>A = {}\<close>!
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   541
\<close>
30352
047f183c43b0 restructured theory Set.thy
haftmann
parents: 30304
diff changeset
   542
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   543
lemma equalityE: "A = B \<Longrightarrow> (A \<subseteq> B \<Longrightarrow> B \<subseteq> A \<Longrightarrow> P) \<Longrightarrow> P"
34209
c7f621786035 killed a few warnings
krauss
parents: 33935
diff changeset
   544
  by simp
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   545
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   546
lemma equalityCE [elim]: "A = B \<Longrightarrow> (c \<in> A \<Longrightarrow> c \<in> B \<Longrightarrow> P) \<Longrightarrow> (c \<notin> A \<Longrightarrow> c \<notin> B \<Longrightarrow> P) \<Longrightarrow> P"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   547
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   548
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   549
lemma eqset_imp_iff: "A = B \<Longrightarrow> x \<in> A \<longleftrightarrow> x \<in> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   550
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   551
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   552
lemma eqelem_imp_iff: "x = y \<Longrightarrow> x \<in> A \<longleftrightarrow> y \<in> A"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   553
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   554
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   555
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   556
subsubsection \<open>The empty set\<close>
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   557
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   558
lemma empty_def: "{} = {x. False}"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   559
  by (simp add: bot_set_def bot_fun_def)
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   560
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   561
lemma empty_iff [simp]: "c \<in> {} \<longleftrightarrow> False"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   562
  by (simp add: empty_def)
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   563
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   564
lemma emptyE [elim!]: "a \<in> {} \<Longrightarrow> P"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   565
  by simp
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   566
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   567
lemma empty_subsetI [iff]: "{} \<subseteq> A"
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   568
  \<comment> \<open>One effect is to delete the ASSUMPTION \<^prop>\<open>{} \<subseteq> A\<close>\<close>
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   569
  by blast
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   570
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   571
lemma equals0I: "(\<And>y. y \<in> A \<Longrightarrow> False) \<Longrightarrow> A = {}"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   572
  by blast
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   573
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   574
lemma equals0D: "A = {} \<Longrightarrow> a \<notin> A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   575
  \<comment> \<open>Use for reasoning about disjointness: \<open>A \<inter> B = {}\<close>\<close>
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   576
  by blast
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   577
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   578
lemma ball_empty [simp]: "Ball {} P \<longleftrightarrow> True"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   579
  by (simp add: Ball_def)
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   580
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   581
lemma bex_empty [simp]: "Bex {} P \<longleftrightarrow> False"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   582
  by (simp add: Bex_def)
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   583
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   584
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   585
subsubsection \<open>The universal set -- UNIV\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   586
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   587
abbreviation UNIV :: "'a set"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   588
  where "UNIV \<equiv> top"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   589
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   590
lemma UNIV_def: "UNIV = {x. True}"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   591
  by (simp add: top_set_def top_fun_def)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   592
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   593
lemma UNIV_I [simp]: "x \<in> UNIV"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   594
  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
   595
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   596
declare UNIV_I [intro]  \<comment> \<open>unsafe makes it less likely to cause problems\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   597
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   598
lemma UNIV_witness [intro?]: "\<exists>x. x \<in> UNIV"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   599
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   600
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
   601
lemma subset_UNIV: "A \<subseteq> UNIV"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
   602
  by (fact top_greatest) (* already simp *)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   603
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   604
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   605
  \<^medskip>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   606
  Eta-contracting these two rules (to remove \<open>P\<close>) causes them
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   607
  to be ignored because of their interaction with congruence rules.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   608
\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   609
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   610
lemma ball_UNIV [simp]: "Ball UNIV P \<longleftrightarrow> All P"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   611
  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
   612
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   613
lemma bex_UNIV [simp]: "Bex UNIV P \<longleftrightarrow> Ex P"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   614
  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
   615
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   616
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
   617
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   618
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   619
lemma UNIV_not_empty [iff]: "UNIV \<noteq> {}"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   620
  by (blast elim: equalityE)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   621
51334
fd531bd984d8 more lemmas about intervals
nipkow
parents: 51173
diff changeset
   622
lemma empty_not_UNIV[simp]: "{} \<noteq> UNIV"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   623
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   624
51334
fd531bd984d8 more lemmas about intervals
nipkow
parents: 51173
diff changeset
   625
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   626
subsubsection \<open>The Powerset operator -- Pow\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   627
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   628
definition Pow :: "'a set \<Rightarrow> 'a set set"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   629
  where Pow_def: "Pow A = {B. B \<subseteq> A}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   630
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   631
lemma Pow_iff [iff]: "A \<in> Pow B \<longleftrightarrow> A \<subseteq> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   632
  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
   633
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   634
lemma PowI: "A \<subseteq> B \<Longrightarrow> A \<in> Pow B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   635
  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
   636
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   637
lemma PowD: "A \<in> Pow B \<Longrightarrow> A \<subseteq> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   638
  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
   639
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   640
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
   641
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   642
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   643
lemma Pow_top: "A \<in> Pow A"
34209
c7f621786035 killed a few warnings
krauss
parents: 33935
diff changeset
   644
  by simp
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   645
40703
d1fc454d6735 Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents: 39910
diff changeset
   646
lemma Pow_not_empty: "Pow A \<noteq> {}"
d1fc454d6735 Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents: 39910
diff changeset
   647
  using Pow_top by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   648
41076
a7fba340058c primitive definitions of bot/top/inf/sup for bool and fun are named with canonical suffix `_def` rather than `_eq`;
haftmann
parents: 40872
diff changeset
   649
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   650
subsubsection \<open>Set complement\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   651
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   652
lemma Compl_iff [simp]: "c \<in> - A \<longleftrightarrow> c \<notin> A"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   653
  by (simp add: fun_Compl_def uminus_set_def)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   654
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   655
lemma ComplI [intro!]: "(c \<in> A \<Longrightarrow> False) \<Longrightarrow> c \<in> - A"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   656
  by (simp add: fun_Compl_def uminus_set_def) blast
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   657
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   658
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   659
  \<^medskip>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   660
  This form, with negated conclusion, works well with the Classical prover.
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   661
  Negated assumptions behave like formulae on the right side of the
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   662
  notional turnstile \dots
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   663
\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   664
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   665
lemma ComplD [dest!]: "c \<in> - A \<Longrightarrow> c \<notin> A"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   666
  by simp
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   667
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   668
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
   669
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   670
lemma Compl_eq: "- A = {x. \<not> x \<in> A}"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   671
  by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   672
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   673
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   674
subsubsection \<open>Binary intersection\<close>
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   675
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   676
abbreviation inter :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set"  (infixl \<open>\<inter>\<close> 70)
67398
5eb932e604a2 Manual updates towards conversion of "op" syntax
nipkow
parents: 67307
diff changeset
   677
  where "(\<inter>) \<equiv> inf"
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   678
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   679
notation (ASCII)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   680
  inter  (infixl \<open>Int\<close> 70)
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   681
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   682
lemma Int_def: "A \<inter> B = {x. x \<in> A \<and> x \<in> B}"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   683
  by (simp add: inf_set_def inf_fun_def)
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   684
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   685
lemma Int_iff [simp]: "c \<in> A \<inter> B \<longleftrightarrow> c \<in> A \<and> c \<in> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   686
  unfolding Int_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   687
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   688
lemma IntI [intro!]: "c \<in> A \<Longrightarrow> c \<in> B \<Longrightarrow> c \<in> A \<inter> B"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   689
  by simp
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   690
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   691
lemma IntD1: "c \<in> A \<inter> B \<Longrightarrow> c \<in> A"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   692
  by simp
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   693
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   694
lemma IntD2: "c \<in> A \<inter> B \<Longrightarrow> c \<in> B"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   695
  by simp
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   696
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   697
lemma IntE [elim!]: "c \<in> A \<inter> B \<Longrightarrow> (c \<in> A \<Longrightarrow> c \<in> B \<Longrightarrow> P) \<Longrightarrow> P"
41082
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   698
  by simp
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   699
9ff94e7cc3b3 bot comes before top, inf before sup etc.
haftmann
parents: 41076
diff changeset
   700
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   701
subsubsection \<open>Binary union\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   702
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   703
abbreviation union :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set"  (infixl \<open>\<union>\<close> 65)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   704
  where "union \<equiv> sup"
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   705
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
   706
notation (ASCII)
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   707
  union  (infixl \<open>Un\<close> 65)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   708
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   709
lemma Un_def: "A \<union> B = {x. x \<in> A \<or> x \<in> B}"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   710
  by (simp add: sup_set_def sup_fun_def)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   711
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   712
lemma Un_iff [simp]: "c \<in> A \<union> B \<longleftrightarrow> c \<in> A \<or> c \<in> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   713
  unfolding Un_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   714
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   715
lemma UnI1 [elim?]: "c \<in> A \<Longrightarrow> c \<in> A \<union> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   716
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   717
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   718
lemma UnI2 [elim?]: "c \<in> B \<Longrightarrow> c \<in> A \<union> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   719
  by simp
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   720
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
   721
text \<open>\<^medskip> Classical introduction rule: no commitment to \<open>A\<close> vs. \<open>B\<close>.\<close>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   722
lemma UnCI [intro!]: "(c \<notin> B \<Longrightarrow> c \<in> A) \<Longrightarrow> c \<in> A \<union> B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   723
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   724
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   725
lemma UnE [elim!]: "c \<in> A \<union> B \<Longrightarrow> (c \<in> A \<Longrightarrow> P) \<Longrightarrow> (c \<in> B \<Longrightarrow> P) \<Longrightarrow> P"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   726
  unfolding Un_def by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   727
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
   728
lemma insert_def: "insert a B = {x. x = a} \<union> B"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   729
  by (simp add: insert_compr Un_def)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
   730
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   731
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   732
subsubsection \<open>Set difference\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   733
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   734
lemma Diff_iff [simp]: "c \<in> A - B \<longleftrightarrow> c \<in> A \<and> c \<notin> B"
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
   735
  by (simp add: minus_set_def fun_diff_def)
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   736
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   737
lemma DiffI [intro!]: "c \<in> A \<Longrightarrow> c \<notin> B \<Longrightarrow> c \<in> A - B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   738
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   739
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   740
lemma DiffD1: "c \<in> A - B \<Longrightarrow> c \<in> A"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   741
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   742
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   743
lemma DiffD2: "c \<in> A - B \<Longrightarrow> c \<in> B \<Longrightarrow> P"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   744
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   745
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   746
lemma DiffE [elim!]: "c \<in> A - B \<Longrightarrow> (c \<in> A \<Longrightarrow> c \<notin> B \<Longrightarrow> P) \<Longrightarrow> P"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   747
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   748
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   749
lemma set_diff_eq: "A - B = {x. x \<in> A \<and> x \<notin> B}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   750
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   751
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   752
lemma Compl_eq_Diff_UNIV: "- A = (UNIV - A)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   753
  by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   754
78258
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78230
diff changeset
   755
abbreviation sym_diff :: "'a set \<Rightarrow> 'a set \<Rightarrow> 'a set" where
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78230
diff changeset
   756
  "sym_diff A B \<equiv> ((A - B) \<union> (B-A))"
71366be2c647 The sym_diff operator (symmetric difference)
paulson <lp15@cam.ac.uk>
parents: 78230
diff changeset
   757
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   758
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
   759
subsubsection \<open>Augmenting a set -- \<^const>\<open>insert\<close>\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   760
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   761
lemma insert_iff [simp]: "a \<in> insert b A \<longleftrightarrow> a = b \<or> a \<in> A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   762
  unfolding insert_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   763
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   764
lemma insertI1: "a \<in> insert a B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   765
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   766
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   767
lemma insertI2: "a \<in> B \<Longrightarrow> a \<in> insert b B"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   768
  by simp
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   769
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   770
lemma insertE [elim!]: "a \<in> insert b A \<Longrightarrow> (a = b \<Longrightarrow> P) \<Longrightarrow> (a \<in> A \<Longrightarrow> P) \<Longrightarrow> P"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   771
  unfolding insert_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   772
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   773
lemma insertCI [intro!]: "(a \<notin> B \<Longrightarrow> a = b) \<Longrightarrow> a \<in> insert b B"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   774
  \<comment> \<open>Classical introduction rule.\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   775
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   776
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   777
lemma subset_insert_iff: "A \<subseteq> insert x B \<longleftrightarrow> (if x \<in> A then A - {x} \<subseteq> B else A \<subseteq> B)"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   778
  by auto
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   779
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   780
lemma set_insert:
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   781
  assumes "x \<in> A"
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   782
  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
   783
proof
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   784
  show "A = insert x (A - {x})" using assms by blast
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   785
  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
   786
qed
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   787
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   788
lemma insert_ident: "x \<notin> A \<Longrightarrow> x \<notin> B \<Longrightarrow> insert x A = insert x B \<longleftrightarrow> A = B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   789
  by auto
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   790
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   791
lemma insert_eq_iff:
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   792
  assumes "a \<notin> A" "b \<notin> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   793
  shows "insert a A = insert b B \<longleftrightarrow>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   794
    (if a = b then A = B else \<exists>C. A = insert b C \<and> b \<notin> C \<and> B = insert a C \<and> a \<notin> C)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   795
    (is "?L \<longleftrightarrow> ?R")
44744
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   796
proof
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   797
  show ?R if ?L
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   798
  proof (cases "a = b")
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   799
    case True
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   800
    with assms \<open>?L\<close> show ?R
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   801
      by (simp add: insert_ident)
44744
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   802
  next
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   803
    case False
44744
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   804
    let ?C = "A - {b}"
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   805
    have "A = insert b ?C \<and> b \<notin> ?C \<and> B = insert a ?C \<and> a \<notin> ?C"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   806
      using assms \<open>?L\<close> \<open>a \<noteq> b\<close> by auto
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   807
    then show ?R using \<open>a \<noteq> b\<close> by auto
44744
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   808
  qed
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   809
  show ?L if ?R
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   810
    using that by (auto split: if_splits)
44744
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   811
qed
bdf8eb8f126b added new lemmas
nipkow
parents: 44490
diff changeset
   812
78230
7ca11a7ace41 added [simp]
nipkow
parents: 78099
diff changeset
   813
lemma insert_UNIV[simp]: "insert x UNIV = UNIV"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   814
  by auto
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   815
60057
86fa63ce8156 add lemmas
Andreas Lochbihler
parents: 59507
diff changeset
   816
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   817
subsubsection \<open>Singletons, using insert\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   818
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   819
lemma singletonI [intro!]: "a \<in> {a}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   820
  \<comment> \<open>Redundant? But unlike \<open>insertCI\<close>, it proves the subgoal immediately!\<close>
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   821
  by (rule insertI1)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   822
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   823
lemma singletonD [dest!]: "b \<in> {a} \<Longrightarrow> b = a"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   824
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   825
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   826
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
   827
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   828
lemma singleton_iff: "b \<in> {a} \<longleftrightarrow> b = a"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   829
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   830
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   831
lemma singleton_inject [dest!]: "{a} = {b} \<Longrightarrow> a = b"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   832
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   833
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   834
lemma singleton_insert_inj_eq [iff]: "{b} = insert a A \<longleftrightarrow> a = b \<and> A \<subseteq> {b}"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   835
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   836
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   837
lemma singleton_insert_inj_eq' [iff]: "insert a A = {b} \<longleftrightarrow> a = b \<and> A \<subseteq> {b}"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   838
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   839
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   840
lemma subset_singletonD: "A \<subseteq> {x} \<Longrightarrow> A = {} \<or> A = {x}"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   841
  by fast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   842
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62521
diff changeset
   843
lemma subset_singleton_iff: "X \<subseteq> {a} \<longleftrightarrow> X = {} \<or> X = {a}"
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62521
diff changeset
   844
  by blast
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62521
diff changeset
   845
71827
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 70614
diff changeset
   846
lemma subset_singleton_iff_Uniq: "(\<exists>a. A \<subseteq> {a}) \<longleftrightarrow> (\<exists>\<^sub>\<le>\<^sub>1x. x \<in> A)"
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 70614
diff changeset
   847
  unfolding Uniq_def by blast
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 70614
diff changeset
   848
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   849
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
   850
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   851
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   852
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
   853
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   854
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   855
lemma Diff_single_insert: "A - {x} \<subseteq> B \<Longrightarrow> A \<subseteq> insert x B"
62087
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 62083
diff changeset
   856
  by blast
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 62083
diff changeset
   857
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   858
lemma subset_Diff_insert: "A \<subseteq> B - insert x C \<longleftrightarrow> A \<subseteq> B - C \<and> x \<notin> A"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   859
  by blast
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   860
67091
1393c2340eec more symbols;
wenzelm
parents: 67051
diff changeset
   861
lemma doubleton_eq_iff: "{a, b} = {c, d} \<longleftrightarrow> a = c \<and> b = d \<or> a = d \<and> b = c"
30531
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   862
  by (blast elim: equalityE)
ab3d61baf66a reverted to old version of Set.thy -- strange effects have to be traced first
haftmann
parents: 30352
diff changeset
   863
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   864
lemma Un_singleton_iff: "A \<union> B = {x} \<longleftrightarrow> A = {} \<and> B = {x} \<or> A = {x} \<and> B = {} \<or> A = {x} \<and> B = {x}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   865
  by auto
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   866
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   867
lemma singleton_Un_iff: "{x} = A \<union> B \<longleftrightarrow> A = {} \<and> B = {x} \<or> A = {x} \<and> B = {} \<or> A = {x} \<and> B = {x}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   868
  by auto
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   869
56014
haftmann
parents: 55775
diff changeset
   870
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   871
subsubsection \<open>Image of a set under a function\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   872
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   873
text \<open>Frequently \<open>b\<close> does not have the syntactic form of \<open>f x\<close>.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   874
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
   875
definition image :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a set \<Rightarrow> 'b set"    (infixr \<open>`\<close> 90)
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   876
  where "f ` A = {y. \<exists>x\<in>A. y = f x}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   877
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   878
lemma image_eqI [simp, intro]: "b = f x \<Longrightarrow> x \<in> A \<Longrightarrow> b \<in> f ` A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   879
  unfolding image_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   880
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   881
lemma imageI: "x \<in> A \<Longrightarrow> f x \<in> f ` 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
   882
  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
   883
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   884
lemma rev_image_eqI: "x \<in> A \<Longrightarrow> b = f x \<Longrightarrow> b \<in> f ` A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   885
  \<comment> \<open>This version's more effective when we already have the required \<open>x\<close>.\<close>
56014
haftmann
parents: 55775
diff changeset
   886
  by (rule image_eqI)
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
   887
3698947146b2 closer relation of sets and complete lattices; corresponding consts, defs and syntax at similar places in theory text
haftmann
parents: 32064
diff changeset
   888
lemma imageE [elim!]:
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   889
  assumes "b \<in> (\<lambda>x. f x) ` A"  \<comment> \<open>The eta-expansion gives variable-name preservation.\<close>
56014
haftmann
parents: 55775
diff changeset
   890
  obtains x where "b = f x" and "x \<in> A"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   891
  using assms unfolding image_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   892
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   893
lemma Compr_image_eq: "{x \<in> f ` A. P x} = f ` {x \<in> A. P (f x)}"
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 50580
diff changeset
   894
  by auto
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 50580
diff changeset
   895
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   896
lemma image_Un: "f ` (A \<union> B) = f ` A \<union> f ` B"
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
   897
  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
   898
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   899
lemma image_iff: "z \<in> f ` A \<longleftrightarrow> (\<exists>x\<in>A. z = f x)"
56014
haftmann
parents: 55775
diff changeset
   900
  by blast
haftmann
parents: 55775
diff changeset
   901
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   902
lemma image_subsetI: "(\<And>x. x \<in> A \<Longrightarrow> f x \<in> B) \<Longrightarrow> f ` A \<subseteq> B"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   903
  \<comment> \<open>Replaces the three steps \<open>subsetI\<close>, \<open>imageE\<close>,
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   904
    \<open>hypsubst\<close>, but breaks too many existing proofs.\<close>
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
   905
  by blast
11979
0a3dace545c5 converted theory "Set";
wenzelm
parents: 11752
diff changeset
   906
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   907
lemma image_subset_iff: "f ` A \<subseteq> B \<longleftrightarrow> (\<forall>x\<in>A. f x \<in> B)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
   908
  \<comment> \<open>This rewrite rule would confuse users if made default.\<close>
56014
haftmann
parents: 55775
diff changeset
   909
  by blast
haftmann
parents: 55775
diff changeset
   910
haftmann
parents: 55775
diff changeset
   911
lemma subset_imageE:
haftmann
parents: 55775
diff changeset
   912
  assumes "B \<subseteq> f ` A"
haftmann
parents: 55775
diff changeset
   913
  obtains C where "C \<subseteq> A" and "B = f ` C"
haftmann
parents: 55775
diff changeset
   914
proof -
haftmann
parents: 55775
diff changeset
   915
  from assms have "B = f ` {a \<in> A. f a \<in> B}" by fast
haftmann
parents: 55775
diff changeset
   916
  moreover have "{a \<in> A. f a \<in> B} \<subseteq> A" by blast
haftmann
parents: 55775
diff changeset
   917
  ultimately show thesis by (blast intro: that)
haftmann
parents: 55775
diff changeset
   918
qed
haftmann
parents: 55775
diff changeset
   919
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   920
lemma subset_image_iff: "B \<subseteq> f ` A \<longleftrightarrow> (\<exists>AA\<subseteq>A. B = f ` AA)"
56014
haftmann
parents: 55775
diff changeset
   921
  by (blast elim: subset_imageE)
haftmann
parents: 55775
diff changeset
   922
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   923
lemma image_ident [simp]: "(\<lambda>x. x) ` Y = Y"
56014
haftmann
parents: 55775
diff changeset
   924
  by blast
haftmann
parents: 55775
diff changeset
   925
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   926
lemma image_empty [simp]: "f ` {} = {}"
56014
haftmann
parents: 55775
diff changeset
   927
  by blast
haftmann
parents: 55775
diff changeset
   928
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   929
lemma image_insert [simp]: "f ` insert a B = insert (f a) (f ` B)"
56014
haftmann
parents: 55775
diff changeset
   930
  by blast
haftmann
parents: 55775
diff changeset
   931
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   932
lemma image_constant: "x \<in> A \<Longrightarrow> (\<lambda>x. c) ` A = {c}"
56014
haftmann
parents: 55775
diff changeset
   933
  by auto
haftmann
parents: 55775
diff changeset
   934
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   935
lemma image_constant_conv: "(\<lambda>x. c) ` A = (if A = {} then {} else {c})"
56014
haftmann
parents: 55775
diff changeset
   936
  by auto
haftmann
parents: 55775
diff changeset
   937
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   938
lemma image_image: "f ` (g ` A) = (\<lambda>x. f (g x)) ` A"
56014
haftmann
parents: 55775
diff changeset
   939
  by blast
haftmann
parents: 55775
diff changeset
   940
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   941
lemma insert_image [simp]: "x \<in> A \<Longrightarrow> insert (f x) (f ` A) = f ` A"
56014
haftmann
parents: 55775
diff changeset
   942
  by blast
haftmann
parents: 55775
diff changeset
   943
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   944
lemma image_is_empty [iff]: "f ` A = {} \<longleftrightarrow> A = {}"
56014
haftmann
parents: 55775
diff changeset
   945
  by blast
haftmann
parents: 55775
diff changeset
   946
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   947
lemma empty_is_image [iff]: "{} = f ` A \<longleftrightarrow> A = {}"
56014
haftmann
parents: 55775
diff changeset
   948
  by blast
haftmann
parents: 55775
diff changeset
   949
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   950
lemma image_Collect: "f ` {x. P x} = {f x | x. P x}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   951
  \<comment> \<open>NOT suitable as a default simp rule: the RHS isn't simpler than the LHS,
56014
haftmann
parents: 55775
diff changeset
   952
      with its implicit quantifier and conjunction.  Also image enjoys better
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
   953
      equational properties than does the RHS.\<close>
56014
haftmann
parents: 55775
diff changeset
   954
  by blast
haftmann
parents: 55775
diff changeset
   955
haftmann
parents: 55775
diff changeset
   956
lemma if_image_distrib [simp]:
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   957
  "(\<lambda>x. if P x then f x else g x) ` S = f ` (S \<inter> {x. P x}) \<union> g ` (S \<inter> {x. \<not> P x})"
56077
d397030fb27e tuned proofs
haftmann
parents: 56014
diff changeset
   958
  by auto
56014
haftmann
parents: 55775
diff changeset
   959
69768
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   960
lemma image_cong:
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   961
  "f ` M = g ` N" if "M = N" "\<And>x. x \<in> N \<Longrightarrow> f x = g x"
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   962
  using that by (simp add: image_def)
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   963
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   964
lemma image_cong_simp [cong]:
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   965
  "f ` M = g ` N" if "M = N" "\<And>x. x \<in> N =simp=> f x = g x"
7e4966eaf781 proper congruence rule for image operator
haftmann
parents: 69712
diff changeset
   966
  using that image_cong [of M N f g] by (simp add: simp_implies_def)
56014
haftmann
parents: 55775
diff changeset
   967
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   968
lemma image_Int_subset: "f ` (A \<inter> B) \<subseteq> f ` A \<inter> f ` B"
56014
haftmann
parents: 55775
diff changeset
   969
  by blast
haftmann
parents: 55775
diff changeset
   970
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   971
lemma image_diff_subset: "f ` A - f ` B \<subseteq> f ` (A - B)"
56014
haftmann
parents: 55775
diff changeset
   972
  by blast
haftmann
parents: 55775
diff changeset
   973
63398
wenzelm
parents: 63365
diff changeset
   974
lemma Setcompr_eq_image: "{f x |x. x \<in> A} = f ` A"
59504
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
   975
  by blast
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
   976
62083
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 61955
diff changeset
   977
lemma setcompr_eq_image: "{f x |x. P x} = f ` {x. P x}"
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 61955
diff changeset
   978
  by auto
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 61955
diff changeset
   979
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   980
lemma ball_imageD: "\<forall>x\<in>f ` A. P x \<Longrightarrow> \<forall>x\<in>A. P (f x)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   981
  by simp
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   982
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   983
lemma bex_imageD: "\<exists>x\<in>f ` A. P x \<Longrightarrow> \<exists>x\<in>A. P (f x)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   984
  by auto
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
   985
67398
5eb932e604a2 Manual updates towards conversion of "op" syntax
nipkow
parents: 67307
diff changeset
   986
lemma image_add_0 [simp]: "(+) (0::'a::comm_monoid_add) ` S = S"
63007
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
   987
  by auto
aa894a49f77d new theorems about convex hulls, etc.; also, renamed some theorems
paulson <lp15@cam.ac.uk>
parents: 62843
diff changeset
   988
77140
9a60c1759543 Lots more new material thanks to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents: 76259
diff changeset
   989
theorem Cantors_theorem: "\<nexists>f. f ` A = Pow A"
76259
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   990
proof
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   991
  assume "\<exists>f. f ` A = Pow A"
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   992
  then obtain f where f: "f ` A = Pow A" ..
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   993
  let ?X = "{a \<in> A. a \<notin> f a}"
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   994
  have "?X \<in> Pow A" by blast
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   995
  then have "?X \<in> f ` A" by (simp only: f)
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   996
  then obtain x where "x \<in> A" and "f x = ?X" by blast
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   997
  then show False by blast
d1c26efb7a47 moved theorem from Fun to Set
nipkow
parents: 76054
diff changeset
   998
qed
56014
haftmann
parents: 55775
diff changeset
   999
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1000
text \<open>\<^medskip> Range of a function -- just an abbreviation for image!\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1001
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1002
abbreviation range :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b set"  \<comment> \<open>of function\<close>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1003
  where "range f \<equiv> f ` UNIV"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1004
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1005
lemma range_eqI: "b = f x \<Longrightarrow> b \<in> range f"
56014
haftmann
parents: 55775
diff changeset
  1006
  by simp
haftmann
parents: 55775
diff changeset
  1007
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1008
lemma rangeI: "f x \<in> range f"
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
  1009
  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
  1010
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1011
lemma rangeE [elim?]: "b \<in> range (\<lambda>x. f x) \<Longrightarrow> (\<And>x. b = f x \<Longrightarrow> P) \<Longrightarrow> P"
56014
haftmann
parents: 55775
diff changeset
  1012
  by (rule imageE)
haftmann
parents: 55775
diff changeset
  1013
74590
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1014
lemma range_subsetD: "range f \<subseteq> B \<Longrightarrow> f i \<in> B"
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1015
  by blast
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1016
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1017
lemma full_SetCompr_eq: "{u. \<exists>x. u = f x} = range f"
56014
haftmann
parents: 55775
diff changeset
  1018
  by auto
haftmann
parents: 55775
diff changeset
  1019
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1020
lemma range_composition: "range (\<lambda>x. f (g x)) = f ` range g"
56077
d397030fb27e tuned proofs
haftmann
parents: 56014
diff changeset
  1021
  by auto
56014
haftmann
parents: 55775
diff changeset
  1022
68780
54fdc8bc73a3 new simp rule
haftmann
parents: 67673
diff changeset
  1023
lemma range_constant [simp]: "range (\<lambda>_. x) = {x}"
54fdc8bc73a3 new simp rule
haftmann
parents: 67673
diff changeset
  1024
  by (simp add: image_constant)
54fdc8bc73a3 new simp rule
haftmann
parents: 67673
diff changeset
  1025
63398
wenzelm
parents: 63365
diff changeset
  1026
lemma range_eq_singletonD: "range f = {a} \<Longrightarrow> f x = a"
wenzelm
parents: 63365
diff changeset
  1027
  by auto
63365
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  1028
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
  1029
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1030
subsubsection \<open>Some rules with \<open>if\<close>\<close>
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1031
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1032
text \<open>Elimination of \<open>{x. \<dots> \<and> x = t \<and> \<dots>}\<close>.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1033
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1034
lemma Collect_conv_if: "{x. x = a \<and> P x} = (if P a then {a} else {})"
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
  1035
  by auto
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1036
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1037
lemma Collect_conv_if2: "{x. a = x \<and> P x} = (if P a then {a} else {})"
32117
0762b9ad83df Set.thy: prefer = over == where possible; tuned ML setup; dropped (moved) ML legacy
haftmann
parents: 32115
diff changeset
  1038
  by auto
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1039
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1040
text \<open>
62390
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1041
  Rewrite rules for boolean case-splitting: faster than \<open>if_split [split]\<close>.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1042
\<close>
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1043
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1044
lemma if_split_eq1: "(if Q then x else y) = b \<longleftrightarrow> (Q \<longrightarrow> x = b) \<and> (\<not> Q \<longrightarrow> y = b)"
62390
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1045
  by (rule if_split)
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1046
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1047
lemma if_split_eq2: "a = (if Q then x else y) \<longleftrightarrow> (Q \<longrightarrow> a = x) \<and> (\<not> Q \<longrightarrow> a = y)"
62390
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1048
  by (rule if_split)
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1049
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1050
text \<open>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1051
  Split ifs on either side of the membership relation.
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1052
  Not for \<open>[simp]\<close> -- can cause goals to blow up!
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1053
\<close>
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1054
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1055
lemma if_split_mem1: "(if Q then x else y) \<in> b \<longleftrightarrow> (Q \<longrightarrow> x \<in> b) \<and> (\<not> Q \<longrightarrow> y \<in> b)"
62390
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1056
  by (rule if_split)
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1057
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1058
lemma if_split_mem2: "(a \<in> (if Q then x else y)) \<longleftrightarrow> (Q \<longrightarrow> a \<in> x) \<and> (\<not> Q \<longrightarrow> a \<in> y)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1059
  by (rule if_split [where P = "\<lambda>S. a \<in> S"])
62390
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1060
842917225d56 more canonical names
nipkow
parents: 62087
diff changeset
  1061
lemmas split_ifs = if_bool_eq_conj if_split_eq1 if_split_eq2 if_split_mem1 if_split_mem2
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1062
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1063
(*Would like to add these, but the existing code only searches for the
37677
c5a8b612e571 qualified constants Set.member and Set.Collect
haftmann
parents: 37387
diff changeset
  1064
  outer-level constant, which in this case is just Set.member; we instead need
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1065
  to use term-nets to associate patterns with rules.  Also, if a rule fails to
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1066
  apply, then the formula should be kept.
34974
18b41bba42b5 new theory Algebras.thy for generic algebraic structures
haftmann
parents: 34209
diff changeset
  1067
  [("uminus", Compl_iff RS iffD1), ("minus", [Diff_iff RS iffD1]),
32081
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1068
   ("Int", [IntD1,IntD2]),
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1069
   ("Collect", [CollectD]), ("Inter", [InterD]), ("INTER", [INT_D])]
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1070
 *)
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1071
1b7a901e2edc refined outline structure
haftmann
parents: 32078
diff changeset
  1072
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1073
subsection \<open>Further operations and lemmas\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1074
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1075
subsubsection \<open>The ``proper subset'' relation\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1076
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1077
lemma psubsetI [intro!]: "A \<subseteq> B \<Longrightarrow> A \<noteq> B \<Longrightarrow> A \<subset> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1078
  unfolding less_le by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1079
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1080
lemma psubsetE [elim!]: "A \<subset> B \<Longrightarrow> (A \<subseteq> B \<Longrightarrow> \<not> B \<subseteq> A \<Longrightarrow> R) \<Longrightarrow> R"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1081
  unfolding less_le by blast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1082
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1083
lemma psubset_insert_iff:
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1084
  "A \<subset> insert x B \<longleftrightarrow> (if x \<in> B then A \<subset> B else if x \<in> A then A - {x} \<subset> B else A \<subseteq> B)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1085
  by (auto simp add: less_le subset_insert_iff)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1086
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1087
lemma psubset_eq: "A \<subset> B \<longleftrightarrow> A \<subseteq> B \<and> A \<noteq> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1088
  by (simp only: less_le)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1089
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1090
lemma psubset_imp_subset: "A \<subset> B \<Longrightarrow> A \<subseteq> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1091
  by (simp add: psubset_eq)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1092
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1093
lemma psubset_trans: "A \<subset> B \<Longrightarrow> B \<subset> C \<Longrightarrow> A \<subset> C"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1094
  unfolding less_le by (auto dest: subset_antisym)
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1095
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1096
lemma psubsetD: "A \<subset> B \<Longrightarrow> c \<in> A \<Longrightarrow> c \<in> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1097
  unfolding less_le by (auto dest: subsetD)
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1098
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1099
lemma psubset_subset_trans: "A \<subset> B \<Longrightarrow> B \<subseteq> C \<Longrightarrow> A \<subset> C"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1100
  by (auto simp add: psubset_eq)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1101
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1102
lemma subset_psubset_trans: "A \<subseteq> B \<Longrightarrow> B \<subset> C \<Longrightarrow> A \<subset> C"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1103
  by (auto simp add: psubset_eq)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1104
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1105
lemma psubset_imp_ex_mem: "A \<subset> B \<Longrightarrow> \<exists>b. b \<in> B - A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1106
  unfolding less_le by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1107
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1108
lemma atomize_ball: "(\<And>x. x \<in> A \<Longrightarrow> P x) \<equiv> Trueprop (\<forall>x\<in>A. P x)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1109
  by (simp only: Ball_def atomize_all atomize_imp)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1110
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1111
lemmas [symmetric, rulify] = atomize_ball
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1112
  and [symmetric, defn] = atomize_ball
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1113
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1114
lemma image_Pow_mono: "f ` A \<subseteq> B \<Longrightarrow> image f ` Pow A \<subseteq> Pow B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1115
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1116
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1117
lemma image_Pow_surj: "f ` A = B \<Longrightarrow> image f ` Pow A = Pow B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1118
  by (blast elim: subset_imageE)
56014
haftmann
parents: 55775
diff changeset
  1119
40703
d1fc454d6735 Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents: 39910
diff changeset
  1120
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1121
subsubsection \<open>Derived rules involving subsets.\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1122
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1123
text \<open>\<open>insert\<close>.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1124
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1125
lemma subset_insertI: "B \<subseteq> insert a B"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1126
  by (rule subsetI) (erule insertI2)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1127
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1128
lemma subset_insertI2: "A \<subseteq> B \<Longrightarrow> A \<subseteq> insert b B"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1129
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1130
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1131
lemma subset_insert: "x \<notin> A \<Longrightarrow> A \<subseteq> insert x B \<longleftrightarrow> A \<subseteq> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1132
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1133
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1134
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1135
text \<open>\<^medskip> Finite Union -- the least upper bound of two sets.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1136
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1137
lemma Un_upper1: "A \<subseteq> A \<union> B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1138
  by (fact sup_ge1)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1139
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1140
lemma Un_upper2: "B \<subseteq> A \<union> B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1141
  by (fact sup_ge2)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1142
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1143
lemma Un_least: "A \<subseteq> C \<Longrightarrow> B \<subseteq> C \<Longrightarrow> A \<union> B \<subseteq> C"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1144
  by (fact sup_least)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1145
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1146
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1147
text \<open>\<^medskip> Finite Intersection -- the greatest lower bound of two sets.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1148
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1149
lemma Int_lower1: "A \<inter> B \<subseteq> A"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1150
  by (fact inf_le1)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1151
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1152
lemma Int_lower2: "A \<inter> B \<subseteq> B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1153
  by (fact inf_le2)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1154
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1155
lemma Int_greatest: "C \<subseteq> A \<Longrightarrow> C \<subseteq> B \<Longrightarrow> C \<subseteq> A \<inter> B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1156
  by (fact inf_greatest)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1157
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1158
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1159
text \<open>\<^medskip> Set difference.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1160
69284
3273692de24a more [simp]
nipkow
parents: 69216
diff changeset
  1161
lemma Diff_subset[simp]: "A - B \<subseteq> A"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1162
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1163
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1164
lemma Diff_subset_conv: "A - B \<subseteq> C \<longleftrightarrow> A \<subseteq> B \<union> C"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1165
  by blast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1166
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1167
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1168
subsubsection \<open>Equalities involving union, intersection, inclusion, etc.\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1169
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1170
text \<open>\<open>{}\<close>.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1171
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1172
lemma Collect_const [simp]: "{s. P} = (if P then UNIV else {})"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1173
  \<comment> \<open>supersedes \<open>Collect_False_empty\<close>\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1174
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1175
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1176
lemma subset_empty [simp]: "A \<subseteq> {} \<longleftrightarrow> A = {}"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1177
  by (fact bot_unique)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1178
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1179
lemma not_psubset_empty [iff]: "\<not> (A < {})"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1180
  by (fact not_less_bot) (* FIXME: already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1181
69144
f13b82281715 new theory Abstract_Topology with lots of stuff from HOL Light's metric.sml
paulson <lp15@cam.ac.uk>
parents: 68780
diff changeset
  1182
lemma Collect_subset [simp]: "{x\<in>A. P x} \<subseteq> A" by auto
f13b82281715 new theory Abstract_Topology with lots of stuff from HOL Light's metric.sml
paulson <lp15@cam.ac.uk>
parents: 68780
diff changeset
  1183
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1184
lemma Collect_empty_eq [simp]: "Collect P = {} \<longleftrightarrow> (\<forall>x. \<not> P x)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1185
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1186
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1187
lemma empty_Collect_eq [simp]: "{} = Collect P \<longleftrightarrow> (\<forall>x. \<not> P x)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1188
  by blast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1189
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1190
lemma Collect_neg_eq: "{x. \<not> P x} = - {x. P x}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1191
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1192
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1193
lemma Collect_disj_eq: "{x. P x \<or> Q x} = {x. P x} \<union> {x. Q x}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1194
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1195
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1196
lemma Collect_imp_eq: "{x. P x \<longrightarrow> Q x} = - {x. P x} \<union> {x. Q x}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1197
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1198
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1199
lemma Collect_conj_eq: "{x. P x \<and> Q x} = {x. P x} \<inter> {x. Q x}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1200
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1201
59506
4af607652318 Not a simprule, as it complicates proofs
paulson <lp15@cam.ac.uk>
parents: 59504
diff changeset
  1202
lemma Collect_mono_iff: "Collect P \<subseteq> Collect Q \<longleftrightarrow> (\<forall>x. P x \<longrightarrow> Q x)"
59504
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
  1203
  by blast
8c6747dba731 New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
  1204
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1205
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1206
text \<open>\<^medskip> \<open>insert\<close>.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1207
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1208
lemma insert_is_Un: "insert a A = {a} \<union> A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1209
  \<comment> \<open>NOT SUITABLE FOR REWRITING since \<open>{a} \<equiv> insert a {}\<close>\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1210
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1211
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1212
lemma insert_not_empty [simp]: "insert a A \<noteq> {}"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1213
  and empty_not_insert [simp]: "{} \<noteq> insert a A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1214
  by blast+
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1215
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1216
lemma insert_absorb: "a \<in> A \<Longrightarrow> insert a A = A"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1217
  \<comment> \<open>\<open>[simp]\<close> causes recursive calls when there are nested inserts\<close>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1218
  \<comment> \<open>with \<^emph>\<open>quadratic\<close> running time\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1219
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1220
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1221
lemma insert_absorb2 [simp]: "insert x (insert x A) = insert x A"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1222
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1223
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1224
lemma insert_commute: "insert x (insert y A) = insert y (insert x A)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1225
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1226
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1227
lemma insert_subset [simp]: "insert x A \<subseteq> B \<longleftrightarrow> x \<in> B \<and> A \<subseteq> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1228
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1229
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1230
lemma mk_disjoint_insert: "a \<in> A \<Longrightarrow> \<exists>B. A = insert a B \<and> a \<notin> B"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1231
  \<comment> \<open>use new \<open>B\<close> rather than \<open>A - {a}\<close> to avoid infinite unfolding\<close>
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1232
  by (rule exI [where x = "A - {a}"]) blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1233
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1234
lemma insert_Collect: "insert a (Collect P) = {u. u \<noteq> a \<longrightarrow> P u}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1235
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1236
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1237
lemma insert_inter_insert [simp]: "insert a A \<inter> insert a B = insert a (A \<inter> B)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1238
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1239
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53364
diff changeset
  1240
lemma insert_disjoint [simp]:
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1241
  "insert a A \<inter> B = {} \<longleftrightarrow> a \<notin> B \<and> A \<inter> B = {}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1242
  "{} = insert a A \<inter> B \<longleftrightarrow> a \<notin> B \<and> {} = A \<inter> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1243
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1244
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53364
diff changeset
  1245
lemma disjoint_insert [simp]:
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1246
  "B \<inter> insert a A = {} \<longleftrightarrow> a \<notin> B \<and> B \<inter> A = {}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1247
  "{} = A \<inter> insert b B \<longleftrightarrow> b \<notin> A \<and> {} = A \<inter> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1248
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1249
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1250
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1251
text \<open>\<^medskip> \<open>Int\<close>\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1252
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1253
lemma Int_absorb: "A \<inter> A = A"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1254
  by (fact inf_idem) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1255
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1256
lemma Int_left_absorb: "A \<inter> (A \<inter> B) = A \<inter> B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1257
  by (fact inf_left_idem)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1258
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1259
lemma Int_commute: "A \<inter> B = B \<inter> A"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1260
  by (fact inf_commute)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1261
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1262
lemma Int_left_commute: "A \<inter> (B \<inter> C) = B \<inter> (A \<inter> C)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1263
  by (fact inf_left_commute)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1264
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1265
lemma Int_assoc: "(A \<inter> B) \<inter> C = A \<inter> (B \<inter> C)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1266
  by (fact inf_assoc)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1267
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1268
lemmas Int_ac = Int_assoc Int_left_absorb Int_commute Int_left_commute
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1269
  \<comment> \<open>Intersection is an AC-operator\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1270
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1271
lemma Int_absorb1: "B \<subseteq> A \<Longrightarrow> A \<inter> B = B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1272
  by (fact inf_absorb2)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1273
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1274
lemma Int_absorb2: "A \<subseteq> B \<Longrightarrow> A \<inter> B = A"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1275
  by (fact inf_absorb1)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1276
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1277
lemma Int_empty_left: "{} \<inter> B = {}"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1278
  by (fact inf_bot_left) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1279
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1280
lemma Int_empty_right: "A \<inter> {} = {}"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1281
  by (fact inf_bot_right) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1282
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1283
lemma disjoint_eq_subset_Compl: "A \<inter> B = {} \<longleftrightarrow> A \<subseteq> - B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1284
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1285
71848
3c7852327787 A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
  1286
lemma disjoint_iff: "A \<inter> B = {} \<longleftrightarrow> (\<forall>x. x\<in>A \<longrightarrow> x \<notin> B)"
3c7852327787 A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
  1287
  by blast
3c7852327787 A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
  1288
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1289
lemma disjoint_iff_not_equal: "A \<inter> B = {} \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>B. x \<noteq> y)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1290
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1291
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1292
lemma Int_UNIV_left: "UNIV \<inter> B = B"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1293
  by (fact inf_top_left) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1294
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1295
lemma Int_UNIV_right: "A \<inter> UNIV = A"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1296
  by (fact inf_top_right) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1297
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1298
lemma Int_Un_distrib: "A \<inter> (B \<union> C) = (A \<inter> B) \<union> (A \<inter> C)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1299
  by (fact inf_sup_distrib1)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1300
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1301
lemma Int_Un_distrib2: "(B \<union> C) \<inter> A = (B \<inter> A) \<union> (C \<inter> A)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1302
  by (fact inf_sup_distrib2)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1303
79099
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1304
lemma Int_UNIV: "A \<inter> B = UNIV \<longleftrightarrow> A = UNIV \<and> B = UNIV"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1305
  by (fact inf_eq_top_iff) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1306
79099
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1307
lemma Int_subset_iff: "C \<subseteq> A \<inter> B \<longleftrightarrow> C \<subseteq> A \<and> C \<subseteq> B"
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1308
  by (fact le_inf_iff) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1309
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1310
lemma Int_Collect: "x \<in> A \<inter> {x. P x} \<longleftrightarrow> x \<in> A \<and> P x"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1311
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1312
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1313
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1314
text \<open>\<^medskip> \<open>Un\<close>.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1315
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1316
lemma Un_absorb: "A \<union> A = A"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1317
  by (fact sup_idem) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1318
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1319
lemma Un_left_absorb: "A \<union> (A \<union> B) = A \<union> B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1320
  by (fact sup_left_idem)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1321
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1322
lemma Un_commute: "A \<union> B = B \<union> A"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1323
  by (fact sup_commute)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1324
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1325
lemma Un_left_commute: "A \<union> (B \<union> C) = B \<union> (A \<union> C)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1326
  by (fact sup_left_commute)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1327
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1328
lemma Un_assoc: "(A \<union> B) \<union> C = A \<union> (B \<union> C)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1329
  by (fact sup_assoc)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1330
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1331
lemmas Un_ac = Un_assoc Un_left_absorb Un_commute Un_left_commute
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1332
  \<comment> \<open>Union is an AC-operator\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1333
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1334
lemma Un_absorb1: "A \<subseteq> B \<Longrightarrow> A \<union> B = B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1335
  by (fact sup_absorb2)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1336
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1337
lemma Un_absorb2: "B \<subseteq> A \<Longrightarrow> A \<union> B = A"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1338
  by (fact sup_absorb1)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1339
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1340
lemma Un_empty_left: "{} \<union> B = B"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1341
  by (fact sup_bot_left) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1342
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1343
lemma Un_empty_right: "A \<union> {} = A"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1344
  by (fact sup_bot_right) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1345
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1346
lemma Un_UNIV_left: "UNIV \<union> B = UNIV"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1347
  by (fact sup_top_left) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1348
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1349
lemma Un_UNIV_right: "A \<union> UNIV = UNIV"
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1350
  by (fact sup_top_right) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1351
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1352
lemma Un_insert_left [simp]: "(insert a B) \<union> C = insert a (B \<union> C)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1353
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1354
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1355
lemma Un_insert_right [simp]: "A \<union> (insert a B) = insert a (A \<union> B)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1356
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1357
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1358
lemma Int_insert_left: "(insert a B) \<inter> C = (if a \<in> C then insert a (B \<inter> C) else B \<inter> C)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1359
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1360
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1361
lemma Int_insert_left_if0 [simp]: "a \<notin> C \<Longrightarrow> (insert a B) \<inter> C = B \<inter> C"
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1362
  by auto
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1363
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1364
lemma Int_insert_left_if1 [simp]: "a \<in> C \<Longrightarrow> (insert a B) \<inter> C = insert a (B \<inter> C)"
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1365
  by auto
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1366
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1367
lemma Int_insert_right: "A \<inter> (insert a B) = (if a \<in> A then insert a (A \<inter> B) else A \<inter> B)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1368
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1369
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1370
lemma Int_insert_right_if0 [simp]: "a \<notin> A \<Longrightarrow> A \<inter> (insert a B) = A \<inter> B"
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1371
  by auto
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1372
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1373
lemma Int_insert_right_if1 [simp]: "a \<in> A \<Longrightarrow> A \<inter> (insert a B) = insert a (A \<inter> B)"
32456
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1374
  by auto
341c83339aeb tuned the simp rules for Int involving insert and intervals.
nipkow
parents: 32264
diff changeset
  1375
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1376
lemma Un_Int_distrib: "A \<union> (B \<inter> C) = (A \<union> B) \<inter> (A \<union> C)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1377
  by (fact sup_inf_distrib1)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1378
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1379
lemma Un_Int_distrib2: "(B \<inter> C) \<union> A = (B \<union> A) \<inter> (C \<union> A)"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1380
  by (fact sup_inf_distrib2)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1381
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1382
lemma Un_Int_crazy: "(A \<inter> B) \<union> (B \<inter> C) \<union> (C \<inter> A) = (A \<union> B) \<inter> (B \<union> C) \<inter> (C \<union> A)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1383
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1384
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1385
lemma subset_Un_eq: "A \<subseteq> B \<longleftrightarrow> A \<union> B = B"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1386
  by (fact le_iff_sup)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1387
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1388
lemma Un_empty [iff]: "A \<union> B = {} \<longleftrightarrow> A = {} \<and> B = {}"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1389
  by (fact sup_eq_bot_iff) (* FIXME: already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1390
79099
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1391
lemma Un_subset_iff: "A \<union> B \<subseteq> C \<longleftrightarrow> A \<subseteq> C \<and> B \<subseteq> C"
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1392
  by (fact le_sup_iff) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1393
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1394
lemma Un_Diff_Int: "(A - B) \<union> (A \<inter> B) = A"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1395
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1396
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1397
lemma Diff_Int2: "A \<inter> C - B \<inter> C = A \<inter> C - B"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1398
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1399
77140
9a60c1759543 Lots more new material thanks to Manuel Eberl
paulson <lp15@cam.ac.uk>
parents: 76259
diff changeset
  1400
lemma subset_UnE:
69939
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1401
  assumes "C \<subseteq> A \<union> B"
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1402
  obtains A' B' where "A' \<subseteq> A" "B' \<subseteq> B" "C = A' \<union> B'"
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1403
proof
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1404
  show "C \<inter> A \<subseteq> A" "C \<inter> B \<subseteq> B" "C = (C \<inter> A) \<union> (C \<inter> B)"
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1405
    using assms by blast+
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1406
qed
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1407
72567
aeac6424d3b5 cleanup
paulson <lp15@cam.ac.uk>
parents: 71886
diff changeset
  1408
lemma Un_Int_eq [simp]: "(S \<union> T) \<inter> S = S" "(S \<union> T) \<inter> T = T" "S \<inter> (S \<union> T) = S" "T \<inter> (S \<union> T) = T"
aeac6424d3b5 cleanup
paulson <lp15@cam.ac.uk>
parents: 71886
diff changeset
  1409
  by auto
aeac6424d3b5 cleanup
paulson <lp15@cam.ac.uk>
parents: 71886
diff changeset
  1410
aeac6424d3b5 cleanup
paulson <lp15@cam.ac.uk>
parents: 71886
diff changeset
  1411
lemma Int_Un_eq [simp]: "(S \<inter> T) \<union> S = S" "(S \<inter> T) \<union> T = T" "S \<union> (S \<inter> T) = S" "T \<union> (S \<inter> T) = T"
aeac6424d3b5 cleanup
paulson <lp15@cam.ac.uk>
parents: 71886
diff changeset
  1412
  by auto
aeac6424d3b5 cleanup
paulson <lp15@cam.ac.uk>
parents: 71886
diff changeset
  1413
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1414
text \<open>\<^medskip> Set complement\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1415
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1416
lemma Compl_disjoint [simp]: "A \<inter> - A = {}"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1417
  by (fact inf_compl_bot)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1418
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1419
lemma Compl_disjoint2 [simp]: "- A \<inter> A = {}"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1420
  by (fact compl_inf_bot)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1421
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1422
lemma Compl_partition: "A \<union> - A = UNIV"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1423
  by (fact sup_compl_top)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1424
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1425
lemma Compl_partition2: "- A \<union> A = UNIV"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1426
  by (fact compl_sup_top)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1427
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1428
lemma double_complement: "- (-A) = A" for A :: "'a set"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1429
  by (fact double_compl) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1430
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1431
lemma Compl_Un: "- (A \<union> B) = (- A) \<inter> (- B)"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1432
  by (fact compl_sup) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1433
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1434
lemma Compl_Int: "- (A \<inter> B) = (- A) \<union> (- B)"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1435
  by (fact compl_inf) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1436
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1437
lemma subset_Compl_self_eq: "A \<subseteq> - A \<longleftrightarrow> A = {}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1438
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1439
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1440
lemma Un_Int_assoc_eq: "(A \<inter> B) \<union> C = A \<inter> (B \<union> C) \<longleftrightarrow> C \<subseteq> A"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1441
  \<comment> \<open>Halmos, Naive Set Theory, page 16.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1442
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1443
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1444
lemma Compl_UNIV_eq: "- UNIV = {}"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1445
  by (fact compl_top_eq) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1446
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1447
lemma Compl_empty_eq: "- {} = UNIV"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1448
  by (fact compl_bot_eq) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1449
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1450
lemma Compl_subset_Compl_iff [iff]: "- A \<subseteq> - B \<longleftrightarrow> B \<subseteq> A"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1451
  by (fact compl_le_compl_iff) (* FIXME: already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1452
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1453
lemma Compl_eq_Compl_iff [iff]: "- A = - B \<longleftrightarrow> A = B"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1454
  for A B :: "'a set"
45121
5e495ccf6e56 Set.thy: remove redundant [simp] declarations
huffman
parents: 44744
diff changeset
  1455
  by (fact compl_eq_compl_iff) (* FIXME: already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1456
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1457
lemma Compl_insert: "- insert x A = (- A) - {x}"
44490
e3e8d20a6ebc lemma Compl_insert: "- insert x A = (-A) - {x}"
krauss
parents: 44241
diff changeset
  1458
  by blast
e3e8d20a6ebc lemma Compl_insert: "- insert x A = (-A) - {x}"
krauss
parents: 44241
diff changeset
  1459
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1460
text \<open>\<^medskip> Bounded quantifiers.
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1461
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1462
  The following are not added to the default simpset because
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1463
  (a) they duplicate the body and (b) there are no similar rules for \<open>Int\<close>.
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1464
\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1465
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1466
lemma ball_Un: "(\<forall>x \<in> A \<union> B. P x) \<longleftrightarrow> (\<forall>x\<in>A. P x) \<and> (\<forall>x\<in>B. P x)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1467
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1468
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1469
lemma bex_Un: "(\<exists>x \<in> A \<union> B. P x) \<longleftrightarrow> (\<exists>x\<in>A. P x) \<or> (\<exists>x\<in>B. P x)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1470
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1471
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1472
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1473
text \<open>\<^medskip> Set difference.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1474
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1475
lemma Diff_eq: "A - B = A \<inter> (- B)"
79099
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1476
  by(rule boolean_algebra_class.diff_eq)
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1477
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1478
lemma Diff_eq_empty_iff: "A - B = {} \<longleftrightarrow> A \<subseteq> B"
05a753360b25 added and removed [simp]s
nipkow
parents: 78258
diff changeset
  1479
  by(rule boolean_algebra_class.diff_shunt_var) (* already simp *)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1480
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1481
lemma Diff_cancel [simp]: "A - A = {}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1482
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1483
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1484
lemma Diff_idemp [simp]: "(A - B) - B = A - B"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1485
  for A B :: "'a set"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1486
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1487
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1488
lemma Diff_triv: "A \<inter> B = {} \<Longrightarrow> A - B = A"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1489
  by (blast elim: equalityE)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1490
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1491
lemma empty_Diff [simp]: "{} - A = {}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1492
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1493
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1494
lemma Diff_empty [simp]: "A - {} = A"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1495
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1496
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1497
lemma Diff_UNIV [simp]: "A - UNIV = {}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1498
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1499
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1500
lemma Diff_insert0 [simp]: "x \<notin> A \<Longrightarrow> A - insert x B = A - B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1501
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1502
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1503
lemma Diff_insert: "A - insert a B = A - B - {a}"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1504
  \<comment> \<open>NOT SUITABLE FOR REWRITING since \<open>{a} \<equiv> insert a 0\<close>\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1505
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1506
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1507
lemma Diff_insert2: "A - insert a B = A - {a} - B"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1508
  \<comment> \<open>NOT SUITABLE FOR REWRITING since \<open>{a} \<equiv> insert a 0\<close>\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1509
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1510
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1511
lemma insert_Diff_if: "insert x A - B = (if x \<in> B then A - B else insert x (A - B))"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1512
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1513
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1514
lemma insert_Diff1 [simp]: "x \<in> B \<Longrightarrow> insert x A - B = A - B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1515
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1516
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1517
lemma insert_Diff_single[simp]: "insert a (A - {a}) = insert a A"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1518
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1519
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1520
lemma insert_Diff: "a \<in> A \<Longrightarrow> insert a (A - {a}) = A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1521
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1522
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1523
lemma Diff_insert_absorb: "x \<notin> A \<Longrightarrow> (insert x A) - {x} = A"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1524
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1525
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1526
lemma Diff_disjoint [simp]: "A \<inter> (B - A) = {}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1527
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1528
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1529
lemma Diff_partition: "A \<subseteq> B \<Longrightarrow> A \<union> (B - A) = B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1530
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1531
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1532
lemma double_diff: "A \<subseteq> B \<Longrightarrow> B \<subseteq> C \<Longrightarrow> B - (C - A) = A"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1533
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1534
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1535
lemma Un_Diff_cancel [simp]: "A \<union> (B - A) = A \<union> B"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1536
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1537
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1538
lemma Un_Diff_cancel2 [simp]: "(B - A) \<union> A = B \<union> A"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1539
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1540
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1541
lemma Diff_Un: "A - (B \<union> C) = (A - B) \<inter> (A - C)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1542
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1543
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1544
lemma Diff_Int: "A - (B \<inter> C) = (A - B) \<union> (A - C)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1545
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1546
61518
ff12606337e9 new lemmas about topology, etc., for Cauchy integral formula
paulson
parents: 61378
diff changeset
  1547
lemma Diff_Diff_Int: "A - (A - B) = A \<inter> B"
ff12606337e9 new lemmas about topology, etc., for Cauchy integral formula
paulson
parents: 61378
diff changeset
  1548
  by blast
ff12606337e9 new lemmas about topology, etc., for Cauchy integral formula
paulson
parents: 61378
diff changeset
  1549
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1550
lemma Un_Diff: "(A \<union> B) - C = (A - C) \<union> (B - C)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1551
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1552
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1553
lemma Int_Diff: "(A \<inter> B) - C = A \<inter> (B - C)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1554
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1555
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1556
lemma Diff_Int_distrib: "C \<inter> (A - B) = (C \<inter> A) - (C \<inter> B)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1557
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1558
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1559
lemma Diff_Int_distrib2: "(A - B) \<inter> C = (A \<inter> C) - (B \<inter> C)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1560
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1561
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1562
lemma Diff_Compl [simp]: "A - (- B) = A \<inter> B"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1563
  by auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1564
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1565
lemma Compl_Diff_eq [simp]: "- (A - B) = - A \<union> B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1566
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1567
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1568
lemma subset_Compl_singleton [simp]: "A \<subseteq> - {b} \<longleftrightarrow> b \<notin> A"
62843
313d3b697c9a Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents: 62521
diff changeset
  1569
  by blast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1570
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69546
diff changeset
  1571
text \<open>\<^medskip> Quantification over type \<^typ>\<open>bool\<close>.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1572
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1573
lemma bool_induct: "P True \<Longrightarrow> P False \<Longrightarrow> P x"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1574
  by (cases x) auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1575
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1576
lemma all_bool_eq: "(\<forall>b. P b) \<longleftrightarrow> P True \<and> P False"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1577
  by (auto intro: bool_induct)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1578
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1579
lemma bool_contrapos: "P x \<Longrightarrow> \<not> P False \<Longrightarrow> P True"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1580
  by (cases x) auto
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1581
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1582
lemma ex_bool_eq: "(\<exists>b. P b) \<longleftrightarrow> P True \<or> P False"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1583
  by (auto intro: bool_contrapos)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1584
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53364
diff changeset
  1585
lemma UNIV_bool: "UNIV = {False, True}"
43866
8a50dc70cbff moving UNIV = ... equations to their proper theories
haftmann
parents: 43818
diff changeset
  1586
  by (auto intro: bool_induct)
8a50dc70cbff moving UNIV = ... equations to their proper theories
haftmann
parents: 43818
diff changeset
  1587
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1588
text \<open>\<^medskip> \<open>Pow\<close>\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1589
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1590
lemma Pow_empty [simp]: "Pow {} = {{}}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1591
  by (auto simp add: Pow_def)
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1592
60161
59ebc3f2f896 new simp rule
nipkow
parents: 60057
diff changeset
  1593
lemma Pow_singleton_iff [simp]: "Pow X = {Y} \<longleftrightarrow> X = {} \<and> Y = {}"
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1594
  by blast  (* somewhat slow *)
60161
59ebc3f2f896 new simp rule
nipkow
parents: 60057
diff changeset
  1595
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1596
lemma Pow_insert: "Pow (insert a A) = Pow A \<union> (insert a ` Pow A)"
55143
04448228381d explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents: 54998
diff changeset
  1597
  by (blast intro: image_eqI [where ?x = "u - {a}" for u])
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1598
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1599
lemma Pow_Compl: "Pow (- A) = {- B | B. A \<in> Pow B}"
55143
04448228381d explicit eigen-context for attributes "where", "of", and corresponding read_instantiate, instantiate_tac;
wenzelm
parents: 54998
diff changeset
  1600
  by (blast intro: exI [where ?x = "- u" for u])
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1601
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1602
lemma Pow_UNIV [simp]: "Pow UNIV = UNIV"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1603
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1604
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1605
lemma Un_Pow_subset: "Pow A \<union> Pow B \<subseteq> Pow (A \<union> B)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1606
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1607
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1608
lemma Pow_Int_eq [simp]: "Pow (A \<inter> B) = Pow A \<inter> Pow B"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1609
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1610
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1611
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1612
text \<open>\<^medskip> Miscellany.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1613
74590
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1614
lemma Int_Diff_disjoint: "A \<inter> B \<inter> (A - B) = {}"
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1615
  by blast
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1616
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1617
lemma Int_Diff_Un: "A \<inter> B \<union> (A - B) = A"
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1618
  by blast
00ffae972fc0 Added / moved some simple set-theoretic lemmas
paulson <lp15@cam.ac.uk>
parents: 74123
diff changeset
  1619
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1620
lemma set_eq_subset: "A = B \<longleftrightarrow> A \<subseteq> B \<and> B \<subseteq> A"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1621
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1622
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1623
lemma subset_iff: "A \<subseteq> B \<longleftrightarrow> (\<forall>t. t \<in> A \<longrightarrow> t \<in> B)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1624
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1625
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1626
lemma subset_iff_psubset_eq: "A \<subseteq> B \<longleftrightarrow> A \<subset> B \<or> A = B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1627
  unfolding less_le by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1628
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1629
lemma all_not_in_conv [simp]: "(\<forall>x. x \<notin> A) \<longleftrightarrow> A = {}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1630
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1631
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1632
lemma ex_in_conv: "(\<exists>x. x \<in> A) \<longleftrightarrow> A \<noteq> {}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1633
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1634
43967
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1635
lemma ball_simps [simp, no_atp]:
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1636
  "\<And>A P Q. (\<forall>x\<in>A. P x \<or> Q) \<longleftrightarrow> ((\<forall>x\<in>A. P x) \<or> Q)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1637
  "\<And>A P Q. (\<forall>x\<in>A. P \<or> Q x) \<longleftrightarrow> (P \<or> (\<forall>x\<in>A. Q x))"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1638
  "\<And>A P Q. (\<forall>x\<in>A. P \<longrightarrow> Q x) \<longleftrightarrow> (P \<longrightarrow> (\<forall>x\<in>A. Q x))"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1639
  "\<And>A P Q. (\<forall>x\<in>A. P x \<longrightarrow> Q) \<longleftrightarrow> ((\<exists>x\<in>A. P x) \<longrightarrow> Q)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1640
  "\<And>P. (\<forall>x\<in>{}. P x) \<longleftrightarrow> True"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1641
  "\<And>P. (\<forall>x\<in>UNIV. P x) \<longleftrightarrow> (\<forall>x. P x)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1642
  "\<And>a B P. (\<forall>x\<in>insert a B. P x) \<longleftrightarrow> (P a \<and> (\<forall>x\<in>B. P x))"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1643
  "\<And>P Q. (\<forall>x\<in>Collect Q. P x) \<longleftrightarrow> (\<forall>x. Q x \<longrightarrow> P x)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1644
  "\<And>A P f. (\<forall>x\<in>f`A. P x) \<longleftrightarrow> (\<forall>x\<in>A. P (f x))"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1645
  "\<And>A P. (\<not> (\<forall>x\<in>A. P x)) \<longleftrightarrow> (\<exists>x\<in>A. \<not> P x)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1646
  by auto
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1647
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1648
lemma bex_simps [simp, no_atp]:
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1649
  "\<And>A P Q. (\<exists>x\<in>A. P x \<and> Q) \<longleftrightarrow> ((\<exists>x\<in>A. P x) \<and> Q)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1650
  "\<And>A P Q. (\<exists>x\<in>A. P \<and> Q x) \<longleftrightarrow> (P \<and> (\<exists>x\<in>A. Q x))"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1651
  "\<And>P. (\<exists>x\<in>{}. P x) \<longleftrightarrow> False"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1652
  "\<And>P. (\<exists>x\<in>UNIV. P x) \<longleftrightarrow> (\<exists>x. P x)"
67091
1393c2340eec more symbols;
wenzelm
parents: 67051
diff changeset
  1653
  "\<And>a B P. (\<exists>x\<in>insert a B. P x) \<longleftrightarrow> (P a \<or> (\<exists>x\<in>B. P x))"
43967
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1654
  "\<And>P Q. (\<exists>x\<in>Collect Q. P x) \<longleftrightarrow> (\<exists>x. Q x \<and> P x)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1655
  "\<And>A P f. (\<exists>x\<in>f`A. P x) \<longleftrightarrow> (\<exists>x\<in>A. P (f x))"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1656
  "\<And>A P. (\<not>(\<exists>x\<in>A. P x)) \<longleftrightarrow> (\<forall>x\<in>A. \<not> P x)"
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1657
  by auto
610efb6bda1f more coherent structure in and across theories
haftmann
parents: 43898
diff changeset
  1658
69939
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1659
lemma ex_image_cong_iff [simp, no_atp]:
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1660
  "(\<exists>x. x\<in>f`A) \<longleftrightarrow> A \<noteq> {}" "(\<exists>x. x\<in>f`A \<and> P x) \<longleftrightarrow> (\<exists>x\<in>A. P (f x))"
812ce526da33 new material on topology: products, etc. Some renamings, esp continuous_on_topo -> continuous_map
paulson <lp15@cam.ac.uk>
parents: 69768
diff changeset
  1661
  by auto
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1662
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1663
subsubsection \<open>Monotonicity of various operations\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1664
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1665
lemma image_mono: "A \<subseteq> B \<Longrightarrow> f ` A \<subseteq> f ` B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1666
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1667
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1668
lemma Pow_mono: "A \<subseteq> B \<Longrightarrow> Pow A \<subseteq> Pow B"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1669
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1670
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1671
lemma insert_mono: "C \<subseteq> D \<Longrightarrow> insert a C \<subseteq> insert a D"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1672
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1673
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1674
lemma Un_mono: "A \<subseteq> C \<Longrightarrow> B \<subseteq> D \<Longrightarrow> A \<union> B \<subseteq> C \<union> D"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1675
  by (fact sup_mono)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1676
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1677
lemma Int_mono: "A \<subseteq> C \<Longrightarrow> B \<subseteq> D \<Longrightarrow> A \<inter> B \<subseteq> C \<inter> D"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1678
  by (fact inf_mono)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1679
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1680
lemma Diff_mono: "A \<subseteq> C \<Longrightarrow> D \<subseteq> B \<Longrightarrow> A - B \<subseteq> C - D"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1681
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1682
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1683
lemma Compl_anti_mono: "A \<subseteq> B \<Longrightarrow> - B \<subseteq> - A"
36009
9cdbc5ffc15c use lattice theorems to prove set theorems
huffman
parents: 35828
diff changeset
  1684
  by (fact compl_mono)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1685
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1686
text \<open>\<^medskip> Monotonicity of implications.\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1687
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1688
lemma in_mono: "A \<subseteq> B \<Longrightarrow> x \<in> A \<longrightarrow> x \<in> B"
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1689
  by (rule impI) (erule subsetD)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1690
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1691
lemma conj_mono: "P1 \<longrightarrow> Q1 \<Longrightarrow> P2 \<longrightarrow> Q2 \<Longrightarrow> (P1 \<and> P2) \<longrightarrow> (Q1 \<and> Q2)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1692
  by iprover
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1693
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1694
lemma disj_mono: "P1 \<longrightarrow> Q1 \<Longrightarrow> P2 \<longrightarrow> Q2 \<Longrightarrow> (P1 \<or> P2) \<longrightarrow> (Q1 \<or> Q2)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1695
  by iprover
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1696
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1697
lemma imp_mono: "Q1 \<longrightarrow> P1 \<Longrightarrow> P2 \<longrightarrow> Q2 \<Longrightarrow> (P1 \<longrightarrow> P2) \<longrightarrow> (Q1 \<longrightarrow> Q2)"
33935
b94b4587106a Removed eq_to_mono2, added not_mono.
berghofe
parents: 33533
diff changeset
  1698
  by iprover
b94b4587106a Removed eq_to_mono2, added not_mono.
berghofe
parents: 33533
diff changeset
  1699
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1700
lemma imp_refl: "P \<longrightarrow> P" ..
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1701
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1702
lemma not_mono: "Q \<longrightarrow> P \<Longrightarrow> \<not> P \<longrightarrow> \<not> Q"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1703
  by iprover
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1704
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1705
lemma ex_mono: "(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> (\<exists>x. P x) \<longrightarrow> (\<exists>x. Q x)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1706
  by iprover
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1707
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1708
lemma all_mono: "(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> (\<forall>x. P x) \<longrightarrow> (\<forall>x. Q x)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1709
  by iprover
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1710
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1711
lemma Collect_mono: "(\<And>x. P x \<longrightarrow> Q x) \<Longrightarrow> Collect P \<subseteq> Collect Q"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1712
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1713
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1714
lemma Int_Collect_mono: "A \<subseteq> B \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> P x \<longrightarrow> Q x) \<Longrightarrow> A \<inter> Collect P \<subseteq> B \<inter> Collect Q"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1715
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1716
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1717
lemmas basic_monos =
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1718
  subset_refl imp_refl disj_mono conj_mono ex_mono Collect_mono in_mono
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1719
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1720
lemma eq_to_mono: "a = b \<Longrightarrow> c = d \<Longrightarrow> b \<longrightarrow> d \<Longrightarrow> a \<longrightarrow> c"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1721
  by iprover
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1722
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1723
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1724
subsubsection \<open>Inverse image of a function\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1725
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 80786
diff changeset
  1726
definition vimage :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b set \<Rightarrow> 'a set"  (infixr \<open>-`\<close> 90)
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1727
  where "f -` B \<equiv> {x. f x \<in> B}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1728
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1729
lemma vimage_eq [simp]: "a \<in> f -` B \<longleftrightarrow> f a \<in> B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1730
  unfolding vimage_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1731
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1732
lemma vimage_singleton_eq: "a \<in> f -` {b} \<longleftrightarrow> f a = b"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1733
  by simp
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1734
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1735
lemma vimageI [intro]: "f a = b \<Longrightarrow> b \<in> B \<Longrightarrow> a \<in> f -` B"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1736
  unfolding vimage_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1737
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1738
lemma vimageI2: "f a \<in> A \<Longrightarrow> a \<in> f -` A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1739
  unfolding vimage_def by fast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1740
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1741
lemma vimageE [elim!]: "a \<in> f -` B \<Longrightarrow> (\<And>x. f a = x \<Longrightarrow> x \<in> B \<Longrightarrow> P) \<Longrightarrow> P"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1742
  unfolding vimage_def by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1743
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1744
lemma vimageD: "a \<in> f -` A \<Longrightarrow> f a \<in> A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1745
  unfolding vimage_def by fast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1746
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1747
lemma vimage_empty [simp]: "f -` {} = {}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1748
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1749
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1750
lemma vimage_Compl: "f -` (- A) = - (f -` A)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1751
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1752
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1753
lemma vimage_Un [simp]: "f -` (A \<union> B) = (f -` A) \<union> (f -` B)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1754
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1755
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1756
lemma vimage_Int [simp]: "f -` (A \<inter> B) = (f -` A) \<inter> (f -` B)"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1757
  by fast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1758
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1759
lemma vimage_Collect_eq [simp]: "f -` Collect P = {y. P (f y)}"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1760
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1761
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1762
lemma vimage_Collect: "(\<And>x. P (f x) = Q x) \<Longrightarrow> f -` (Collect P) = Collect Q"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1763
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1764
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1765
lemma vimage_insert: "f -` (insert a B) = (f -` {a}) \<union> (f -` B)"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1766
  \<comment> \<open>NOT suitable for rewriting because of the recurrence of \<open>{a}\<close>.\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1767
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1768
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1769
lemma vimage_Diff: "f -` (A - B) = (f -` A) - (f -` B)"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1770
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1771
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1772
lemma vimage_UNIV [simp]: "f -` UNIV = UNIV"
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1773
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1774
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1775
lemma vimage_mono: "A \<subseteq> B \<Longrightarrow> f -` A \<subseteq> f -` B"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61518
diff changeset
  1776
  \<comment> \<open>monotonicity\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1777
  by blast
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1778
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1779
lemma vimage_image_eq: "f -` (f ` A) = {y. \<exists>x\<in>A. f x = f y}"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1780
  by (blast intro: sym)
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1781
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1782
lemma image_vimage_subset: "f ` (f -` A) \<subseteq> A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1783
  by blast
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1784
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1785
lemma image_vimage_eq [simp]: "f ` (f -` A) = A \<inter> range f"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1786
  by blast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1787
55775
1557a391a858 A bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 55143
diff changeset
  1788
lemma image_subset_iff_subset_vimage: "f ` A \<subseteq> B \<longleftrightarrow> A \<subseteq> f -` B"
59506
4af607652318 Not a simprule, as it complicates proofs
paulson <lp15@cam.ac.uk>
parents: 59504
diff changeset
  1789
  by blast
55775
1557a391a858 A bit of tidying up
paulson <lp15@cam.ac.uk>
parents: 55143
diff changeset
  1790
73673
edb01b64dc16 Just one lemma
paulson <lp15@cam.ac.uk>
parents: 73326
diff changeset
  1791
lemma subset_vimage_iff: "A \<subseteq> f -` B \<longleftrightarrow> (\<forall>x\<in>A. f x \<in> B)"
edb01b64dc16 Just one lemma
paulson <lp15@cam.ac.uk>
parents: 73326
diff changeset
  1792
  by auto
edb01b64dc16 Just one lemma
paulson <lp15@cam.ac.uk>
parents: 73326
diff changeset
  1793
33533
40b44cb20c8c New theory Probability/Borel.thy, and some associated lemmas
paulson
parents: 33045
diff changeset
  1794
lemma vimage_const [simp]: "((\<lambda>x. c) -` A) = (if c \<in> A then UNIV else {})"
40b44cb20c8c New theory Probability/Borel.thy, and some associated lemmas
paulson
parents: 33045
diff changeset
  1795
  by auto
40b44cb20c8c New theory Probability/Borel.thy, and some associated lemmas
paulson
parents: 33045
diff changeset
  1796
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
  1797
lemma vimage_if [simp]: "((\<lambda>x. if x \<in> B then c else d) -` A) =
33533
40b44cb20c8c New theory Probability/Borel.thy, and some associated lemmas
paulson
parents: 33045
diff changeset
  1798
   (if c \<in> A then (if d \<in> A then UNIV else B)
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1799
    else if d \<in> A then - B else {})"
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51717
diff changeset
  1800
  by (auto simp add: vimage_def)
33533
40b44cb20c8c New theory Probability/Borel.thy, and some associated lemmas
paulson
parents: 33045
diff changeset
  1801
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1802
lemma vimage_inter_cong: "(\<And> w. w \<in> S \<Longrightarrow> f w = g w) \<Longrightarrow> f -` y \<inter> S = g -` y \<inter> S"
35576
5f6bd3ac99f9 Added vimage_inter_cong
hoelzl
parents: 35416
diff changeset
  1803
  by auto
5f6bd3ac99f9 Added vimage_inter_cong
hoelzl
parents: 35416
diff changeset
  1804
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1805
lemma vimage_ident [simp]: "(\<lambda>x. x) -` Y = Y"
43898
935359fd8210 moved lemmas to appropriate theory
haftmann
parents: 43866
diff changeset
  1806
  by blast
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1807
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1808
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1809
subsubsection \<open>Singleton sets\<close>
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1810
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1811
definition is_singleton :: "'a set \<Rightarrow> bool"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1812
  where "is_singleton A \<longleftrightarrow> (\<exists>x. A = {x})"
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1813
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1814
lemma is_singletonI [simp, intro!]: "is_singleton {x}"
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1815
  unfolding is_singleton_def by simp
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1816
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1817
lemma is_singletonI': "A \<noteq> {} \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x = y) \<Longrightarrow> is_singleton A"
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1818
  unfolding is_singleton_def by blast
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1819
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1820
lemma is_singletonE: "is_singleton A \<Longrightarrow> (\<And>x. A = {x} \<Longrightarrow> P) \<Longrightarrow> P"
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1821
  unfolding is_singleton_def by blast
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1822
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1823
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1824
subsubsection \<open>Getting the contents of a singleton set\<close>
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1825
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1826
definition the_elem :: "'a set \<Rightarrow> 'a"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1827
  where "the_elem X = (THE x. X = {x})"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1828
39910
10097e0a9dbd constant `contents` renamed to `the_elem`
haftmann
parents: 39302
diff changeset
  1829
lemma the_elem_eq [simp]: "the_elem {x} = x"
10097e0a9dbd constant `contents` renamed to `the_elem`
haftmann
parents: 39302
diff changeset
  1830
  by (simp add: the_elem_def)
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1831
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1832
lemma is_singleton_the_elem: "is_singleton A \<longleftrightarrow> A = {the_elem A}"
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1833
  by (auto simp: is_singleton_def)
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1834
56740
haftmann
parents: 56077
diff changeset
  1835
lemma the_elem_image_unique:
haftmann
parents: 56077
diff changeset
  1836
  assumes "A \<noteq> {}"
81473
53e61087bc6f Introduced the function some_elem for grabbing an element from a non-empty set, and simplified the theorem the_elem_image_unique
paulson <lp15@cam.ac.uk>
parents: 81202
diff changeset
  1837
    and *: "\<And>y. y \<in> A \<Longrightarrow> f y = a"
53e61087bc6f Introduced the function some_elem for grabbing an element from a non-empty set, and simplified the theorem the_elem_image_unique
paulson <lp15@cam.ac.uk>
parents: 81202
diff changeset
  1838
  shows "the_elem (f ` A) = a"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1839
  unfolding the_elem_def
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1840
proof (rule the1_equality)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1841
  from \<open>A \<noteq> {}\<close> obtain y where "y \<in> A" by auto
81473
53e61087bc6f Introduced the function some_elem for grabbing an element from a non-empty set, and simplified the theorem the_elem_image_unique
paulson <lp15@cam.ac.uk>
parents: 81202
diff changeset
  1842
  with * \<open>y \<in> A\<close> have "a \<in> f ` A" by blast
53e61087bc6f Introduced the function some_elem for grabbing an element from a non-empty set, and simplified the theorem the_elem_image_unique
paulson <lp15@cam.ac.uk>
parents: 81202
diff changeset
  1843
  with * show "f ` A = {a}" by auto
56740
haftmann
parents: 56077
diff changeset
  1844
  then show "\<exists>!x. f ` A = {x}" by auto
haftmann
parents: 56077
diff changeset
  1845
qed
haftmann
parents: 56077
diff changeset
  1846
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1847
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1848
subsubsection \<open>Monad operation\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1849
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1850
definition bind :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b set) \<Rightarrow> 'b set"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1851
  where "bind A f = {x. \<exists>B \<in> f`A. x \<in> B}"
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1852
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
  1853
hide_const (open) bind
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
  1854
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1855
lemma bind_bind: "Set.bind (Set.bind A B) C = Set.bind A (\<lambda>x. Set.bind (B x) C)"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1856
  for A :: "'a set"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1857
  by (auto simp: bind_def)
46036
6a86cc88b02f fundamental theorems on Set.bind
haftmann
parents: 46026
diff changeset
  1858
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1859
lemma empty_bind [simp]: "Set.bind {} f = {}"
46036
6a86cc88b02f fundamental theorems on Set.bind
haftmann
parents: 46026
diff changeset
  1860
  by (simp add: bind_def)
6a86cc88b02f fundamental theorems on Set.bind
haftmann
parents: 46026
diff changeset
  1861
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1862
lemma nonempty_bind_const: "A \<noteq> {} \<Longrightarrow> Set.bind A (\<lambda>_. B) = B"
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1863
  by (auto simp: bind_def)
46036
6a86cc88b02f fundamental theorems on Set.bind
haftmann
parents: 46026
diff changeset
  1864
6a86cc88b02f fundamental theorems on Set.bind
haftmann
parents: 46026
diff changeset
  1865
lemma bind_const: "Set.bind A (\<lambda>_. B) = (if A = {} then {} else B)"
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1866
  by (auto simp: bind_def)
46036
6a86cc88b02f fundamental theorems on Set.bind
haftmann
parents: 46026
diff changeset
  1867
60057
86fa63ce8156 add lemmas
Andreas Lochbihler
parents: 59507
diff changeset
  1868
lemma bind_singleton_conv_image: "Set.bind A (\<lambda>x. {f x}) = f ` A"
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1869
  by (auto simp: bind_def)
45959
184d36538e51 `set` is now a proper type constructor; added operation for set monad
haftmann
parents: 45909
diff changeset
  1870
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1871
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1872
subsubsection \<open>Operations for execution\<close>
45986
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1873
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1874
definition is_empty :: "'a set \<Rightarrow> bool"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1875
  where [code_abbrev]: "is_empty A \<longleftrightarrow> A = {}"
45986
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1876
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1877
hide_const (open) is_empty
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1878
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1879
definition remove :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a set"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1880
  where [code_abbrev]: "remove x A = A - {x}"
45986
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1881
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1882
hide_const (open) remove
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1883
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1884
lemma member_remove [simp]: "x \<in> Set.remove y A \<longleftrightarrow> x \<in> A \<and> x \<noteq> y"
46128
53e7cc599f58 interaction of set operations for execution and membership predicate
haftmann
parents: 46127
diff changeset
  1885
  by (simp add: remove_def)
53e7cc599f58 interaction of set operations for execution and membership predicate
haftmann
parents: 46127
diff changeset
  1886
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1887
definition filter :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'a set"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1888
  where [code_abbrev]: "filter P A = {a \<in> A. P a}"
49757
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49660
diff changeset
  1889
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49660
diff changeset
  1890
hide_const (open) filter
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49660
diff changeset
  1891
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1892
lemma member_filter [simp]: "x \<in> Set.filter P A \<longleftrightarrow> x \<in> A \<and> P x"
49757
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49660
diff changeset
  1893
  by (simp add: filter_def)
46128
53e7cc599f58 interaction of set operations for execution and membership predicate
haftmann
parents: 46127
diff changeset
  1894
45986
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1895
instantiation set :: (equal) equal
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1896
begin
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1897
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1898
definition "HOL.equal A B \<longleftrightarrow> A \<subseteq> B \<and> B \<subseteq> A"
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1899
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1900
instance by standard (auto simp add: equal_set_def)
45986
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1901
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1902
end
c9e50153e5ae moved various set operations to theory Set (resp. Product_Type)
haftmann
parents: 45959
diff changeset
  1903
46127
af3b95160b59 cleanup of code declarations
haftmann
parents: 46036
diff changeset
  1904
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  1905
text \<open>Misc\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  1906
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1907
definition pairwise :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool"
63959
f77dca1abf1b HOL-Analysis: prove that a starlike set is negligible (based on HOL Light proof ported by L. C. Paulson)
hoelzl
parents: 63952
diff changeset
  1908
  where "pairwise R S \<longleftrightarrow> (\<forall>x \<in> S. \<forall>y \<in> S. x \<noteq> y \<longrightarrow> R x y)"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1909
70614
6a2c982363e9 moved lemmas
nipkow
parents: 69986
diff changeset
  1910
lemma pairwise_alt: "pairwise R S \<longleftrightarrow> (\<forall>x\<in>S. \<forall>y\<in>S-{x}. R x y)"
6a2c982363e9 moved lemmas
nipkow
parents: 69986
diff changeset
  1911
by (auto simp add: pairwise_def)
6a2c982363e9 moved lemmas
nipkow
parents: 69986
diff changeset
  1912
69700
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
  1913
lemma pairwise_trivial [simp]: "pairwise (\<lambda>i j. j \<noteq> i) I"
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
  1914
  by (auto simp: pairwise_def)
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
  1915
67673
c8caefb20564 lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents: 67613
diff changeset
  1916
lemma pairwiseI [intro?]:
66802
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1917
  "pairwise R S" if "\<And>x y. x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> x \<noteq> y \<Longrightarrow> R x y"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1918
  using that by (simp add: pairwise_def)
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1919
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1920
lemma pairwiseD:
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1921
  "R x y" and "R y x"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1922
  if "pairwise R S" "x \<in> S" and "y \<in> S" and "x \<noteq> y"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1923
  using that by (simp_all add: pairwise_def)
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1924
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1925
lemma pairwise_empty [simp]: "pairwise P {}"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1926
  by (simp add: pairwise_def)
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1927
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1928
lemma pairwise_singleton [simp]: "pairwise P {A}"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1929
  by (simp add: pairwise_def)
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1930
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1931
lemma pairwise_insert:
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1932
  "pairwise r (insert x s) \<longleftrightarrow> (\<forall>y. y \<in> s \<and> y \<noteq> x \<longrightarrow> r x y \<and> r y x) \<and> pairwise r s"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1933
  by (force simp: pairwise_def)
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1934
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1935
lemma pairwise_subset: "pairwise P S \<Longrightarrow> T \<subseteq> S \<Longrightarrow> pairwise P T"
63072
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63007
diff changeset
  1936
  by (force simp: pairwise_def)
eb5d493a9e03 renamings and refinements
paulson <lp15@cam.ac.uk>
parents: 63007
diff changeset
  1937
67673
c8caefb20564 lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents: 67613
diff changeset
  1938
lemma pairwise_mono: "\<lbrakk>pairwise P A; \<And>x y. P x y \<Longrightarrow> Q x y; B \<subseteq> A\<rbrakk> \<Longrightarrow> pairwise Q B"
c8caefb20564 lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents: 67613
diff changeset
  1939
  by (fastforce simp: pairwise_def)
63938
f6ce08859d4c More mainly topological results
paulson <lp15@cam.ac.uk>
parents: 63879
diff changeset
  1940
67051
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66802
diff changeset
  1941
lemma pairwise_imageI:
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66802
diff changeset
  1942
  "pairwise P (f ` A)"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66802
diff changeset
  1943
  if "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<noteq> y \<Longrightarrow> f x \<noteq> f y \<Longrightarrow> P (f x) (f y)"
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66802
diff changeset
  1944
  using that by (auto intro: pairwiseI)
e7e54a0b9197 dedicated definition for coprimality
haftmann
parents: 66802
diff changeset
  1945
66802
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1946
lemma pairwise_image: "pairwise r (f ` s) \<longleftrightarrow> pairwise (\<lambda>x y. (f x \<noteq> f y) \<longrightarrow> r (f x) (f y)) s"
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1947
  by (force simp: pairwise_def)
627511c13164 canonical introduction and destruction rules for pairwise
haftmann
parents: 63959
diff changeset
  1948
63588
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1949
definition disjnt :: "'a set \<Rightarrow> 'a set \<Rightarrow> bool"
d0e2bad67bd4 misc tuning and modernization;
wenzelm
parents: 63400
diff changeset
  1950
  where "disjnt A B \<longleftrightarrow> A \<inter> B = {}"
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1951
63952
354808e9f44b new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents: 63938
diff changeset
  1952
lemma disjnt_self_iff_empty [simp]: "disjnt S S \<longleftrightarrow> S = {}"
354808e9f44b new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents: 63938
diff changeset
  1953
  by (auto simp: disjnt_def)
354808e9f44b new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents: 63938
diff changeset
  1954
79566
f783490c6c99 A small number of new lemmas
paulson <lp15@cam.ac.uk>
parents: 79099
diff changeset
  1955
lemma disjnt_commute: "disjnt A B = disjnt B A"
f783490c6c99 A small number of new lemmas
paulson <lp15@cam.ac.uk>
parents: 79099
diff changeset
  1956
  by (auto simp: disjnt_def)
f783490c6c99 A small number of new lemmas
paulson <lp15@cam.ac.uk>
parents: 79099
diff changeset
  1957
63316
dff40165618c misc tuning and modernization;
wenzelm
parents: 63301
diff changeset
  1958
lemma disjnt_iff: "disjnt A B \<longleftrightarrow> (\<forall>x. \<not> (x \<in> A \<and> x \<in> B))"
63301
d3c87eb0bad2 new results about topology
paulson <lp15@cam.ac.uk>
parents: 63171
diff changeset
  1959
  by (force simp: disjnt_def)
d3c87eb0bad2 new results about topology
paulson <lp15@cam.ac.uk>
parents: 63171
diff changeset
  1960
63879
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1961
lemma disjnt_sym: "disjnt A B \<Longrightarrow> disjnt B A"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1962
  using disjnt_iff by blast
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1963
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1964
lemma disjnt_empty1 [simp]: "disjnt {} A" and disjnt_empty2 [simp]: "disjnt A {}"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1965
  by (auto simp: disjnt_def)
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1966
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1967
lemma disjnt_insert1 [simp]: "disjnt (insert a X) Y \<longleftrightarrow> a \<notin> Y \<and> disjnt X Y"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1968
  by (simp add: disjnt_def)
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1969
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1970
lemma disjnt_insert2 [simp]: "disjnt Y (insert a X) \<longleftrightarrow> a \<notin> Y \<and> disjnt Y X"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1971
  by (simp add: disjnt_def)
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1972
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1973
lemma disjnt_subset1 : "\<lbrakk>disjnt X Y; Z \<subseteq> X\<rbrakk> \<Longrightarrow> disjnt Z Y"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1974
  by (auto simp: disjnt_def)
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1975
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1976
lemma disjnt_subset2 : "\<lbrakk>disjnt X Y; Z \<subseteq> Y\<rbrakk> \<Longrightarrow> disjnt X Z"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1977
  by (auto simp: disjnt_def)
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1978
69986
f2d327275065 generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents: 69939
diff changeset
  1979
lemma disjnt_Un1 [simp]: "disjnt (A \<union> B) C \<longleftrightarrow> disjnt A C \<and> disjnt B C"
f2d327275065 generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents: 69939
diff changeset
  1980
  by (auto simp: disjnt_def)
f2d327275065 generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents: 69939
diff changeset
  1981
f2d327275065 generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents: 69939
diff changeset
  1982
lemma disjnt_Un2 [simp]: "disjnt C (A \<union> B) \<longleftrightarrow> disjnt C A \<and> disjnt C B"
f2d327275065 generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents: 69939
diff changeset
  1983
  by (auto simp: disjnt_def)
f2d327275065 generalised homotopic_with to topologies; homotopic_with_canon is the old version
paulson <lp15@cam.ac.uk>
parents: 69939
diff changeset
  1984
77935
7f240b0dabd9 More new theorems, and a necessary correction
paulson <lp15@cam.ac.uk>
parents: 77140
diff changeset
  1985
lemma disjnt_Diff1: "disjnt (X-Y) (U-V)" and disjnt_Diff2: "disjnt (U-V) (X-Y)" if "X \<subseteq> V"
7f240b0dabd9 More new theorems, and a necessary correction
paulson <lp15@cam.ac.uk>
parents: 77140
diff changeset
  1986
  using that by (auto simp: disjnt_def)
7f240b0dabd9 More new theorems, and a necessary correction
paulson <lp15@cam.ac.uk>
parents: 77140
diff changeset
  1987
63879
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1988
lemma disjoint_image_subset: "\<lbrakk>pairwise disjnt \<A>; \<And>X. X \<in> \<A> \<Longrightarrow> f X \<subseteq> X\<rbrakk> \<Longrightarrow> pairwise disjnt (f `\<A>)"
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1989
  unfolding disjnt_def pairwise_def by fast
15bbf6360339 simple new lemmas, mostly about sets
paulson <lp15@cam.ac.uk>
parents: 63588
diff changeset
  1990
71827
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 70614
diff changeset
  1991
lemma pairwise_disjnt_iff: "pairwise disjnt \<A> \<longleftrightarrow> (\<forall>x. \<exists>\<^sub>\<le>\<^sub>1 X. X \<in> \<A> \<and> x \<in> X)"
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 70614
diff changeset
  1992
  by (auto simp: Uniq_def disjnt_iff pairwise_def)
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 70614
diff changeset
  1993
73326
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72610
diff changeset
  1994
lemma disjnt_insert: \<^marker>\<open>contributor \<open>Lars Hupel\<close>\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72610
diff changeset
  1995
  \<open>disjnt (insert x M) N\<close> if \<open>x \<notin> N\<close> \<open>disjnt M N\<close>
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72610
diff changeset
  1996
  using that by (simp add: disjnt_def)
7a88313895d5 dissolve theory with duplicated name from afp
haftmann
parents: 72610
diff changeset
  1997
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1998
lemma Int_emptyI: "(\<And>x. x \<in> A \<Longrightarrow> x \<in> B \<Longrightarrow> False) \<Longrightarrow> A \<inter> B = {}"
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  1999
  by blast
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63072
diff changeset
  2000
63365
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2001
lemma in_image_insert_iff:
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2002
  assumes "\<And>C. C \<in> B \<Longrightarrow> x \<notin> C"
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2003
  shows "A \<in> insert x ` B \<longleftrightarrow> x \<in> A \<and> A - {x} \<in> B" (is "?P \<longleftrightarrow> ?Q")
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2004
proof
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2005
  assume ?P then show ?Q
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2006
    using assms by auto
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2007
next
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2008
  assume ?Q
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2009
  then have "x \<in> A" and "A - {x} \<in> B"
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2010
    by simp_all
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2011
  from \<open>A - {x} \<in> B\<close> have "insert x (A - {x}) \<in> insert x ` B"
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2012
    by (rule imageI)
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2013
  also from \<open>x \<in> A\<close>
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2014
  have "insert x (A - {x}) = A"
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2015
    by auto
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2016
  finally show ?P .
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2017
qed
5340fb6633d0 more theorems
haftmann
parents: 63316
diff changeset
  2018
45152
e877b76c72bd hide not_member as also member
haftmann
parents: 45121
diff changeset
  2019
hide_const (open) member not_member
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2020
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2021
lemmas equalityI = subset_antisym
69712
dc85b5b3a532 renamings and new material
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
  2022
lemmas set_mp = subsetD
dc85b5b3a532 renamings and new material
paulson <lp15@cam.ac.uk>
parents: 69700
diff changeset
  2023
lemmas set_rev_mp = rev_subsetD
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2024
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  2025
ML \<open>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2026
val Ball_def = @{thm Ball_def}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2027
val Bex_def = @{thm Bex_def}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2028
val CollectD = @{thm CollectD}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2029
val CollectE = @{thm CollectE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2030
val CollectI = @{thm CollectI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2031
val Collect_conj_eq = @{thm Collect_conj_eq}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2032
val Collect_mem_eq = @{thm Collect_mem_eq}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2033
val IntD1 = @{thm IntD1}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2034
val IntD2 = @{thm IntD2}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2035
val IntE = @{thm IntE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2036
val IntI = @{thm IntI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2037
val Int_Collect = @{thm Int_Collect}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2038
val UNIV_I = @{thm UNIV_I}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2039
val UNIV_witness = @{thm UNIV_witness}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2040
val UnE = @{thm UnE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2041
val UnI1 = @{thm UnI1}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2042
val UnI2 = @{thm UnI2}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2043
val ballE = @{thm ballE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2044
val ballI = @{thm ballI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2045
val bexCI = @{thm bexCI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2046
val bexE = @{thm bexE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2047
val bexI = @{thm bexI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2048
val bex_triv = @{thm bex_triv}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2049
val bspec = @{thm bspec}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2050
val contra_subsetD = @{thm contra_subsetD}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2051
val equalityCE = @{thm equalityCE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2052
val equalityD1 = @{thm equalityD1}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2053
val equalityD2 = @{thm equalityD2}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2054
val equalityE = @{thm equalityE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2055
val equalityI = @{thm equalityI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2056
val imageE = @{thm imageE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2057
val imageI = @{thm imageI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2058
val image_Un = @{thm image_Un}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2059
val image_insert = @{thm image_insert}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2060
val insert_commute = @{thm insert_commute}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2061
val insert_iff = @{thm insert_iff}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2062
val mem_Collect_eq = @{thm mem_Collect_eq}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2063
val rangeE = @{thm rangeE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2064
val rangeI = @{thm rangeI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2065
val range_eqI = @{thm range_eqI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2066
val subsetCE = @{thm subsetCE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2067
val subsetD = @{thm subsetD}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2068
val subsetI = @{thm subsetI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2069
val subset_refl = @{thm subset_refl}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2070
val subset_trans = @{thm subset_trans}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2071
val vimageD = @{thm vimageD}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2072
val vimageE = @{thm vimageE}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2073
val vimageI = @{thm vimageI}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2074
val vimageI2 = @{thm vimageI2}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2075
val vimage_Collect = @{thm vimage_Collect}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2076
val vimage_Int = @{thm vimage_Int}
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2077
val vimage_Un = @{thm vimage_Un}
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60161
diff changeset
  2078
\<close>
32135
f645b51e8e54 set intersection and union now named inter and union; closer connection between set and lattice operations; factored out complete lattice
haftmann
parents: 32120
diff changeset
  2079
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
  2080
end