src/HOL/Library/Infinite_Set.thy
author hoelzl
Tue, 12 Nov 2013 19:28:50 +0100
changeset 54408 67dec4ccaabd
parent 53239 2f21813cf2f0
child 54557 d71c2737ee21
permissions -rw-r--r--
equation when indicator function equals 0 or 1
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
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
     5
header {* Infinite Sets and Related Concepts *}
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
30663
0b6aff7451b2 Main is (Complex_Main) base entry point in library theories
haftmann
parents: 29901
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
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    13
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    14
  Some elementary facts about infinite sets, mostly by Stefan Merz.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    15
  Beware! Because "infinite" merely abbreviates a negation, these
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    16
  lemmas may not work well with @{text "blast"}.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    17
*}
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
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    22
text {*
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.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    25
*}
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
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    65
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    66
  As a concrete example, we prove that the set of natural numbers is
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    67
  infinite.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    68
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    69
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    70
lemma finite_nat_bounded:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    71
  assumes S: "finite (S::nat set)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    72
  shows "\<exists>k. S \<subseteq> {..<k}"  (is "\<exists>k. ?bounded S k")
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
    73
  using S
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    74
proof induct
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    75
  have "?bounded {} 0" by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    76
  then show "\<exists>k. ?bounded {} k" ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    77
next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    78
  fix S x
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    79
  assume "\<exists>k. ?bounded S k"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    80
  then obtain k where k: "?bounded S k" ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    81
  show "\<exists>k. ?bounded (insert x S) k"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    82
  proof (cases "x < k")
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    83
    case True
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    84
    with k show ?thesis by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    85
  next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    86
    case False
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    87
    with k have "?bounded S (Suc x)" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    88
    then show ?thesis by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    89
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    90
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    91
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    92
lemma finite_nat_iff_bounded:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
    93
  "finite (S::nat set) \<longleftrightarrow> (\<exists>k. S \<subseteq> {..<k})"  (is "?lhs \<longleftrightarrow> ?rhs")
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    94
proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    95
  assume ?lhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    96
  then show ?rhs by (rule finite_nat_bounded)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    97
next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    98
  assume ?rhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
    99
  then obtain k where "S \<subseteq> {..<k}" ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   100
  then show "finite S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   101
    by (rule finite_subset) simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   102
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   103
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   104
lemma finite_nat_iff_bounded_le:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   105
  "finite (S::nat set) \<longleftrightarrow> (\<exists>k. S \<subseteq> {..k})"  (is "?lhs \<longleftrightarrow> ?rhs")
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   106
proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   107
  assume ?lhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   108
  then obtain k where "S \<subseteq> {..<k}"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   109
    by (blast dest: finite_nat_bounded)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   110
  then have "S \<subseteq> {..k}" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   111
  then show ?rhs ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   112
next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   113
  assume ?rhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   114
  then obtain k where "S \<subseteq> {..k}" ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   115
  then show "finite S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   116
    by (rule finite_subset) simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   117
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   118
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   119
lemma infinite_nat_iff_unbounded:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   120
  "infinite (S::nat set) \<longleftrightarrow> (\<forall>m. \<exists>n. m < n \<and> n \<in> S)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   121
  (is "?lhs \<longleftrightarrow> ?rhs")
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   122
proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   123
  assume ?lhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   124
  show ?rhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   125
  proof (rule ccontr)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   126
    assume "\<not> ?rhs"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   127
    then obtain m where m: "\<forall>n. m < n \<longrightarrow> n \<notin> S" by blast
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   128
    then have "S \<subseteq> {..m}"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   129
      by (auto simp add: sym [OF linorder_not_less])
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   130
    with `?lhs` show False
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   131
      by (simp add: finite_nat_iff_bounded_le)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   132
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   133
next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   134
  assume ?rhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   135
  show ?lhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   136
  proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   137
    assume "finite S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   138
    then obtain m where "S \<subseteq> {..m}"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   139
      by (auto simp add: finite_nat_iff_bounded_le)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   140
    then have "\<forall>n. m < n \<longrightarrow> n \<notin> S" by auto
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   141
    with `?rhs` show False by blast
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   142
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   143
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   144
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   145
lemma infinite_nat_iff_unbounded_le:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   146
  "infinite (S::nat set) \<longleftrightarrow> (\<forall>m. \<exists>n. m \<le> n \<and> n \<in> S)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   147
  (is "?lhs \<longleftrightarrow> ?rhs")
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   148
proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   149
  assume ?lhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   150
  show ?rhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   151
  proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   152
    fix m
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   153
    from `?lhs` obtain n where "m < n \<and> n \<in> S"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   154
      by (auto simp add: infinite_nat_iff_unbounded)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   155
    then have "m \<le> n \<and> n \<in> S" by simp
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   156
    then show "\<exists>n. m \<le> n \<and> n \<in> S" ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   157
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   158
next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   159
  assume ?rhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   160
  show ?lhs
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   161
  proof (auto simp add: infinite_nat_iff_unbounded)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   162
    fix m
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   163
    from `?rhs` obtain n where "Suc m \<le> n \<and> n \<in> S"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   164
      by blast
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   165
    then have "m < n \<and> n \<in> S" by simp
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   166
    then show "\<exists>n. m < n \<and> n \<in> S" ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   167
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   168
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   169
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   170
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   171
  For a set of natural numbers to be infinite, it is enough to know
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   172
  that for any number larger than some @{text k}, there is some larger
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   173
  number that is an element of the set.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   174
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   175
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   176
lemma unbounded_k_infinite:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   177
  assumes k: "\<forall>m. k < m \<longrightarrow> (\<exists>n. m < n \<and> n \<in> S)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   178
  shows "infinite (S::nat set)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   179
proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   180
  {
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   181
    fix m have "\<exists>n. m < n \<and> n \<in> S"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   182
    proof (cases "k < m")
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   183
      case True
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   184
      with k show ?thesis by blast
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   185
    next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   186
      case False
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   187
      from k obtain n where "Suc k < n \<and> n \<in> S" by auto
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   188
      with False have "m < n \<and> n \<in> S" by auto
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   189
      then show ?thesis ..
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   190
    qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   191
  }
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   192
  then show ?thesis
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   193
    by (auto simp add: infinite_nat_iff_unbounded)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   194
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   195
35056
d97b5c3af6d5 remove redundant theorem attributes
huffman
parents: 34941
diff changeset
   196
(* duplicates Finite_Set.infinite_UNIV_nat *)
d97b5c3af6d5 remove redundant theorem attributes
huffman
parents: 34941
diff changeset
   197
lemma nat_infinite: "infinite (UNIV :: nat set)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   198
  by (auto simp add: infinite_nat_iff_unbounded)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   199
35056
d97b5c3af6d5 remove redundant theorem attributes
huffman
parents: 34941
diff changeset
   200
lemma nat_not_finite: "finite (UNIV::nat set) \<Longrightarrow> R"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   201
  by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   202
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   203
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   204
  Every infinite set contains a countable subset. More precisely we
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   205
  show that a set @{text S} is infinite if and only if there exists an
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   206
  injective function from the naturals into @{text S}.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   207
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   208
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   209
lemma range_inj_infinite:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   210
  "inj (f::nat \<Rightarrow> 'a) \<Longrightarrow> infinite (range f)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   211
proof
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   212
  assume "finite (range f)" and "inj f"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   213
  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
   214
    by (rule finite_imageD)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   215
  then show False by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   216
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   217
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   218
lemma int_infinite [simp]: "infinite (UNIV::int set)"
22226
699385e6cb45 new theorem int_infinite
paulson
parents: 21404
diff changeset
   219
proof -
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   220
  from inj_int have "infinite (range int)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   221
    by (rule range_inj_infinite)
22226
699385e6cb45 new theorem int_infinite
paulson
parents: 21404
diff changeset
   222
  moreover 
699385e6cb45 new theorem int_infinite
paulson
parents: 21404
diff changeset
   223
  have "range int \<subseteq> (UNIV::int set)" by simp
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   224
  ultimately show "infinite (UNIV::int set)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   225
    by (simp add: infinite_super)
22226
699385e6cb45 new theorem int_infinite
paulson
parents: 21404
diff changeset
   226
qed
699385e6cb45 new theorem int_infinite
paulson
parents: 21404
diff changeset
   227
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   228
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   229
  The ``only if'' direction is harder because it requires the
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   230
  construction of a sequence of pairwise different elements of an
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   231
  infinite set @{text S}. The idea is to construct a sequence of
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   232
  non-empty and infinite subsets of @{text S} obtained by successively
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   233
  removing elements of @{text S}.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   234
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   235
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   236
lemma linorder_injI:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   237
  assumes hyp: "\<And>x y. x < (y::'a::linorder) \<Longrightarrow> f x \<noteq> f y"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   238
  shows "inj f"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   239
proof (rule inj_onI)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   240
  fix x y
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   241
  assume f_eq: "f x = f y"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   242
  show "x = y"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   243
  proof (rule linorder_cases)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   244
    assume "x < y"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   245
    with hyp have "f x \<noteq> f y" by blast
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   246
    with f_eq show ?thesis by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   247
  next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   248
    assume "x = y"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   249
    then show ?thesis .
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   250
  next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   251
    assume "y < x"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   252
    with hyp have "f y \<noteq> f x" by blast
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   253
    with f_eq show ?thesis by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   254
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   255
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   256
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   257
lemma infinite_countable_subset:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   258
  assumes inf: "infinite (S::'a set)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   259
  shows "\<exists>f. inj (f::nat \<Rightarrow> 'a) \<and> range f \<subseteq> S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   260
proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   261
  def Sseq \<equiv> "nat_rec S (\<lambda>n T. T - {SOME e. e \<in> T})"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   262
  def pick \<equiv> "\<lambda>n. (SOME e. e \<in> Sseq n)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   263
  have Sseq_inf: "\<And>n. infinite (Sseq n)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   264
  proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   265
    fix n
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   266
    show "infinite (Sseq n)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   267
    proof (induct n)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   268
      from inf show "infinite (Sseq 0)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   269
        by (simp add: Sseq_def)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   270
    next
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   271
      fix n
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   272
      assume "infinite (Sseq n)" then show "infinite (Sseq (Suc n))"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   273
        by (simp add: Sseq_def infinite_remove)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   274
    qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   275
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   276
  have Sseq_S: "\<And>n. Sseq n \<subseteq> S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   277
  proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   278
    fix n
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   279
    show "Sseq n \<subseteq> S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   280
      by (induct n) (auto simp add: Sseq_def)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   281
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   282
  have Sseq_pick: "\<And>n. pick n \<in> Sseq n"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   283
  proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   284
    fix n
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   285
    show "pick n \<in> Sseq n"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   286
      unfolding pick_def
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   287
    proof (rule someI_ex)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   288
      from Sseq_inf have "infinite (Sseq n)" .
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   289
      then have "Sseq n \<noteq> {}" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   290
      then show "\<exists>x. x \<in> Sseq n" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   291
    qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   292
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   293
  with Sseq_S have rng: "range pick \<subseteq> S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   294
    by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   295
  have pick_Sseq_gt: "\<And>n m. pick n \<notin> Sseq (n + Suc m)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   296
  proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   297
    fix n m
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   298
    show "pick n \<notin> Sseq (n + Suc m)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   299
      by (induct m) (auto simp add: Sseq_def pick_def)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   300
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   301
  have pick_pick: "\<And>n m. pick n \<noteq> pick (n + Suc m)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   302
  proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   303
    fix n m
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   304
    from Sseq_pick have "pick (n + Suc m) \<in> Sseq (n + Suc m)" .
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   305
    moreover from pick_Sseq_gt
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   306
    have "pick n \<notin> Sseq (n + Suc m)" .
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   307
    ultimately show "pick n \<noteq> pick (n + Suc m)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   308
      by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   309
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   310
  have inj: "inj pick"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   311
  proof (rule linorder_injI)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   312
    fix i j :: nat
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   313
    assume "i < j"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   314
    show "pick i \<noteq> pick j"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   315
    proof
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   316
      assume eq: "pick i = pick j"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   317
      from `i < j` obtain k where "j = i + Suc k"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   318
        by (auto simp add: less_iff_Suc_add)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   319
      with pick_pick have "pick i \<noteq> pick j" by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   320
      with eq show False by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   321
    qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   322
  qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   323
  from rng inj show ?thesis by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   324
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   325
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   326
lemma infinite_iff_countable_subset:
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   327
    "infinite S \<longleftrightarrow> (\<exists>f. inj (f::nat \<Rightarrow> 'a) \<and> range f \<subseteq> S)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   328
  by (auto simp add: infinite_countable_subset range_inj_infinite infinite_super)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   329
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   330
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   331
  For any function with infinite domain and finite range there is some
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   332
  element that is the image of infinitely many domain elements.  In
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   333
  particular, any infinite sequence of elements from a finite set
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   334
  contains some element that occurs infinitely often.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   335
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   336
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   337
lemma inf_img_fin_dom:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   338
  assumes img: "finite (f`A)" and dom: "infinite A"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   339
  shows "\<exists>y \<in> f`A. infinite (f -` {y})"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   340
proof (rule ccontr)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   341
  assume "\<not> ?thesis"
40786
0a54cfc9add3 gave more standard finite set rules simp and intro attribute
nipkow
parents: 35844
diff changeset
   342
  with img have "finite (UN y:f`A. f -` {y})" by blast
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   343
  moreover have "A \<subseteq> (UN y:f`A. f -` {y})" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   344
  moreover note dom
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   345
  ultimately show False by (simp add: infinite_super)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   346
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   347
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   348
lemma inf_img_fin_domE:
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   349
  assumes "finite (f`A)" and "infinite A"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   350
  obtains y where "y \<in> f`A" and "infinite (f -` {y})"
23394
474ff28210c0 tuned proofs;
wenzelm
parents: 22432
diff changeset
   351
  using assms by (blast dest: inf_img_fin_dom)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   352
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   353
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   354
subsection "Infinitely Many and Almost All"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   355
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   356
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   357
  We often need to reason about the existence of infinitely many
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   358
  (resp., all but finitely many) objects satisfying some predicate, so
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   359
  we introduce corresponding binders and their proof rules.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   360
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   361
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   362
definition Inf_many :: "('a \<Rightarrow> bool) \<Rightarrow> bool"  (binder "INFM " 10)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   363
  where "Inf_many P \<longleftrightarrow> infinite {x. P x}"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21256
diff changeset
   364
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   365
definition Alm_all :: "('a \<Rightarrow> bool) \<Rightarrow> bool"  (binder "MOST " 10)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   366
  where "Alm_all P \<longleftrightarrow> \<not> (INFM x. \<not> P x)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   367
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20809
diff changeset
   368
notation (xsymbols)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21256
diff changeset
   369
  Inf_many  (binder "\<exists>\<^sub>\<infinity>" 10) and
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   370
  Alm_all  (binder "\<forall>\<^sub>\<infinity>" 10)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   371
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20809
diff changeset
   372
notation (HTML output)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21256
diff changeset
   373
  Inf_many  (binder "\<exists>\<^sub>\<infinity>" 10) and
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   374
  Alm_all  (binder "\<forall>\<^sub>\<infinity>" 10)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   375
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   376
lemma INFM_iff_infinite: "(INFM x. P x) \<longleftrightarrow> infinite {x. P x}"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   377
  unfolding Inf_many_def ..
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   378
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   379
lemma MOST_iff_cofinite: "(MOST x. P x) \<longleftrightarrow> finite {x. \<not> P x}"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   380
  unfolding Alm_all_def Inf_many_def by simp
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   381
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   382
(* legacy name *)
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   383
lemmas MOST_iff_finiteNeg = MOST_iff_cofinite
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   384
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   385
lemma not_INFM [simp]: "\<not> (INFM x. P x) \<longleftrightarrow> (MOST x. \<not> P x)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   386
  unfolding Alm_all_def not_not ..
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   387
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   388
lemma not_MOST [simp]: "\<not> (MOST x. P x) \<longleftrightarrow> (INFM x. \<not> P x)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   389
  unfolding Alm_all_def not_not ..
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   390
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   391
lemma INFM_const [simp]: "(INFM x::'a. P) \<longleftrightarrow> P \<and> infinite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   392
  unfolding Inf_many_def by simp
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   393
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   394
lemma MOST_const [simp]: "(MOST x::'a. P) \<longleftrightarrow> P \<or> finite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   395
  unfolding Alm_all_def by simp
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   396
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   397
lemma INFM_EX: "(\<exists>\<^sub>\<infinity>x. P x) \<Longrightarrow> (\<exists>x. P x)"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   398
  apply (erule contrapos_pp)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   399
  apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   400
  done
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   401
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   402
lemma ALL_MOST: "\<forall>x. P x \<Longrightarrow> \<forall>\<^sub>\<infinity>x. P x"
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   403
  by simp
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   404
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   405
lemma INFM_E:
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   406
  assumes "INFM x. P x"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   407
  obtains x where "P x"
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   408
  using INFM_EX [OF assms] by (rule exE)
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   409
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   410
lemma MOST_I:
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   411
  assumes "\<And>x. P x"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   412
  shows "MOST x. P x"
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   413
  using assms by simp
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   414
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   415
lemma INFM_mono:
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   416
  assumes inf: "\<exists>\<^sub>\<infinity>x. P x" and q: "\<And>x. P x \<Longrightarrow> Q x"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   417
  shows "\<exists>\<^sub>\<infinity>x. Q x"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   418
proof -
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   419
  from inf have "infinite {x. P x}" unfolding Inf_many_def .
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   420
  moreover from q have "{x. P x} \<subseteq> {x. Q x}" by auto
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   421
  ultimately show ?thesis
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   422
    by (simp add: Inf_many_def infinite_super)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   423
qed
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   424
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   425
lemma MOST_mono: "\<forall>\<^sub>\<infinity>x. P x \<Longrightarrow> (\<And>x. P x \<Longrightarrow> Q x) \<Longrightarrow> \<forall>\<^sub>\<infinity>x. Q x"
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   426
  unfolding Alm_all_def by (blast intro: INFM_mono)
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   427
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   428
lemma INFM_disj_distrib:
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   429
  "(\<exists>\<^sub>\<infinity>x. P x \<or> Q x) \<longleftrightarrow> (\<exists>\<^sub>\<infinity>x. P x) \<or> (\<exists>\<^sub>\<infinity>x. Q x)"
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   430
  unfolding Inf_many_def by (simp add: Collect_disj_eq)
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   431
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   432
lemma INFM_imp_distrib:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   433
  "(INFM x. P x \<longrightarrow> Q x) \<longleftrightarrow> ((MOST x. P x) \<longrightarrow> (INFM x. Q x))"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   434
  by (simp only: imp_conv_disj INFM_disj_distrib not_MOST)
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   435
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   436
lemma MOST_conj_distrib:
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   437
  "(\<forall>\<^sub>\<infinity>x. P x \<and> Q x) \<longleftrightarrow> (\<forall>\<^sub>\<infinity>x. P x) \<and> (\<forall>\<^sub>\<infinity>x. Q x)"
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   438
  unfolding Alm_all_def by (simp add: INFM_disj_distrib del: disj_not1)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   439
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   440
lemma MOST_conjI:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   441
  "MOST x. P x \<Longrightarrow> MOST x. Q x \<Longrightarrow> MOST x. P x \<and> Q x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   442
  by (simp add: MOST_conj_distrib)
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   443
34113
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   444
lemma INFM_conjI:
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   445
  "INFM x. P x \<Longrightarrow> MOST x. Q x \<Longrightarrow> INFM x. P x \<and> Q x"
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   446
  unfolding MOST_iff_cofinite INFM_iff_infinite
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   447
  apply (drule (1) Diff_infinite_finite)
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   448
  apply (simp add: Collect_conj_eq Collect_neg_eq)
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   449
  done
dbc0fb6e7eae add lemma INFM_conjI
huffman
parents: 34112
diff changeset
   450
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   451
lemma MOST_rev_mp:
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   452
  assumes "\<forall>\<^sub>\<infinity>x. P x" and "\<forall>\<^sub>\<infinity>x. P x \<longrightarrow> Q x"
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   453
  shows "\<forall>\<^sub>\<infinity>x. Q x"
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   454
proof -
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   455
  have "\<forall>\<^sub>\<infinity>x. P x \<and> (P x \<longrightarrow> Q x)"
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   456
    using assms by (rule MOST_conjI)
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   457
  thus ?thesis by (rule MOST_mono) simp
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   458
qed
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   459
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   460
lemma MOST_imp_iff:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   461
  assumes "MOST x. P x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   462
  shows "(MOST x. P x \<longrightarrow> Q x) \<longleftrightarrow> (MOST x. Q x)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   463
proof
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   464
  assume "MOST x. P x \<longrightarrow> Q x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   465
  with assms show "MOST x. Q x" by (rule MOST_rev_mp)
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   466
next
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   467
  assume "MOST x. Q x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   468
  then show "MOST x. P x \<longrightarrow> Q x" by (rule MOST_mono) simp
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   469
qed
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   470
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   471
lemma INFM_MOST_simps [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   472
  "\<And>P Q. (INFM x. P x \<and> Q) \<longleftrightarrow> (INFM x. P x) \<and> Q"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   473
  "\<And>P Q. (INFM x. P \<and> Q x) \<longleftrightarrow> P \<and> (INFM x. Q x)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   474
  "\<And>P Q. (MOST x. P x \<or> Q) \<longleftrightarrow> (MOST x. P x) \<or> Q"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   475
  "\<And>P Q. (MOST x. P \<or> Q x) \<longleftrightarrow> P \<or> (MOST x. Q x)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   476
  "\<And>P Q. (MOST x. P x \<longrightarrow> Q) \<longleftrightarrow> ((INFM x. P x) \<longrightarrow> Q)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   477
  "\<And>P Q. (MOST x. P \<longrightarrow> Q x) \<longleftrightarrow> (P \<longrightarrow> (MOST x. Q x))"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   478
  unfolding Alm_all_def Inf_many_def
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   479
  by (simp_all add: Collect_conj_eq)
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   480
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   481
text {* Properties of quantifiers with injective functions. *}
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   482
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   483
lemma INFM_inj: "INFM x. P (f x) \<Longrightarrow> inj f \<Longrightarrow> INFM x. P x"
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   484
  unfolding INFM_iff_infinite
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   485
  apply clarify
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   486
  apply (drule (1) finite_vimageI)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   487
  apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   488
  done
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   489
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   490
lemma MOST_inj: "MOST x. P x \<Longrightarrow> inj f \<Longrightarrow> MOST x. P (f x)"
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   491
  unfolding MOST_iff_cofinite
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   492
  apply (drule (1) finite_vimageI)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   493
  apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   494
  done
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   495
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   496
text {* Properties of quantifiers with singletons. *}
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   497
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   498
lemma not_INFM_eq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   499
  "\<not> (INFM x. x = a)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   500
  "\<not> (INFM x. a = x)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   501
  unfolding INFM_iff_infinite by simp_all
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   502
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   503
lemma MOST_neq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   504
  "MOST x. x \<noteq> a"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   505
  "MOST x. a \<noteq> x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   506
  unfolding MOST_iff_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
   507
34112
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   508
lemma INFM_neq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   509
  "(INFM x::'a. x \<noteq> a) \<longleftrightarrow> infinite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   510
  "(INFM x::'a. a \<noteq> x) \<longleftrightarrow> infinite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   511
  unfolding INFM_iff_infinite by simp_all
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   512
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   513
lemma MOST_eq [simp]:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   514
  "(MOST x::'a. x = a) \<longleftrightarrow> finite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   515
  "(MOST x::'a. a = x) \<longleftrightarrow> finite (UNIV::'a set)"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   516
  unfolding MOST_iff_cofinite by simp_all
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   517
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   518
lemma MOST_eq_imp:
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   519
  "MOST x. x = a \<longrightarrow> P x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   520
  "MOST x. a = x \<longrightarrow> P x"
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   521
  unfolding MOST_iff_cofinite by simp_all
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   522
ca842111d698 added lemmas about INFM/MOST
huffman
parents: 30663
diff changeset
   523
text {* Properties of quantifiers over the naturals. *}
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   524
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   525
lemma INFM_nat: "(\<exists>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<forall>m. \<exists>n. m < n \<and> P n)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   526
  by (simp add: Inf_many_def infinite_nat_iff_unbounded)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   527
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   528
lemma INFM_nat_le: "(\<exists>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<forall>m. \<exists>n. m \<le> n \<and> P n)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   529
  by (simp add: Inf_many_def infinite_nat_iff_unbounded_le)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   530
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   531
lemma MOST_nat: "(\<forall>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<exists>m. \<forall>n. m < n \<longrightarrow> P n)"
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   532
  by (simp add: Alm_all_def INFM_nat)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   533
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   534
lemma MOST_nat_le: "(\<forall>\<^sub>\<infinity>n. P (n::nat)) \<longleftrightarrow> (\<exists>m. \<forall>n. m \<le> n \<longrightarrow> P n)"
27407
68e111812b83 rename lemmas INF_foo to INFM_foo; add new lemmas about MOST and INFM
huffman
parents: 27368
diff changeset
   535
  by (simp add: Alm_all_def INFM_nat_le)
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   536
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   537
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   538
subsection "Enumeration of an Infinite Set"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   539
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   540
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   541
  The set's element type must be wellordered (e.g. the natural numbers).
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   542
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   543
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   544
primrec (in wellorder) enumerate :: "'a set \<Rightarrow> nat \<Rightarrow> 'a"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   545
where
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   546
  enumerate_0: "enumerate S 0 = (LEAST n. n \<in> S)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   547
| 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
   548
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   549
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
   550
  by simp
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   551
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   552
lemma enumerate_in_set: "infinite S \<Longrightarrow> enumerate S n : S"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   553
  apply (induct n arbitrary: S)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   554
   apply (fastforce intro: LeastI dest!: infinite_imp_nonempty)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   555
  apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   556
  apply (metis DiffE infinite_remove)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   557
  done
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   558
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   559
declare enumerate_0 [simp del] enumerate_Suc [simp del]
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   560
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   561
lemma enumerate_step: "infinite S \<Longrightarrow> enumerate S n < enumerate S (Suc n)"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   562
  apply (induct n arbitrary: S)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   563
   apply (rule order_le_neq_trans)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   564
    apply (simp add: enumerate_0 Least_le enumerate_in_set)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   565
   apply (simp only: enumerate_Suc')
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   566
   apply (subgoal_tac "enumerate (S - {enumerate S 0}) 0 : S - {enumerate S 0}")
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   567
    apply (blast intro: sym)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   568
   apply (simp add: enumerate_in_set del: Diff_iff)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   569
  apply (simp add: enumerate_Suc')
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   570
  done
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   571
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   572
lemma enumerate_mono: "m<n \<Longrightarrow> infinite S \<Longrightarrow> enumerate S m < enumerate S n"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   573
  apply (erule less_Suc_induct)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   574
  apply (auto intro: enumerate_step)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   575
  done
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   576
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   577
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   578
lemma le_enumerate:
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   579
  assumes S: "infinite S"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   580
  shows "n \<le> enumerate S n"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   581
  using S 
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   582
proof (induct n)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   583
  case 0
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   584
  then show ?case by simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   585
next
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   586
  case (Suc n)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   587
  then have "n \<le> enumerate S n" by simp
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   588
  also note enumerate_mono[of n "Suc n", OF _ `infinite S`]
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   589
  finally show ?case by simp
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   590
qed
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   591
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   592
lemma enumerate_Suc'':
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   593
  fixes S :: "'a::wellorder set"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   594
  assumes "infinite S"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   595
  shows "enumerate S (Suc n) = (LEAST s. s \<in> S \<and> enumerate S n < s)"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   596
  using assms
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   597
proof (induct n arbitrary: S)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   598
  case 0
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   599
  then have "\<forall>s \<in> S. enumerate S 0 \<le> s"
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   600
    by (auto simp: enumerate.simps intro: Least_le)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   601
  then show ?case
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   602
    unfolding enumerate_Suc' enumerate_0[of "S - {enumerate S 0}"]
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   603
    by (intro arg_cong[where f = Least] ext) auto
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   604
next
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   605
  case (Suc n S)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   606
  show ?case
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   607
    using enumerate_mono[OF zero_less_Suc `infinite S`, of n] `infinite S`
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   608
    apply (subst (1 2) enumerate_Suc')
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   609
    apply (subst Suc)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   610
    using `infinite S`
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   611
    apply simp
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   612
    apply (intro arg_cong[where f = Least] ext)
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   613
    apply (auto simp: enumerate_Suc'[symmetric])
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   614
    done
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   615
qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   616
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   617
lemma enumerate_Ex:
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   618
  assumes S: "infinite (S::nat set)"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   619
  shows "s \<in> S \<Longrightarrow> \<exists>n. enumerate S n = s"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   620
proof (induct s rule: less_induct)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   621
  case (less s)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   622
  show ?case
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   623
  proof cases
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   624
    let ?y = "Max {s'\<in>S. s' < s}"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   625
    assume "\<exists>y\<in>S. y < s"
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   626
    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
   627
      by (subst Max_less_iff) auto
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   628
    then have y_in: "?y \<in> {s'\<in>S. s' < s}"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   629
      by (intro Max_in) auto
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   630
    with less.hyps[of ?y] obtain n where "enumerate S n = ?y"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   631
      by auto
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   632
    with S have "enumerate S (Suc n) = s"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   633
      by (auto simp: y less enumerate_Suc'' intro!: Least_equality)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   634
    then show ?case by auto
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   635
  next
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   636
    assume *: "\<not> (\<exists>y\<in>S. y < s)"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   637
    then have "\<forall>t\<in>S. s \<le> t" by auto
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   638
    with `s \<in> S` show ?thesis
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   639
      by (auto intro!: exI[of _ 0] Least_equality simp: enumerate_0)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   640
  qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   641
qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   642
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   643
lemma bij_enumerate:
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   644
  fixes S :: "nat set"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   645
  assumes S: "infinite S"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   646
  shows "bij_betw (enumerate S) UNIV S"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   647
proof -
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   648
  have "\<And>n m. n \<noteq> m \<Longrightarrow> enumerate S n \<noteq> enumerate S m"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   649
    using enumerate_mono[OF _ `infinite S`] by (auto simp: neq_iff)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   650
  then have "inj (enumerate S)"
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   651
    by (auto simp: inj_on_def)
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   652
  moreover have "\<forall>s \<in> S. \<exists>i. enumerate S i = s"
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   653
    using enumerate_Ex[OF S] by auto
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   654
  moreover note `infinite S`
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   655
  ultimately show ?thesis
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   656
    unfolding bij_betw_def by (auto intro: enumerate_in_set)
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   657
qed
13211e07d931 add Countable_Set theory
hoelzl
parents: 46783
diff changeset
   658
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   659
subsection "Miscellaneous"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   660
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   661
text {*
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   662
  A few trivial lemmas about sets that contain at most one element.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   663
  These simplify the reasoning about deterministic automata.
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   664
*}
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   665
53239
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   666
definition atmost_one :: "'a set \<Rightarrow> bool"
2f21813cf2f0 tuned proofs;
wenzelm
parents: 50134
diff changeset
   667
  where "atmost_one S \<longleftrightarrow> (\<forall>x y. x\<in>S \<and> y\<in>S \<longrightarrow> x = y)"
20809
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   668
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   669
lemma atmost_one_empty: "S = {} \<Longrightarrow> atmost_one S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   670
  by (simp add: atmost_one_def)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   671
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   672
lemma atmost_one_singleton: "S = {x} \<Longrightarrow> atmost_one S"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   673
  by (simp add: atmost_one_def)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   674
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   675
lemma atmost_one_unique [elim]: "atmost_one S \<Longrightarrow> x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> y = x"
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   676
  by (simp add: atmost_one_def)
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   677
6c4fd0b4b63a moved theory Infinite_Set to Library;
wenzelm
parents:
diff changeset
   678
end
46783
3e89a5cab8d7 tuned whitespace
haftmann
parents: 44890
diff changeset
   679