src/HOL/Library/Countable.thy
author haftmann
Sun, 11 Apr 2010 16:51:06 +0200
changeset 36111 5844017e31f8
parent 35700 951974ce903e
child 37388 793618618f78
permissions -rw-r--r--
implementation of mappings by rbts
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Library/Countable.thy
26350
a170a190c5d3 adjusted authorship
haftmann
parents: 26243
diff changeset
     2
    Author:     Alexander Krauss, TU Muenchen
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     3
*)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     4
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     5
header {* Encoding (almost) everything into natural numbers *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     6
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     7
theory Countable
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
     8
imports Main Rat Nat_Bijection
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     9
begin
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    10
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    11
subsection {* The class of countable types *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    12
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29511
diff changeset
    13
class countable =
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    14
  assumes ex_inj: "\<exists>to_nat \<Colon> 'a \<Rightarrow> nat. inj to_nat"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    15
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    16
lemma countable_classI:
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    17
  fixes f :: "'a \<Rightarrow> nat"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    18
  assumes "\<And>x y. f x = f y \<Longrightarrow> x = y"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    19
  shows "OFCLASS('a, countable_class)"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    20
proof (intro_classes, rule exI)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    21
  show "inj f"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    22
    by (rule injI [OF assms]) assumption
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    23
qed
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    24
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    25
26585
3bf2ebb7148e fix spelling
huffman
parents: 26580
diff changeset
    26
subsection {* Conversion functions *}
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    27
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    28
definition to_nat :: "'a\<Colon>countable \<Rightarrow> nat" where
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    29
  "to_nat = (SOME f. inj f)"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    30
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    31
definition from_nat :: "nat \<Rightarrow> 'a\<Colon>countable" where
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    32
  "from_nat = inv (to_nat \<Colon> 'a \<Rightarrow> nat)"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    33
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    34
lemma inj_to_nat [simp]: "inj to_nat"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    35
  by (rule exE_some [OF ex_inj]) (simp add: to_nat_def)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    36
29910
623c9c20966b add lemma surj_from_nat
huffman
parents: 29880
diff changeset
    37
lemma surj_from_nat [simp]: "surj from_nat"
623c9c20966b add lemma surj_from_nat
huffman
parents: 29880
diff changeset
    38
  unfolding from_nat_def by (simp add: inj_imp_surj_inv)
623c9c20966b add lemma surj_from_nat
huffman
parents: 29880
diff changeset
    39
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    40
lemma to_nat_split [simp]: "to_nat x = to_nat y \<longleftrightarrow> x = y"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    41
  using injD [OF inj_to_nat] by auto
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    42
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    43
lemma from_nat_to_nat [simp]:
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    44
  "from_nat (to_nat x) = x"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    45
  by (simp add: from_nat_def)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    46
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    47
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    48
subsection {* Countable types *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    49
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    50
instance nat :: countable
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    51
  by (rule countable_classI [of "id"]) simp
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    52
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    53
subclass (in finite) countable
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 27487
diff changeset
    54
proof
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    55
  have "finite (UNIV\<Colon>'a set)" by (rule finite_UNIV)
31992
f8aed98faae7 More about gcd/lcm, and some cleaning up
nipkow
parents: 30663
diff changeset
    56
  with finite_conv_nat_seg_image [of "UNIV::'a set"]
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    57
  obtain n and f :: "nat \<Rightarrow> 'a" 
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    58
    where "UNIV = f ` {i. i < n}" by auto
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    59
  then have "surj f" unfolding surj_def by auto
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    60
  then have "inj (inv f)" by (rule surj_imp_inj_inv)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    61
  then show "\<exists>to_nat \<Colon> 'a \<Rightarrow> nat. inj to_nat" by (rule exI[of inj])
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    62
qed
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    63
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    64
text {* Pairs *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    65
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    66
instance "*" :: (countable, countable) countable
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    67
  by (rule countable_classI [of "\<lambda>(x, y). prod_encode (to_nat x, to_nat y)"])
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    68
    (auto simp add: prod_encode_eq)
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    69
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    70
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    71
text {* Sums *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    72
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    73
instance "+":: (countable, countable) countable
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    74
  by (rule countable_classI [of "(\<lambda>x. case x of Inl a \<Rightarrow> to_nat (False, to_nat a)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    75
                                     | Inr b \<Rightarrow> to_nat (True, to_nat b))"])
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    76
    (simp split: sum.split_asm)
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    77
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    78
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    79
text {* Integers *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    80
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    81
instance int :: countable
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    82
  by (rule countable_classI [of "int_encode"])
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    83
    (simp add: int_encode_eq)
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    84
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    85
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    86
text {* Options *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    87
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    88
instance option :: (countable) countable
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    89
  by (rule countable_classI [of "option_case 0 (Suc \<circ> to_nat)"])
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    90
    (simp split: option.split_asm)
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    91
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    92
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    93
text {* Lists *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    94
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    95
instance list :: (countable) countable
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    96
  by (rule countable_classI [of "list_encode \<circ> map to_nat"])
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
    97
    (simp add: list_encode_eq)
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    98
26243
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
    99
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   100
text {* Functions *}
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   101
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   102
instance "fun" :: (finite, countable) countable
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   103
proof
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   104
  obtain xs :: "'a list" where xs: "set xs = UNIV"
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   105
    using finite_list [OF finite_UNIV] ..
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   106
  show "\<exists>to_nat::('a \<Rightarrow> 'b) \<Rightarrow> nat. inj to_nat"
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   107
  proof
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   108
    show "inj (\<lambda>f. to_nat (map f xs))"
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   109
      by (rule injI, simp add: xs expand_fun_eq)
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   110
  qed
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   111
qed
69592314f977 instance fun :: (finite, countable) countable
huffman
parents: 26169
diff changeset
   112
29880
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   113
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   114
subsection {* The Rationals are Countably Infinite *}
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   115
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   116
definition nat_to_rat_surj :: "nat \<Rightarrow> rat" where
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
   117
"nat_to_rat_surj n = (let (a,b) = prod_decode n
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
   118
                      in Fract (int_decode a) (int_decode b))"
29880
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   119
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   120
lemma surj_nat_to_rat_surj: "surj nat_to_rat_surj"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   121
unfolding surj_def
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   122
proof
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   123
  fix r::rat
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   124
  show "\<exists>n. r = nat_to_rat_surj n"
35374
af1c8c15340e adjusted to cs. e4a7947e02b8
haftmann
parents: 33640
diff changeset
   125
  proof (cases r)
af1c8c15340e adjusted to cs. e4a7947e02b8
haftmann
parents: 33640
diff changeset
   126
    fix i j assume [simp]: "r = Fract i j" and "j > 0"
35700
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
   127
    have "r = (let m = int_encode i; n = int_encode j
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
   128
               in nat_to_rat_surj(prod_encode (m,n)))"
951974ce903e new theory Library/Nat_Bijection.thy
huffman
parents: 35374
diff changeset
   129
      by (simp add: Let_def nat_to_rat_surj_def)
29880
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   130
    thus "\<exists>n. r = nat_to_rat_surj n" by(auto simp:Let_def)
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   131
  qed
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   132
qed
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   133
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   134
lemma Rats_eq_range_nat_to_rat_surj: "\<rat> = range nat_to_rat_surj"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   135
by (simp add: Rats_def surj_nat_to_rat_surj surj_range)
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   136
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   137
context field_char_0
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   138
begin
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   139
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   140
lemma Rats_eq_range_of_rat_o_nat_to_rat_surj:
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   141
  "\<rat> = range (of_rat o nat_to_rat_surj)"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   142
using surj_nat_to_rat_surj
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   143
by (auto simp: Rats_def image_def surj_def)
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   144
   (blast intro: arg_cong[where f = of_rat])
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   145
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   146
lemma surj_of_rat_nat_to_rat_surj:
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   147
  "r\<in>\<rat> \<Longrightarrow> \<exists>n. r = of_rat(nat_to_rat_surj n)"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   148
by(simp add: Rats_eq_range_of_rat_o_nat_to_rat_surj image_def)
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   149
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
   150
end
29880
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   151
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   152
instance rat :: countable
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   153
proof
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   154
  show "\<exists>to_nat::rat \<Rightarrow> nat. inj to_nat"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   155
  proof
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   156
    have "surj nat_to_rat_surj"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   157
      by (rule surj_nat_to_rat_surj)
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   158
    then show "inj (inv nat_to_rat_surj)"
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   159
      by (rule surj_imp_inj_inv)
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   160
  qed
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   161
qed
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   162
3dee8ff45d3d move countability proof from Rational to Countable; add instance rat :: countable
huffman
parents: 29797
diff changeset
   163
end