src/HOL/Library/Countable.thy
author wenzelm
Fri, 06 Mar 2015 23:57:01 +0100
changeset 59643 f3be9235503d
parent 59621 291934bac95e
child 60029 b2acd5301615
permissions -rw-r--r--
clarified context;
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
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
     3
    Author:     Brian Huffman, Portland State University
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
     4
    Author:     Jasmin Blanchette, TU Muenchen
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     5
*)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     6
58881
b9556a055632 modernized header;
wenzelm
parents: 58372
diff changeset
     7
section {* Encoding (almost) everything into natural numbers *}
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     8
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
     9
theory Countable
58372
bfd497f2f4c2 moved 'old_datatype' out of 'Main' (but put it in 'HOL-Proofs' because of the inductive realizer)
blanchet
parents: 58315
diff changeset
    10
imports Old_Datatype Rat Nat_Bijection
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    11
begin
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    12
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    13
subsection {* The class of countable types *}
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    14
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29511
diff changeset
    15
class countable =
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    16
  assumes ex_inj: "\<exists>to_nat \<Colon> 'a \<Rightarrow> nat. inj to_nat"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    17
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    18
lemma countable_classI:
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    19
  fixes f :: "'a \<Rightarrow> nat"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    20
  assumes "\<And>x y. f x = f y \<Longrightarrow> x = y"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    21
  shows "OFCLASS('a, countable_class)"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    22
proof (intro_classes, rule exI)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    23
  show "inj f"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    24
    by (rule injI [OF assms]) assumption
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    25
qed
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    26
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    27
26585
3bf2ebb7148e fix spelling
huffman
parents: 26580
diff changeset
    28
subsection {* Conversion functions *}
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    29
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    30
definition to_nat :: "'a\<Colon>countable \<Rightarrow> nat" where
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    31
  "to_nat = (SOME f. inj f)"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    32
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    33
definition from_nat :: "nat \<Rightarrow> 'a\<Colon>countable" where
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    34
  "from_nat = inv (to_nat \<Colon> 'a \<Rightarrow> nat)"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    35
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    36
lemma inj_to_nat [simp]: "inj to_nat"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    37
  by (rule exE_some [OF ex_inj]) (simp add: to_nat_def)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    38
43992
c38c65a1bf9c to_nat is injective on arbitrary domains
hoelzl
parents: 43534
diff changeset
    39
lemma inj_on_to_nat[simp, intro]: "inj_on to_nat S"
c38c65a1bf9c to_nat is injective on arbitrary domains
hoelzl
parents: 43534
diff changeset
    40
  using inj_to_nat by (auto simp: inj_on_def)
c38c65a1bf9c to_nat is injective on arbitrary domains
hoelzl
parents: 43534
diff changeset
    41
29910
623c9c20966b add lemma surj_from_nat
huffman
parents: 29880
diff changeset
    42
lemma surj_from_nat [simp]: "surj from_nat"
623c9c20966b add lemma surj_from_nat
huffman
parents: 29880
diff changeset
    43
  unfolding from_nat_def by (simp add: inj_imp_surj_inv)
623c9c20966b add lemma surj_from_nat
huffman
parents: 29880
diff changeset
    44
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    45
lemma to_nat_split [simp]: "to_nat x = to_nat y \<longleftrightarrow> x = y"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    46
  using injD [OF inj_to_nat] by auto
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    47
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    48
lemma from_nat_to_nat [simp]:
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    49
  "from_nat (to_nat x) = x"
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    50
  by (simp add: from_nat_def)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    51
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    52
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
    53
subsection {* Finite types are countable *}
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    54
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    55
subclass (in finite) countable
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 27487
diff changeset
    56
proof
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    57
  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
    58
  with finite_conv_nat_seg_image [of "UNIV::'a set"]
26169
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    59
  obtain n and f :: "nat \<Rightarrow> 'a" 
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    60
    where "UNIV = f ` {i. i < n}" by auto
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    61
  then have "surj f" unfolding surj_def by auto
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    62
  then have "inj (inv f)" by (rule surj_imp_inj_inv)
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    63
  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
    64
qed
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    65
73027318f9ba added theory for countable types
haftmann
parents:
diff changeset
    66
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
    67
subsection {* Automatically proving countability of old-style datatypes *}
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    68
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    69
inductive finite_item :: "'a Old_Datatype.item \<Rightarrow> bool" where
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    70
  undefined: "finite_item undefined"
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    71
| In0: "finite_item x \<Longrightarrow> finite_item (Old_Datatype.In0 x)"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    72
| In1: "finite_item x \<Longrightarrow> finite_item (Old_Datatype.In1 x)"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    73
| Leaf: "finite_item (Old_Datatype.Leaf a)"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    74
| Scons: "\<lbrakk>finite_item x; finite_item y\<rbrakk> \<Longrightarrow> finite_item (Old_Datatype.Scons x y)"
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    75
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    76
function
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    77
  nth_item :: "nat \<Rightarrow> ('a::countable) Old_Datatype.item"
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    78
where
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    79
  "nth_item 0 = undefined"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    80
| "nth_item (Suc n) =
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    81
  (case sum_decode n of
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    82
    Inl i \<Rightarrow>
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    83
    (case sum_decode i of
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    84
      Inl j \<Rightarrow> Old_Datatype.In0 (nth_item j)
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    85
    | Inr j \<Rightarrow> Old_Datatype.In1 (nth_item j))
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    86
  | Inr i \<Rightarrow>
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    87
    (case sum_decode i of
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    88
      Inl j \<Rightarrow> Old_Datatype.Leaf (from_nat j)
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    89
    | Inr j \<Rightarrow>
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    90
      (case prod_decode j of
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
    91
        (a, b) \<Rightarrow> Old_Datatype.Scons (nth_item a) (nth_item b))))"
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    92
by pat_completeness auto
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    93
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    94
lemma le_sum_encode_Inl: "x \<le> y \<Longrightarrow> x \<le> sum_encode (Inl y)"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    95
unfolding sum_encode_def by simp
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    96
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    97
lemma le_sum_encode_Inr: "x \<le> y \<Longrightarrow> x \<le> sum_encode (Inr y)"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    98
unfolding sum_encode_def by simp
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
    99
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   100
termination
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   101
by (relation "measure id")
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   102
  (auto simp add: sum_encode_eq [symmetric] prod_encode_eq [symmetric]
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   103
    le_imp_less_Suc le_sum_encode_Inl le_sum_encode_Inr
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   104
    le_prod_encode_1 le_prod_encode_2)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   105
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   106
lemma nth_item_covers: "finite_item x \<Longrightarrow> \<exists>n. nth_item n = x"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   107
proof (induct set: finite_item)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   108
  case undefined
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   109
  have "nth_item 0 = undefined" by simp
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   110
  thus ?case ..
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   111
next
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   112
  case (In0 x)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   113
  then obtain n where "nth_item n = x" by fast
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   114
  hence "nth_item (Suc (sum_encode (Inl (sum_encode (Inl n))))) = Old_Datatype.In0 x" by simp
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   115
  thus ?case ..
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   116
next
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   117
  case (In1 x)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   118
  then obtain n where "nth_item n = x" by fast
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   119
  hence "nth_item (Suc (sum_encode (Inl (sum_encode (Inr n))))) = Old_Datatype.In1 x" by simp
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   120
  thus ?case ..
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   121
next
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   122
  case (Leaf a)
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   123
  have "nth_item (Suc (sum_encode (Inr (sum_encode (Inl (to_nat a)))))) = Old_Datatype.Leaf a"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   124
    by simp
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   125
  thus ?case ..
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   126
next
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   127
  case (Scons x y)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   128
  then obtain i j where "nth_item i = x" and "nth_item j = y" by fast
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   129
  hence "nth_item
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   130
    (Suc (sum_encode (Inr (sum_encode (Inr (prod_encode (i, j))))))) = Old_Datatype.Scons x y"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   131
    by simp
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   132
  thus ?case ..
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   133
qed
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   134
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   135
theorem countable_datatype:
58112
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   136
  fixes Rep :: "'b \<Rightarrow> ('a::countable) Old_Datatype.item"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   137
  fixes Abs :: "('a::countable) Old_Datatype.item \<Rightarrow> 'b"
8081087096ad renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
blanchet
parents: 57437
diff changeset
   138
  fixes rep_set :: "('a::countable) Old_Datatype.item \<Rightarrow> bool"
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   139
  assumes type: "type_definition Rep Abs (Collect rep_set)"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   140
  assumes finite_item: "\<And>x. rep_set x \<Longrightarrow> finite_item x"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   141
  shows "OFCLASS('b, countable_class)"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   142
proof
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   143
  def f \<equiv> "\<lambda>y. LEAST n. nth_item n = Rep y"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   144
  {
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   145
    fix y :: 'b
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   146
    have "rep_set (Rep y)"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   147
      using type_definition.Rep [OF type] by simp
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   148
    hence "finite_item (Rep y)"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   149
      by (rule finite_item)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   150
    hence "\<exists>n. nth_item n = Rep y"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   151
      by (rule nth_item_covers)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   152
    hence "nth_item (f y) = Rep y"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   153
      unfolding f_def by (rule LeastI_ex)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   154
    hence "Abs (nth_item (f y)) = y"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   155
      using type_definition.Rep_inverse [OF type] by simp
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   156
  }
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   157
  hence "inj f"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   158
    by (rule inj_on_inverseI)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   159
  thus "\<exists>f::'b \<Rightarrow> nat. inj f"
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   160
    by - (rule exI)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   161
qed
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   162
47432
e1576d13e933 more standard method setup;
wenzelm
parents: 46998
diff changeset
   163
ML {*
58161
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   164
  fun old_countable_datatype_tac ctxt =
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   165
    SUBGOAL (fn (goal, _) =>
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   166
      let
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   167
        val ty_name =
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   168
          (case goal of
56243
2e10a36b8d46 more qualified names;
wenzelm
parents: 55413
diff changeset
   169
            (_ $ Const (@{const_name Pure.type}, Type (@{type_name itself}, [Type (n, _)]))) => n
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   170
          | _ => raise Match)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   171
        val typedef_info = hd (Typedef.get_info ctxt ty_name)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   172
        val typedef_thm = #type_definition (snd typedef_info)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   173
        val pred_name =
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59498
diff changeset
   174
          (case HOLogic.dest_Trueprop (Thm.concl_of typedef_thm) of
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   175
            (_ $ _ $ _ $ (_ $ Const (n, _))) => n
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   176
          | _ => raise Match)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   177
        val induct_info = Inductive.the_inductive ctxt pred_name
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   178
        val pred_names = #names (fst induct_info)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   179
        val induct_thms = #inducts (snd induct_info)
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   180
        val alist = pred_names ~~ induct_thms
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   181
        val induct_thm = the (AList.lookup (op =) alist pred_name)
49187
6096da55d2d6 countable_datatype method: pre-instantiate induction rule to avoid failure with e.g. datatype a = A "b list" and b = B "a"
huffman
parents: 47432
diff changeset
   182
        val vars = rev (Term.add_vars (Thm.prop_of induct_thm) [])
59643
f3be9235503d clarified context;
wenzelm
parents: 59621
diff changeset
   183
        val insts = vars |> map (fn (_, T) => try (Thm.cterm_of ctxt)
49187
6096da55d2d6 countable_datatype method: pre-instantiate induction rule to avoid failure with e.g. datatype a = A "b list" and b = B "a"
huffman
parents: 47432
diff changeset
   184
          (Const (@{const_name Countable.finite_item}, T)))
6096da55d2d6 countable_datatype method: pre-instantiate induction rule to avoid failure with e.g. datatype a = A "b list" and b = B "a"
huffman
parents: 47432
diff changeset
   185
        val induct_thm' = Drule.instantiate' [] insts induct_thm
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   186
        val rules = @{thms finite_item.intros}
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   187
      in
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   188
        SOLVED' (fn i => EVERY
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   189
          [rtac @{thm countable_datatype} i,
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   190
           rtac typedef_thm i,
49187
6096da55d2d6 countable_datatype method: pre-instantiate induction rule to avoid failure with e.g. datatype a = A "b list" and b = B "a"
huffman
parents: 47432
diff changeset
   191
           etac induct_thm' i,
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 58881
diff changeset
   192
           REPEAT (resolve_tac ctxt rules i ORELSE atac i)]) 1
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   193
      end)
47432
e1576d13e933 more standard method setup;
wenzelm
parents: 46998
diff changeset
   194
*}
e1576d13e933 more standard method setup;
wenzelm
parents: 46998
diff changeset
   195
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   196
hide_const (open) finite_item nth_item
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   197
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   198
58315
6d8458bc6e27 tuning terminology
blanchet
parents: 58221
diff changeset
   199
subsection {* Automatically proving countability of datatypes *}
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   200
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   201
ML_file "bnf_lfp_countable.ML"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   202
58161
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   203
ML {*
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   204
fun countable_datatype_tac ctxt st =
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   205
  HEADGOAL (old_countable_datatype_tac ctxt) st
58164
c54510cfe933 more robust exception handling
blanchet
parents: 58161
diff changeset
   206
  handle exn =>
c54510cfe933 more robust exception handling
blanchet
parents: 58161
diff changeset
   207
    if Exn.is_interrupt exn then reraise exn else BNF_LFP_Countable.countable_datatype_tac ctxt st;
58161
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   208
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   209
(* compatibility *)
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   210
fun countable_tac ctxt =
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   211
  SELECT_GOAL (countable_datatype_tac ctxt);
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   212
*}
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   213
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   214
method_setup countable_datatype = {*
58161
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   215
  Scan.succeed (SIMPLE_METHOD o countable_datatype_tac)
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   216
*} "prove countable class instances for datatypes"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   217
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   218
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   219
subsection {* More Countable types *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   220
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   221
text {* Naturals *}
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   222
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   223
instance nat :: countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   224
  by (rule countable_classI [of "id"]) simp
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   225
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   226
text {* Pairs *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   227
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   228
instance prod :: (countable, countable) countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   229
  by (rule countable_classI [of "\<lambda>(x, y). prod_encode (to_nat x, to_nat y)"])
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   230
    (auto simp add: prod_encode_eq)
58158
d2cb7cbb3aaa registered 'typerep' as countable again
blanchet
parents: 58155
diff changeset
   231
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   232
text {* Sums *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   233
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   234
instance sum :: (countable, countable) countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   235
  by (rule countable_classI [of "(\<lambda>x. case x of Inl a \<Rightarrow> to_nat (False, to_nat a)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   236
                                     | Inr b \<Rightarrow> to_nat (True, to_nat b))"])
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   237
    (simp split: sum.split_asm)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   238
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   239
text {* Integers *}
58158
d2cb7cbb3aaa registered 'typerep' as countable again
blanchet
parents: 58155
diff changeset
   240
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   241
instance int :: countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   242
  by (rule countable_classI [of int_encode]) (simp add: int_encode_eq)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   243
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   244
text {* Options *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   245
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   246
instance option :: (countable) countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   247
  by countable_datatype
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   248
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   249
text {* Lists *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   250
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   251
instance list :: (countable) countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   252
  by countable_datatype
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   253
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   254
text {* String literals *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   255
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   256
instance String.literal :: countable
58221
5451c61ee186 compile
blanchet
parents: 58164
diff changeset
   257
  by (rule countable_classI [of "to_nat \<circ> String.explode"]) (auto simp add: explode_inject)
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   258
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   259
text {* Functions *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   260
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   261
instance "fun" :: (finite, countable) countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   262
proof
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   263
  obtain xs :: "'a list" where xs: "set xs = UNIV"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   264
    using finite_list [OF finite_UNIV] ..
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   265
  show "\<exists>to_nat::('a \<Rightarrow> 'b) \<Rightarrow> nat. inj to_nat"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   266
  proof
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   267
    show "inj (\<lambda>f. to_nat (map f xs))"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   268
      by (rule injI, simp add: xs fun_eq_iff)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   269
  qed
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   270
qed
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   271
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   272
text {* Typereps *}
58158
d2cb7cbb3aaa registered 'typerep' as countable again
blanchet
parents: 58155
diff changeset
   273
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   274
instance typerep :: countable
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   275
  by countable_datatype
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   276
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   277
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   278
subsection {* The rationals are countably infinite *}
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   279
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   280
definition nat_to_rat_surj :: "nat \<Rightarrow> rat" where
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   281
  "nat_to_rat_surj n = (let (a, b) = prod_decode n in Fract (int_decode a) (int_decode b))"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   282
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   283
lemma surj_nat_to_rat_surj: "surj nat_to_rat_surj"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   284
unfolding surj_def
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   285
proof
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   286
  fix r::rat
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   287
  show "\<exists>n. r = nat_to_rat_surj n"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   288
  proof (cases r)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   289
    fix i j assume [simp]: "r = Fract i j" and "j > 0"
58161
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   290
    have "r = (let m = int_encode i; n = int_encode j in nat_to_rat_surj (prod_encode (m, n)))"
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   291
      by (simp add: Let_def nat_to_rat_surj_def)
58161
deeff89d5b9e added compatibility function
blanchet
parents: 58160
diff changeset
   292
    thus "\<exists>n. r = nat_to_rat_surj n" by(auto simp: Let_def)
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   293
  qed
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   294
qed
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   295
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   296
lemma Rats_eq_range_nat_to_rat_surj: "\<rat> = range nat_to_rat_surj"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   297
  by (simp add: Rats_def surj_nat_to_rat_surj)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   298
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   299
context field_char_0
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   300
begin
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   301
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   302
lemma Rats_eq_range_of_rat_o_nat_to_rat_surj:
58221
5451c61ee186 compile
blanchet
parents: 58164
diff changeset
   303
  "\<rat> = range (of_rat \<circ> nat_to_rat_surj)"
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   304
  using surj_nat_to_rat_surj
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   305
  by (auto simp: Rats_def image_def surj_def) (blast intro: arg_cong[where f = of_rat])
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   306
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   307
lemma surj_of_rat_nat_to_rat_surj:
58221
5451c61ee186 compile
blanchet
parents: 58164
diff changeset
   308
  "r \<in> \<rat> \<Longrightarrow> \<exists>n. r = of_rat (nat_to_rat_surj n)"
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   309
  by (simp add: Rats_eq_range_of_rat_o_nat_to_rat_surj image_def)
43534
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   310
15df7bc8e93f add countable_datatype method for proving countable class instances
huffman
parents: 40702
diff changeset
   311
end
58160
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   312
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   313
instance rat :: countable
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   314
proof
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   315
  show "\<exists>to_nat::rat \<Rightarrow> nat. inj to_nat"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   316
  proof
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   317
    have "surj nat_to_rat_surj"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   318
      by (rule surj_nat_to_rat_surj)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   319
    then show "inj (inv nat_to_rat_surj)"
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   320
      by (rule surj_imp_inj_inv)
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   321
  qed
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   322
qed
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   323
e4965b677ba9 added countable tactic for new-style datatypes
blanchet
parents: 58158
diff changeset
   324
end