src/HOL/Library/Infinite_Set.thy
author paulson <lp15@cam.ac.uk>
Tue, 01 Dec 2015 14:09:10 +0000
changeset 61762 d50b993b4fb9
parent 61585 a9599d3d7610
child 61810 3c5040d5694a
permissions -rw-r--r--
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
     1
(*  Title:      HOL/Library/Infinite_Set.thy
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     2
    Author:     Stephan Merz
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     3
*)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     4
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
     5
section \<open>Infinite Sets and Related Concepts\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     6
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     7
theory Infinite_Set
54612
7e291ae244ea Backed out changeset: a8ad7f6dd217---bypassing Main breaks theories that use \<inf> or \<sup>
traytel
parents: 54607
diff changeset
     8
imports Main
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     9
begin
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    10
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    11
subsection "Infinite Sets"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    12
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
    13
text \<open>
54557
d71c2737ee21 correctly account for dead variables when naming set functions
blanchet
parents: 53239
diff changeset
    14
  Some elementary facts about infinite sets, mostly by Stephan Merz.
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    15
  Beware! Because "infinite" merely abbreviates a negation, these
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 60828
diff changeset
    16
  lemmas may not work well with \<open>blast\<close>.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
    17
\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    18
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
    19
abbreviation infinite :: "'a set \<Rightarrow> bool"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
    20
  where "infinite S \<equiv> \<not> finite S"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    21
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
    22
text \<open>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    23
  Infinite sets are non-empty, and if we remove some elements from an
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    24
  infinite set, the result is still infinite.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
    25
\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    26
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
    27
lemma infinite_imp_nonempty: "infinite S \<Longrightarrow> S \<noteq> {}"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    28
  by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    29
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
    30
lemma infinite_remove: "infinite S \<Longrightarrow> infinite (S - {a})"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    31
  by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    32
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    33
lemma Diff_infinite_finite:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    34
  assumes T: "finite T" and S: "infinite S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    35
  shows "infinite (S - T)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    36
  using T
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    37
proof induct
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    38
  from S
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    39
  show "infinite (S - {})" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    40
next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    41
  fix T x
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    42
  assume ih: "infinite (S - T)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    43
  have "S - (insert x T) = (S - T) - {x}"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    44
    by (rule Diff_insert)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    45
  with ih
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    46
  show "infinite (S - (insert x T))"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    47
    by (simp add: infinite_remove)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    48
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    49
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    50
lemma Un_infinite: "infinite S \<Longrightarrow> infinite (S \<union> T)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    51
  by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    52
35844
65258d2c3214 added lemma infinite_Un
Christian Urban <urbanc@in.tum.de>
parents: 35056
diff changeset
    53
lemma infinite_Un: "infinite (S \<union> T) \<longleftrightarrow> infinite S \<or> infinite T"
65258d2c3214 added lemma infinite_Un
Christian Urban <urbanc@in.tum.de>
parents: 35056
diff changeset
    54
  by simp
65258d2c3214 added lemma infinite_Un
Christian Urban <urbanc@in.tum.de>
parents: 35056
diff changeset
    55
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    56
lemma infinite_super:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    57
  assumes T: "S \<subseteq> T" and S: "infinite S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    58
  shows "infinite T"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    59
proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    60
  assume "finite T"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    61
  with T have "finite S" by (simp add: finite_subset)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    62
  with S show False by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    63
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    64
60828
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    65
lemma infinite_coinduct [consumes 1, case_names infinite]:
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    66
  assumes "X A"
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    67
  and step: "\<And>A. X A \<Longrightarrow> \<exists>x\<in>A. X (A - {x}) \<or> infinite (A - {x})"
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    68
  shows "infinite A"
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    69
proof
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    70
  assume "finite A"
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    71
  then show False using \<open>X A\<close>
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    72
    by(induction rule: finite_psubset_induct)(meson Diff_subset card_Diff1_less card_psubset finite_Diff step)
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    73
qed    
e9e272fa8daf add coinduction rule for infinite
Andreas Lochbihler
parents: 60500
diff changeset
    74
61762
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
    75
text \<open>As a concrete example, we prove that the set of natural numbers is infinite.\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    76
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    77
lemma infinite_nat_iff_unbounded_le: "infinite (S::nat set) \<longleftrightarrow> (\<forall>m. \<exists>n\<ge>m. n \<in> S)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    78
  using frequently_cofinite[of "\<lambda>x. x \<in> S"]
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    79
  by (simp add: cofinite_eq_sequentially frequently_def eventually_sequentially)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    80
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    81
lemma infinite_nat_iff_unbounded: "infinite (S::nat set) \<longleftrightarrow> (\<forall>m. \<exists>n>m. n \<in> S)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    82
  using frequently_cofinite[of "\<lambda>x. x \<in> S"]
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    83
  by (simp add: cofinite_eq_sequentially frequently_def eventually_at_top_dense)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    84
59000
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58881
diff changeset
    85
lemma finite_nat_iff_bounded: "finite (S::nat set) \<longleftrightarrow> (\<exists>k. S \<subseteq> {..<k})"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    86
  using infinite_nat_iff_unbounded_le[of S] by (simp add: subset_eq) (metis not_le)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    87
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    88
lemma finite_nat_iff_bounded_le: "finite (S::nat set) \<longleftrightarrow> (\<exists>k. S \<subseteq> {.. k})"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    89
  using infinite_nat_iff_unbounded[of S] by (simp add: subset_eq) (metis not_le)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    90
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    91
lemma finite_nat_bounded: "finite (S::nat set) \<Longrightarrow> \<exists>k. S \<subseteq> {..<k}"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
    92
  by (simp add: finite_nat_iff_bounded)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    93
61762
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
    94
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
    95
text \<open>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    96
  For a set of natural numbers to be infinite, it is enough to know
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 60828
diff changeset
    97
  that for any number larger than some \<open>k\<close>, there is some larger
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    98
  number that is an element of the set.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
    99
\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   100
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   101
lemma unbounded_k_infinite: "\<forall>m>k. \<exists>n>m. n \<in> S \<Longrightarrow> infinite (S::nat set)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   102
  by (metis (full_types) infinite_nat_iff_unbounded_le le_imp_less_Suc not_less
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   103
            not_less_iff_gr_or_eq sup.bounded_iff)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   104
35056
d97b5c3af6d5 remove redundant theorem attributes
huffman
parents: 34941
diff changeset
   105
lemma nat_not_finite: "finite (UNIV::nat set) \<Longrightarrow> R"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   106
  by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   107
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   108
lemma range_inj_infinite:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   109
  "inj (f::nat \<Rightarrow> 'a) \<Longrightarrow> infinite (range f)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   110
proof
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   111
  assume "finite (range f)" and "inj f"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   112
  then have "finite (UNIV::nat set)"
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   113
    by (rule finite_imageD)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   114
  then show False by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   115
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   116
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   117
text \<open>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   118
  For any function with infinite domain and finite range there is some
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   119
  element that is the image of infinitely many domain elements.  In
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   120
  particular, any infinite sequence of elements from a finite set
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   121
  contains some element that occurs infinitely often.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   122
\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   123
59488
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   124
lemma inf_img_fin_dom':
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   125
  assumes img: "finite (f ` A)" and dom: "infinite A"
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   126
  shows "\<exists>y \<in> f ` A. infinite (f -` {y} \<inter> A)"
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   127
proof (rule ccontr)
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   128
  have "A \<subseteq> (\<Union>y\<in>f ` A. f -` {y} \<inter> A)" by auto
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   129
  moreover
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   130
  assume "\<not> ?thesis"
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   131
  with img have "finite (\<Union>y\<in>f ` A. f -` {y} \<inter> A)" by blast
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   132
  ultimately have "finite A" by(rule finite_subset)
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   133
  with dom show False by contradiction
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   134
qed
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   135
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   136
lemma inf_img_fin_domE':
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   137
  assumes "finite (f ` A)" and "infinite A"
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   138
  obtains y where "y \<in> f`A" and "infinite (f -` {y} \<inter> A)"
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   139
  using assms by (blast dest: inf_img_fin_dom')
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   140
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   141
lemma inf_img_fin_dom:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   142
  assumes img: "finite (f`A)" and dom: "infinite A"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   143
  shows "\<exists>y \<in> f`A. infinite (f -` {y})"
59488
8a183caa424d add stronger version of lemma
Andreas Lochbihler
parents: 59000
diff changeset
   144
using inf_img_fin_dom'[OF assms] by auto
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   145
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   146
lemma inf_img_fin_domE:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   147
  assumes "finite (f`A)" and "infinite A"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   148
  obtains y where "y \<in> f`A" and "infinite (f -` {y})"
23394
474ff28210c0 tuned proofs;
wenzelm
parents: 22432
diff changeset
   149
  using assms by (blast dest: inf_img_fin_dom)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   150
61762
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   151
proposition finite_image_absD:
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   152
    fixes S :: "'a::linordered_ring set"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   153
    shows "finite (abs ` S) \<Longrightarrow> finite S"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   154
  by (rule ccontr) (auto simp: abs_eq_iff vimage_def dest: inf_img_fin_dom)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   155
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   156
text \<open>The set of integers is also infinite.\<close>
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   157
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   158
lemma infinite_int_iff_infinite_nat_abs: "infinite (S::int set) \<longleftrightarrow> infinite ((nat o abs) ` S)"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   159
  by (auto simp: transfer_nat_int_set_relations o_def image_comp dest: finite_image_absD)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   160
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   161
proposition infinite_int_iff_unbounded_le: "infinite (S::int set) \<longleftrightarrow> (\<forall>m. \<exists>n. abs n \<ge> m \<and> n \<in> S)"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   162
  apply (simp add: infinite_int_iff_infinite_nat_abs infinite_nat_iff_unbounded_le o_def image_def)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   163
  apply (metis abs_ge_zero nat_le_eq_zle le_nat_iff)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   164
  done
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   165
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   166
proposition infinite_int_iff_unbounded: "infinite (S::int set) \<longleftrightarrow> (\<forall>m. \<exists>n. abs n > m \<and> n \<in> S)"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   167
  apply (simp add: infinite_int_iff_infinite_nat_abs infinite_nat_iff_unbounded o_def image_def)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   168
  apply (metis (full_types) nat_le_iff nat_mono not_le)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   169
  done
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   170
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   171
proposition finite_int_iff_bounded: "finite (S::int set) \<longleftrightarrow> (\<exists>k. abs ` S \<subseteq> {..<k})"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   172
  using infinite_int_iff_unbounded_le[of S] by (simp add: subset_eq) (metis not_le)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   173
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   174
proposition finite_int_iff_bounded_le: "finite (S::int set) \<longleftrightarrow> (\<exists>k. abs ` S \<subseteq> {.. k})"
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   175
  using infinite_int_iff_unbounded[of S] by (simp add: subset_eq) (metis not_le)
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   176
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   177
subsection "Infinitely Many and Almost All"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   178
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   179
text \<open>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   180
  We often need to reason about the existence of infinitely many
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   181
  (resp., all but finitely many) objects satisfying some predicate, so
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   182
  we introduce corresponding binders and their proof rules.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   183
\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   184
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   185
(* The following two lemmas are available as filter-rules, but not in the simp-set *)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   186
lemma not_INFM [simp]: "\<not> (INFM x. P x) \<longleftrightarrow> (MOST x. \<not> P x)" by (fact not_frequently)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   187
lemma not_MOST [simp]: "\<not> (MOST x. P x) \<longleftrightarrow> (INFM x. \<not> P x)" by (fact not_eventually)
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   188
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   189
lemma INFM_const [simp]: "(INFM x::'a. P) \<longleftrightarrow> P \<and> infinite (UNIV::'a set)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   190
  by (simp add: frequently_const_iff)
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   191
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   192
lemma MOST_const [simp]: "(MOST x::'a. P) \<longleftrightarrow> P \<or> finite (UNIV::'a set)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   193
  by (simp add: eventually_const_iff)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   194
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   195
lemma INFM_imp_distrib: "(INFM x. P x \<longrightarrow> Q x) \<longleftrightarrow> ((MOST x. P x) \<longrightarrow> (INFM x. Q x))"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   196
  by (simp only: imp_conv_disj frequently_disj_iff not_eventually)
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   197
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   198
lemma MOST_imp_iff: "MOST x. P x \<Longrightarrow> (MOST x. P x \<longrightarrow> Q x) \<longleftrightarrow> (MOST x. Q x)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   199
  by (auto intro: eventually_rev_mp eventually_elim1)
34113
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   200
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   201
lemma INFM_conjI: "INFM x. P x \<Longrightarrow> MOST x. Q x \<Longrightarrow> INFM x. P x \<and> Q x"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   202
  by (rule frequently_rev_mp[of P]) (auto elim: eventually_elim1)
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   203
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   204
text \<open>Properties of quantifiers with injective functions.\<close>
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   205
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   206
lemma INFM_inj: "INFM x. P (f x) \<Longrightarrow> inj f \<Longrightarrow> INFM x. P x"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   207
  using finite_vimageI[of "{x. P x}" f] by (auto simp: frequently_cofinite)
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   208
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   209
lemma MOST_inj: "MOST x. P x \<Longrightarrow> inj f \<Longrightarrow> MOST x. P (f x)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   210
  using finite_vimageI[of "{x. \<not> P x}" f] by (auto simp: eventually_cofinite)
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   211
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   212
text \<open>Properties of quantifiers with singletons.\<close>
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   213
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   214
lemma not_INFM_eq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   215
  "\<not> (INFM x. x = a)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   216
  "\<not> (INFM x. a = x)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   217
  unfolding frequently_cofinite by simp_all
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   218
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   219
lemma MOST_neq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   220
  "MOST x. x \<noteq> a"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   221
  "MOST x. a \<noteq> x"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   222
  unfolding eventually_cofinite by simp_all
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   223
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   224
lemma INFM_neq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   225
  "(INFM x::'a. x \<noteq> a) \<longleftrightarrow> infinite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   226
  "(INFM x::'a. a \<noteq> x) \<longleftrightarrow> infinite (UNIV::'a set)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   227
  unfolding frequently_cofinite by simp_all
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   228
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   229
lemma MOST_eq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   230
  "(MOST x::'a. x = a) \<longleftrightarrow> finite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   231
  "(MOST x::'a. a = x) \<longleftrightarrow> finite (UNIV::'a set)"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   232
  unfolding eventually_cofinite by simp_all
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   233
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   234
lemma MOST_eq_imp:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   235
  "MOST x. x = a \<longrightarrow> P x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   236
  "MOST x. a = x \<longrightarrow> P x"
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   237
  unfolding eventually_cofinite by simp_all
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   238
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   239
text \<open>Properties of quantifiers over the naturals.\<close>
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   240
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   241
lemma MOST_nat: "(\<forall>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<exists>m. \<forall>n>m. P n)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   242
  by (auto simp add: eventually_cofinite finite_nat_iff_bounded_le subset_eq not_le[symmetric])
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   243
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   244
lemma MOST_nat_le: "(\<forall>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<exists>m. \<forall>n\<ge>m. P n)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   245
  by (auto simp add: eventually_cofinite finite_nat_iff_bounded subset_eq not_le[symmetric])
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   246
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   247
lemma INFM_nat: "(\<exists>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<forall>m. \<exists>n>m. P n)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   248
  by (simp add: frequently_cofinite infinite_nat_iff_unbounded)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   249
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   250
lemma INFM_nat_le: "(\<exists>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<forall>m. \<exists>n\<ge>m. P n)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   251
  by (simp add: frequently_cofinite infinite_nat_iff_unbounded_le)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   252
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   253
lemma MOST_INFM: "infinite (UNIV::'a set) \<Longrightarrow> MOST x::'a. P x \<Longrightarrow> INFM x::'a. P x"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   254
  by (simp add: eventually_frequently)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   255
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   256
lemma MOST_Suc_iff: "(MOST n. P (Suc n)) \<longleftrightarrow> (MOST n. P n)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   257
  by (simp add: cofinite_eq_sequentially eventually_sequentially_Suc)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   258
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   259
lemma
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   260
  shows MOST_SucI: "MOST n. P n \<Longrightarrow> MOST n. P (Suc n)"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   261
    and MOST_SucD: "MOST n. P (Suc n) \<Longrightarrow> MOST n. P n"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   262
  by (simp_all add: MOST_Suc_iff)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   263
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   264
lemma MOST_ge_nat: "MOST n::nat. m \<le> n"
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   265
  by (simp add: cofinite_eq_sequentially eventually_ge_at_top)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   266
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   267
(* legacy names *)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   268
lemma Inf_many_def: "Inf_many P \<longleftrightarrow> infinite {x. P x}" by (fact frequently_cofinite)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   269
lemma Alm_all_def: "Alm_all P \<longleftrightarrow> \<not> (INFM x. \<not> P x)" by simp
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   270
lemma INFM_iff_infinite: "(INFM x. P x) \<longleftrightarrow> infinite {x. P x}" by (fact frequently_cofinite)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   271
lemma MOST_iff_cofinite: "(MOST x. P x) \<longleftrightarrow> finite {x. \<not> P x}" by (fact eventually_cofinite)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   272
lemma INFM_EX: "(\<exists>\<^sub>\<infinity>x. P x) \<Longrightarrow> (\<exists>x. P x)" by (fact frequently_ex)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   273
lemma ALL_MOST: "\<forall>x. P x \<Longrightarrow> \<forall>\<^sub>\<infinity>x. P x" by (fact always_eventually)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   274
lemma INFM_mono: "\<exists>\<^sub>\<infinity>x. P x \<Longrightarrow> (\<And>x. P x \<Longrightarrow> Q x) \<Longrightarrow> \<exists>\<^sub>\<infinity>x. Q x" by (fact frequently_elim1)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   275
lemma MOST_mono: "\<forall>\<^sub>\<infinity>x. P x \<Longrightarrow> (\<And>x. P x \<Longrightarrow> Q x) \<Longrightarrow> \<forall>\<^sub>\<infinity>x. Q x" by (fact eventually_elim1)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   276
lemma INFM_disj_distrib: "(\<exists>\<^sub>\<infinity>x. P x \<or> Q x) \<longleftrightarrow> (\<exists>\<^sub>\<infinity>x. P x) \<or> (\<exists>\<^sub>\<infinity>x. Q x)" by (fact frequently_disj_iff)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   277
lemma MOST_rev_mp: "\<forall>\<^sub>\<infinity>x. P x \<Longrightarrow> \<forall>\<^sub>\<infinity>x. P x \<longrightarrow> Q x \<Longrightarrow> \<forall>\<^sub>\<infinity>x. Q x" by (fact eventually_rev_mp)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   278
lemma MOST_conj_distrib: "(\<forall>\<^sub>\<infinity>x. P x \<and> Q x) \<longleftrightarrow> (\<forall>\<^sub>\<infinity>x. P x) \<and> (\<forall>\<^sub>\<infinity>x. Q x)" by (fact eventually_conj_iff)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   279
lemma MOST_conjI: "MOST x. P x \<Longrightarrow> MOST x. Q x \<Longrightarrow> MOST x. P x \<and> Q x" by (fact eventually_conj)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   280
lemma INFM_finite_Bex_distrib: "finite A \<Longrightarrow> (INFM y. \<exists>x\<in>A. P x y) \<longleftrightarrow> (\<exists>x\<in>A. INFM y. P x y)" by (fact frequently_bex_finite_distrib)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   281
lemma MOST_finite_Ball_distrib: "finite A \<Longrightarrow> (MOST y. \<forall>x\<in>A. P x y) \<longleftrightarrow> (\<forall>x\<in>A. MOST y. P x y)" by (fact eventually_ball_finite_distrib)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   282
lemma INFM_E: "INFM x. P x \<Longrightarrow> (\<And>x. P x \<Longrightarrow> thesis) \<Longrightarrow> thesis" by (fact frequentlyE)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   283
lemma MOST_I: "(\<And>x. P x) \<Longrightarrow> MOST x. P x" by (rule eventuallyI)
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   284
lemmas MOST_iff_finiteNeg = MOST_iff_cofinite
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   285
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   286
subsection "Enumeration of an Infinite Set"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   287
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   288
text \<open>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   289
  The set's element type must be wellordered (e.g. the natural numbers).
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   290
\<close>
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   291
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   292
text \<open>
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   293
  Could be generalized to
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   294
    @{term "enumerate' S n = (SOME t. t \<in> s \<and> finite {s\<in>S. s < t} \<and> card {s\<in>S. s < t} = n)"}.
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   295
\<close>
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   296
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   297
primrec (in wellorder) enumerate :: "'a set \<Rightarrow> nat \<Rightarrow> 'a"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   298
where
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   299
  enumerate_0: "enumerate S 0 = (LEAST n. n \<in> S)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   300
| enumerate_Suc: "enumerate S (Suc n) = enumerate (S - {LEAST n. n \<in> S}) n"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   301
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   302
lemma enumerate_Suc': "enumerate S (Suc n) = enumerate (S - {enumerate S 0}) n"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   303
  by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   304
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   305
lemma enumerate_in_set: "infinite S \<Longrightarrow> enumerate S n \<in> S"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   306
  apply (induct n arbitrary: S)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   307
   apply (fastforce intro: LeastI dest!: infinite_imp_nonempty)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   308
  apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   309
  apply (metis DiffE infinite_remove)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   310
  done
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   311
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   312
declare enumerate_0 [simp del] enumerate_Suc [simp del]
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   313
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   314
lemma enumerate_step: "infinite S \<Longrightarrow> enumerate S n < enumerate S (Suc n)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   315
  apply (induct n arbitrary: S)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   316
   apply (rule order_le_neq_trans)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   317
    apply (simp add: enumerate_0 Least_le enumerate_in_set)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   318
   apply (simp only: enumerate_Suc')
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   319
   apply (subgoal_tac "enumerate (S - {enumerate S 0}) 0 \<in> S - {enumerate S 0}")
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   320
    apply (blast intro: sym)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   321
   apply (simp add: enumerate_in_set del: Diff_iff)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   322
  apply (simp add: enumerate_Suc')
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   323
  done
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   324
60040
1fa1023b13b9 move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents: 59506
diff changeset
   325
lemma enumerate_mono: "m < n \<Longrightarrow> infinite S \<Longrightarrow> enumerate S m < enumerate S n"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   326
  apply (erule less_Suc_induct)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   327
  apply (auto intro: enumerate_step)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   328
  done
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   329
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   330
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   331
lemma le_enumerate:
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   332
  assumes S: "infinite S"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   333
  shows "n \<le> enumerate S n"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   334
  using S 
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   335
proof (induct n)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   336
  case 0
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   337
  then show ?case by simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   338
next
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   339
  case (Suc n)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   340
  then have "n \<le> enumerate S n" by simp
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   341
  also note enumerate_mono[of n "Suc n", OF _ \<open>infinite S\<close>]
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   342
  finally show ?case by simp
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   343
qed
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   344
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   345
lemma enumerate_Suc'':
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   346
  fixes S :: "'a::wellorder set"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   347
  assumes "infinite S"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   348
  shows "enumerate S (Suc n) = (LEAST s. s \<in> S \<and> enumerate S n < s)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   349
  using assms
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   350
proof (induct n arbitrary: S)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   351
  case 0
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   352
  then have "\<forall>s \<in> S. enumerate S 0 \<le> s"
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   353
    by (auto simp: enumerate.simps intro: Least_le)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   354
  then show ?case
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   355
    unfolding enumerate_Suc' enumerate_0[of "S - {enumerate S 0}"]
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   356
    by (intro arg_cong[where f = Least] ext) auto
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   357
next
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   358
  case (Suc n S)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   359
  show ?case
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   360
    using enumerate_mono[OF zero_less_Suc \<open>infinite S\<close>, of n] \<open>infinite S\<close>
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   361
    apply (subst (1 2) enumerate_Suc')
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   362
    apply (subst Suc)
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   363
    using \<open>infinite S\<close>
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   364
    apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   365
    apply (intro arg_cong[where f = Least] ext)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   366
    apply (auto simp: enumerate_Suc'[symmetric])
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   367
    done
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   368
qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   369
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   370
lemma enumerate_Ex:
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   371
  assumes S: "infinite (S::nat set)"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   372
  shows "s \<in> S \<Longrightarrow> \<exists>n. enumerate S n = s"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   373
proof (induct s rule: less_induct)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   374
  case (less s)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   375
  show ?case
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   376
  proof cases
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   377
    let ?y = "Max {s'\<in>S. s' < s}"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   378
    assume "\<exists>y\<in>S. y < s"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   379
    then have y: "\<And>x. ?y < x \<longleftrightarrow> (\<forall>s'\<in>S. s' < s \<longrightarrow> s' < x)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   380
      by (subst Max_less_iff) auto
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   381
    then have y_in: "?y \<in> {s'\<in>S. s' < s}"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   382
      by (intro Max_in) auto
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   383
    with less.hyps[of ?y] obtain n where "enumerate S n = ?y"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   384
      by auto
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   385
    with S have "enumerate S (Suc n) = s"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   386
      by (auto simp: y less enumerate_Suc'' intro!: Least_equality)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   387
    then show ?case by auto
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   388
  next
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   389
    assume *: "\<not> (\<exists>y\<in>S. y < s)"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   390
    then have "\<forall>t\<in>S. s \<le> t" by auto
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   391
    with \<open>s \<in> S\<close> show ?thesis
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   392
      by (auto intro!: exI[of _ 0] Least_equality simp: enumerate_0)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   393
  qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   394
qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   395
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   396
lemma bij_enumerate:
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   397
  fixes S :: "nat set"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   398
  assumes S: "infinite S"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   399
  shows "bij_betw (enumerate S) UNIV S"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   400
proof -
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   401
  have "\<And>n m. n \<noteq> m \<Longrightarrow> enumerate S n \<noteq> enumerate S m"
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   402
    using enumerate_mono[OF _ \<open>infinite S\<close>] by (auto simp: neq_iff)
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   403
  then have "inj (enumerate S)"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   404
    by (auto simp: inj_on_def)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   405
  moreover have "\<forall>s \<in> S. \<exists>i. enumerate S i = s"
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   406
    using enumerate_Ex[OF S] by auto
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 60040
diff changeset
   407
  moreover note \<open>infinite S\<close>
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   408
  ultimately show ?thesis
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   409
    unfolding bij_betw_def by (auto intro: enumerate_in_set)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   410
qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   411
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   412
end
54612
7e291ae244ea Backed out changeset: a8ad7f6dd217---bypassing Main breaks theories that use \<inf> or \<sup>
traytel
parents: 54607
diff changeset
   413