src/HOL/Library/Numeral_Type.thy
author nipkow
Tue, 15 Jan 2019 21:31:20 +0100
changeset 69663 41ff40bf1530
parent 69661 a03a63b81f44
child 69666 d51e5e41fafe
permissions -rw-r--r--
moved and renamed class
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29629
5111ce425e7a tuned header
haftmann
parents: 29025
diff changeset
     1
(*  Title:      HOL/Library/Numeral_Type.thy
5111ce425e7a tuned header
haftmann
parents: 29025
diff changeset
     2
    Author:     Brian Huffman
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
     3
*)
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
     4
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
     5
section \<open>Numeral Syntax for Types\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
     6
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
     7
theory Numeral_Type
37653
847e95ca9b0a split off Cardinality from Numeral_Type
haftmann
parents: 36350
diff changeset
     8
imports Cardinality
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
     9
begin
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    10
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
    11
subsection \<open>Numeral Types\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    12
49834
b27bbb021df1 discontinued obsolete typedef (open) syntax;
wenzelm
parents: 48063
diff changeset
    13
typedef num0 = "UNIV :: nat set" ..
b27bbb021df1 discontinued obsolete typedef (open) syntax;
wenzelm
parents: 48063
diff changeset
    14
typedef num1 = "UNIV :: unit set" ..
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    15
49834
b27bbb021df1 discontinued obsolete typedef (open) syntax;
wenzelm
parents: 48063
diff changeset
    16
typedef 'a bit0 = "{0 ..< 2 * int CARD('a::finite)}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    17
proof
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    18
  show "0 \<in> {0 ..< 2 * int CARD('a)}"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    19
    by simp
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    20
qed
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    21
49834
b27bbb021df1 discontinued obsolete typedef (open) syntax;
wenzelm
parents: 48063
diff changeset
    22
typedef 'a bit1 = "{0 ..< 1 + 2 * int CARD('a::finite)}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    23
proof
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    24
  show "0 \<in> {0 ..< 1 + 2 * int CARD('a)}"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    25
    by simp
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    26
qed
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    27
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    28
lemma card_num0 [simp]: "CARD (num0) = 0"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    29
  unfolding type_definition.card [OF type_definition_num0]
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    30
  by simp
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    31
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
    32
lemma infinite_num0: "\<not> finite (UNIV :: num0 set)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
    33
  using card_num0[unfolded card_eq_0_iff]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
    34
  by simp
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
    35
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    36
lemma card_num1 [simp]: "CARD(num1) = 1"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    37
  unfolding type_definition.card [OF type_definition_num1]
48063
f02b4302d5dd remove duplicate lemma card_unit in favor of Finite_Set.card_UNIV_unit
huffman
parents: 47108
diff changeset
    38
  by (simp only: card_UNIV_unit)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    39
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    40
lemma card_bit0 [simp]: "CARD('a bit0) = 2 * CARD('a::finite)"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    41
  unfolding type_definition.card [OF type_definition_bit0]
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    42
  by simp
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    43
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    44
lemma card_bit1 [simp]: "CARD('a bit1) = Suc (2 * CARD('a::finite))"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    45
  unfolding type_definition.card [OF type_definition_bit1]
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    46
  by simp
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    47
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    48
instance num1 :: finite
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    49
proof
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    50
  show "finite (UNIV::num1 set)"
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    51
    unfolding type_definition.univ [OF type_definition_num1]
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    52
    using finite by (rule finite_imageI)
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    53
qed
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    54
69663
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    55
instantiation num1 :: CARD_1
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    56
begin
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    57
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    58
instance
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    59
proof
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    60
  show "CARD(num1) = 1" by auto
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    61
qed
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    62
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    63
end
41ff40bf1530 moved and renamed class
nipkow
parents: 69661
diff changeset
    64
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    65
instance bit0 :: (finite) card2
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    66
proof
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    67
  show "finite (UNIV::'a bit0 set)"
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    68
    unfolding type_definition.univ [OF type_definition_bit0]
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    69
    by simp
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    70
  show "2 \<le> CARD('a bit0)"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    71
    by simp
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    72
qed
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    73
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    74
instance bit1 :: (finite) card2
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    75
proof
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    76
  show "finite (UNIV::'a bit1 set)"
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    77
    unfolding type_definition.univ [OF type_definition_bit1]
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    78
    by simp
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    79
  show "2 \<le> CARD('a bit1)"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    80
    by simp
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    81
qed
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    82
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
    83
subsection \<open>Locales for for modular arithmetic subtypes\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    84
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    85
locale mod_type =
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    86
  fixes n :: int
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
    87
  and Rep :: "'a::{zero,one,plus,times,uminus,minus} \<Rightarrow> int"
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
    88
  and Abs :: "int \<Rightarrow> 'a::{zero,one,plus,times,uminus,minus}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    89
  assumes type: "type_definition Rep Abs {0..<n}"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    90
  and size1: "1 < n"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    91
  and zero_def: "0 = Abs 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    92
  and one_def:  "1 = Abs 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    93
  and add_def:  "x + y = Abs ((Rep x + Rep y) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    94
  and mult_def: "x * y = Abs ((Rep x * Rep y) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    95
  and diff_def: "x - y = Abs ((Rep x - Rep y) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    96
  and minus_def: "- x = Abs ((- Rep x) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    97
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    98
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    99
lemma size0: "0 < n"
35362
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   100
using size1 by simp
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   101
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   102
lemmas definitions =
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
   103
  zero_def one_def add_def mult_def minus_def diff_def
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   104
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   105
lemma Rep_less_n: "Rep x < n"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   106
by (rule type_definition.Rep [OF type, simplified, THEN conjunct2])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   107
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   108
lemma Rep_le_n: "Rep x \<le> n"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   109
by (rule Rep_less_n [THEN order_less_imp_le])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   110
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   111
lemma Rep_inject_sym: "x = y \<longleftrightarrow> Rep x = Rep y"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   112
by (rule type_definition.Rep_inject [OF type, symmetric])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   113
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   114
lemma Rep_inverse: "Abs (Rep x) = x"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   115
by (rule type_definition.Rep_inverse [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   116
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   117
lemma Abs_inverse: "m \<in> {0..<n} \<Longrightarrow> Rep (Abs m) = m"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   118
by (rule type_definition.Abs_inverse [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   119
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   120
lemma Rep_Abs_mod: "Rep (Abs (m mod n)) = m mod n"
33361
1f18de40b43f combined former theories Divides and IntDiv to one theory Divides
haftmann
parents: 33035
diff changeset
   121
by (simp add: Abs_inverse pos_mod_conj [OF size0])
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   122
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   123
lemma Rep_Abs_0: "Rep (Abs 0) = 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   124
by (simp add: Abs_inverse size0)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   125
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   126
lemma Rep_0: "Rep 0 = 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   127
by (simp add: zero_def Rep_Abs_0)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   128
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   129
lemma Rep_Abs_1: "Rep (Abs 1) = 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   130
by (simp add: Abs_inverse size1)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   131
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   132
lemma Rep_1: "Rep 1 = 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   133
by (simp add: one_def Rep_Abs_1)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   134
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   135
lemma Rep_mod: "Rep x mod n = Rep x"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   136
apply (rule_tac x=x in type_definition.Abs_cases [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   137
apply (simp add: type_definition.Abs_inverse [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   138
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   139
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   140
lemmas Rep_simps =
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   141
  Rep_inject_sym Rep_inverse Rep_Abs_mod Rep_mod Rep_Abs_0 Rep_Abs_1
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   142
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   143
lemma comm_ring_1: "OFCLASS('a, comm_ring_1_class)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   144
apply (intro_classes, unfold definitions)
64593
50c715579715 reoriented congruence rules in non-explosive direction
haftmann
parents: 62348
diff changeset
   145
apply (simp_all add: Rep_simps mod_simps field_simps)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   146
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   147
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   148
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   149
46868
6c250adbe101 eliminated old-fashioned 'constrains' element;
wenzelm
parents: 46236
diff changeset
   150
locale mod_ring = mod_type n Rep Abs
6c250adbe101 eliminated old-fashioned 'constrains' element;
wenzelm
parents: 46236
diff changeset
   151
  for n :: int
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   152
  and Rep :: "'a::{comm_ring_1} \<Rightarrow> int"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   153
  and Abs :: "int \<Rightarrow> 'a::{comm_ring_1}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   154
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   155
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   156
lemma of_nat_eq: "of_nat k = Abs (int k mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   157
apply (induct k)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   158
apply (simp add: zero_def)
64593
50c715579715 reoriented congruence rules in non-explosive direction
haftmann
parents: 62348
diff changeset
   159
apply (simp add: Rep_simps add_def one_def mod_simps ac_simps)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   160
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   161
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   162
lemma of_int_eq: "of_int z = Abs (z mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   163
apply (cases z rule: int_diff_cases)
64593
50c715579715 reoriented congruence rules in non-explosive direction
haftmann
parents: 62348
diff changeset
   164
apply (simp add: Rep_simps of_nat_eq diff_def mod_simps)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   165
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   166
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   167
lemma Rep_numeral:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   168
  "Rep (numeral w) = numeral w mod n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   169
using of_int_eq [of "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   170
by (simp add: Rep_inject_sym Rep_Abs_mod)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   171
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   172
lemma iszero_numeral:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   173
  "iszero (numeral w::'a) \<longleftrightarrow> numeral w mod n = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   174
by (simp add: Rep_inject_sym Rep_numeral Rep_0 iszero_def)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   175
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   176
lemma cases:
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   177
  assumes 1: "\<And>z. \<lbrakk>(x::'a) = of_int z; 0 \<le> z; z < n\<rbrakk> \<Longrightarrow> P"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   178
  shows "P"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   179
apply (cases x rule: type_definition.Abs_cases [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   180
apply (rule_tac z="y" in 1)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   181
apply (simp_all add: of_int_eq)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   182
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   183
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   184
lemma induct:
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   185
  "(\<And>z. \<lbrakk>0 \<le> z; z < n\<rbrakk> \<Longrightarrow> P (of_int z)) \<Longrightarrow> P (x::'a)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   186
by (cases x rule: cases) simp
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   187
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   188
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   189
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   190
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   191
subsection \<open>Ring class instances\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   192
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   193
text \<open>
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 60679
diff changeset
   194
  Unfortunately \<open>ring_1\<close> instance is not possible for
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   195
  \<^typ>\<open>num1\<close>, since 0 and 1 are not distinct.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   196
\<close>
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   197
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   198
instantiation num1 :: "{comm_ring,comm_monoid_mult,numeral}"
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   199
begin
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   200
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   201
lemma num1_eq_iff: "(x::num1) = (y::num1) \<longleftrightarrow> True"
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   202
  by (induct x, induct y) simp
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   203
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 60500
diff changeset
   204
instance
ade12ef2773c tuned proofs;
wenzelm
parents: 60500
diff changeset
   205
  by standard (simp_all add: num1_eq_iff)
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   206
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   207
end
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   208
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   209
instantiation
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
   210
  bit0 and bit1 :: (finite) "{zero,one,plus,times,uminus,minus}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   211
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   212
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   213
definition Abs_bit0' :: "int \<Rightarrow> 'a bit0" where
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   214
  "Abs_bit0' x = Abs_bit0 (x mod int CARD('a bit0))"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   215
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   216
definition Abs_bit1' :: "int \<Rightarrow> 'a bit1" where
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   217
  "Abs_bit1' x = Abs_bit1 (x mod int CARD('a bit1))"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   218
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   219
definition "0 = Abs_bit0 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   220
definition "1 = Abs_bit0 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   221
definition "x + y = Abs_bit0' (Rep_bit0 x + Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   222
definition "x * y = Abs_bit0' (Rep_bit0 x * Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   223
definition "x - y = Abs_bit0' (Rep_bit0 x - Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   224
definition "- x = Abs_bit0' (- Rep_bit0 x)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   225
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   226
definition "0 = Abs_bit1 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   227
definition "1 = Abs_bit1 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   228
definition "x + y = Abs_bit1' (Rep_bit1 x + Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   229
definition "x * y = Abs_bit1' (Rep_bit1 x * Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   230
definition "x - y = Abs_bit1' (Rep_bit1 x - Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   231
definition "- x = Abs_bit1' (- Rep_bit1 x)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   232
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   233
instance ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   234
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   235
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   236
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   237
interpretation bit0:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   238
  mod_type "int CARD('a::finite bit0)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   239
           "Rep_bit0 :: 'a::finite bit0 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   240
           "Abs_bit0 :: int \<Rightarrow> 'a::finite bit0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   241
apply (rule mod_type.intro)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   242
apply (simp add: type_definition_bit0)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
   243
apply (rule one_less_int_card)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   244
apply (rule zero_bit0_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   245
apply (rule one_bit0_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   246
apply (rule plus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   247
apply (rule times_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   248
apply (rule minus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   249
apply (rule uminus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   250
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   251
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   252
interpretation bit1:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   253
  mod_type "int CARD('a::finite bit1)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   254
           "Rep_bit1 :: 'a::finite bit1 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   255
           "Abs_bit1 :: int \<Rightarrow> 'a::finite bit1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   256
apply (rule mod_type.intro)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   257
apply (simp add: type_definition_bit1)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
   258
apply (rule one_less_int_card)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   259
apply (rule zero_bit1_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   260
apply (rule one_bit1_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   261
apply (rule plus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   262
apply (rule times_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   263
apply (rule minus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   264
apply (rule uminus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   265
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   266
31021
53642251a04f farewell to class recpower
haftmann
parents: 30960
diff changeset
   267
instance bit0 :: (finite) comm_ring_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   268
  by (rule bit0.comm_ring_1)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   269
31021
53642251a04f farewell to class recpower
haftmann
parents: 30960
diff changeset
   270
instance bit1 :: (finite) comm_ring_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   271
  by (rule bit1.comm_ring_1)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   272
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   273
interpretation bit0:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   274
  mod_ring "int CARD('a::finite bit0)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   275
           "Rep_bit0 :: 'a::finite bit0 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   276
           "Abs_bit0 :: int \<Rightarrow> 'a::finite bit0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   277
  ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   278
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   279
interpretation bit1:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   280
  mod_ring "int CARD('a::finite bit1)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   281
           "Rep_bit1 :: 'a::finite bit1 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   282
           "Abs_bit1 :: int \<Rightarrow> 'a::finite bit1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   283
  ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   284
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   285
text \<open>Set up cases, induction, and arithmetic\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   286
29999
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   287
lemmas bit0_cases [case_names of_int, cases type: bit0] = bit0.cases
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   288
lemmas bit1_cases [case_names of_int, cases type: bit1] = bit1.cases
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   289
29999
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   290
lemmas bit0_induct [case_names of_int, induct type: bit0] = bit0.induct
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   291
lemmas bit1_induct [case_names of_int, induct type: bit1] = bit1.induct
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   292
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   293
lemmas bit0_iszero_numeral [simp] = bit0.iszero_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   294
lemmas bit1_iszero_numeral [simp] = bit1.iszero_numeral
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   295
55142
378ae9e46175 prefer explicit 'for' context;
wenzelm
parents: 52147
diff changeset
   296
lemmas [simp] = eq_numeral_iff_iszero [where 'a="'a bit0"] for dummy :: "'a::finite"
378ae9e46175 prefer explicit 'for' context;
wenzelm
parents: 52147
diff changeset
   297
lemmas [simp] = eq_numeral_iff_iszero [where 'a="'a bit1"] for dummy :: "'a::finite"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   298
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   299
subsection \<open>Order instances\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   300
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   301
instantiation bit0 and bit1 :: (finite) linorder begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   302
definition "a < b \<longleftrightarrow> Rep_bit0 a < Rep_bit0 b"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   303
definition "a \<le> b \<longleftrightarrow> Rep_bit0 a \<le> Rep_bit0 b"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   304
definition "a < b \<longleftrightarrow> Rep_bit1 a < Rep_bit1 b"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   305
definition "a \<le> b \<longleftrightarrow> Rep_bit1 a \<le> Rep_bit1 b"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   306
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   307
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   308
  by(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   309
    (auto simp add: less_eq_bit0_def less_bit0_def less_eq_bit1_def less_bit1_def Rep_bit0_inject Rep_bit1_inject)
51288
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   310
end
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   311
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67236
diff changeset
   312
lemma (in preorder) tranclp_less: "(<) \<^sup>+\<^sup>+ = (<)"
51288
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   313
by(auto simp add: fun_eq_iff intro: less_trans elim: tranclp.induct)
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   314
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   315
instance bit0 and bit1 :: (finite) wellorder
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   316
proof -
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   317
  have "wf {(x :: 'a bit0, y). x < y}"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   318
    by(auto simp add: trancl_def tranclp_less intro!: finite_acyclic_wf acyclicI)
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   319
  thus "OFCLASS('a bit0, wellorder_class)"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   320
    by(rule wf_wellorderI) intro_classes
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   321
next
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   322
  have "wf {(x :: 'a bit1, y). x < y}"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   323
    by(auto simp add: trancl_def tranclp_less intro!: finite_acyclic_wf acyclicI)
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   324
  thus "OFCLASS('a bit1, wellorder_class)"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   325
    by(rule wf_wellorderI) intro_classes
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   326
qed
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   327
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   328
subsection \<open>Code setup and type classes for code generation\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   329
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   330
text \<open>Code setup for \<^typ>\<open>num0\<close> and \<^typ>\<open>num1\<close>\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   331
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   332
definition Num0 :: num0 where "Num0 = Abs_num0 0"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   333
code_datatype Num0
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   334
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   335
instantiation num0 :: equal begin
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   336
definition equal_num0 :: "num0 \<Rightarrow> num0 \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67236
diff changeset
   337
  where "equal_num0 = (=)"
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   338
instance by intro_classes (simp add: equal_num0_def)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   339
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   340
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   341
lemma equal_num0_code [code]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   342
  "equal_class.equal Num0 Num0 = True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   343
by(rule equal_refl)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   344
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   345
code_datatype "1 :: num1"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   346
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   347
instantiation num1 :: equal begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   348
definition equal_num1 :: "num1 \<Rightarrow> num1 \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67236
diff changeset
   349
  where "equal_num1 = (=)"
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   350
instance by intro_classes (simp add: equal_num1_def)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   351
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   352
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   353
lemma equal_num1_code [code]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   354
  "equal_class.equal (1 :: num1) 1 = True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   355
by(rule equal_refl)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   356
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   357
instantiation num1 :: enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   358
definition "enum_class.enum = [1 :: num1]"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   359
definition "enum_class.enum_all P = P (1 :: num1)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   360
definition "enum_class.enum_ex P = P (1 :: num1)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   361
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   362
  by intro_classes
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   363
     (auto simp add: enum_num1_def enum_all_num1_def enum_ex_num1_def num1_eq_iff Ball_def,
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   364
      (metis (full_types) num1_eq_iff)+)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   365
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   366
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   367
instantiation num0 and num1 :: card_UNIV begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   368
definition "finite_UNIV = Phantom(num0) False"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   369
definition "card_UNIV = Phantom(num0) 0"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   370
definition "finite_UNIV = Phantom(num1) True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   371
definition "card_UNIV = Phantom(num1) 1"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   372
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   373
  by intro_classes
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   374
     (simp_all add: finite_UNIV_num0_def card_UNIV_num0_def infinite_num0 finite_UNIV_num1_def card_UNIV_num1_def)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   375
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   376
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   377
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   378
text \<open>Code setup for \<^typ>\<open>'a bit0\<close> and \<^typ>\<open>'a bit1\<close>\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   379
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   380
declare
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   381
  bit0.Rep_inverse[code abstype]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   382
  bit0.Rep_0[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   383
  bit0.Rep_1[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   384
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   385
lemma Abs_bit0'_code [code abstract]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   386
  "Rep_bit0 (Abs_bit0' x :: 'a :: finite bit0) = x mod int (CARD('a bit0))"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   387
by(auto simp add: Abs_bit0'_def intro!: Abs_bit0_inverse)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   388
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   389
lemma inj_on_Abs_bit0:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   390
  "inj_on (Abs_bit0 :: int \<Rightarrow> 'a bit0) {0..<2 * int CARD('a :: finite)}"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   391
by(auto intro: inj_onI simp add: Abs_bit0_inject)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   392
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   393
declare
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   394
  bit1.Rep_inverse[code abstype]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   395
  bit1.Rep_0[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   396
  bit1.Rep_1[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   397
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   398
lemma Abs_bit1'_code [code abstract]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   399
  "Rep_bit1 (Abs_bit1' x :: 'a :: finite bit1) = x mod int (CARD('a bit1))"
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61585
diff changeset
   400
  by(auto simp add: Abs_bit1'_def intro!: Abs_bit1_inverse)
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   401
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   402
lemma inj_on_Abs_bit1:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   403
  "inj_on (Abs_bit1 :: int \<Rightarrow> 'a bit1) {0..<1 + 2 * int CARD('a :: finite)}"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   404
by(auto intro: inj_onI simp add: Abs_bit1_inject)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   405
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   406
instantiation bit0 and bit1 :: (finite) equal begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   407
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   408
definition "equal_class.equal x y \<longleftrightarrow> Rep_bit0 x = Rep_bit0 y"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   409
definition "equal_class.equal x y \<longleftrightarrow> Rep_bit1 x = Rep_bit1 y"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   410
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   411
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   412
  by intro_classes (simp_all add: equal_bit0_def equal_bit1_def Rep_bit0_inject Rep_bit1_inject)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   413
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   414
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   415
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   416
instantiation bit0 :: (finite) enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   417
definition "(enum_class.enum :: 'a bit0 list) = map (Abs_bit0' \<circ> int) (upt 0 (CARD('a bit0)))"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   418
definition "enum_class.enum_all P = (\<forall>b :: 'a bit0 \<in> set enum_class.enum. P b)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   419
definition "enum_class.enum_ex P = (\<exists>b :: 'a bit0 \<in> set enum_class.enum. P b)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   420
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   421
instance proof
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   422
  show "distinct (enum_class.enum :: 'a bit0 list)"
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   423
    by (simp add: enum_bit0_def distinct_map inj_on_def Abs_bit0'_def Abs_bit0_inject)
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   424
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   425
  let ?Abs = "Abs_bit0 :: _ \<Rightarrow> 'a bit0"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   426
  interpret type_definition Rep_bit0 ?Abs "{0..<2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   427
    by (fact type_definition_bit0)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   428
  have "UNIV = ?Abs ` {0..<2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   429
    by (simp add: Abs_image)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   430
  also have "\<dots> = ?Abs ` (int ` {0..<2 * CARD('a)})"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   431
    by (simp add: image_int_atLeastLessThan)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   432
  also have "\<dots> = (?Abs \<circ> int) ` {0..<2 * CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   433
    by (simp add: image_image cong: image_cong)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   434
  also have "\<dots> = set enum_class.enum"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   435
    by (simp add: enum_bit0_def Abs_bit0'_def cong: image_cong_simp)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   436
  finally show univ_eq: "(UNIV :: 'a bit0 set) = set enum_class.enum" .
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   437
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   438
  fix P :: "'a bit0 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   439
  show "enum_class.enum_all P = Ball UNIV P"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   440
    and "enum_class.enum_ex P = Bex UNIV P"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   441
    by(simp_all add: enum_all_bit0_def enum_ex_bit0_def univ_eq)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   442
qed
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   443
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   444
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   445
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   446
instantiation bit1 :: (finite) enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   447
definition "(enum_class.enum :: 'a bit1 list) = map (Abs_bit1' \<circ> int) (upt 0 (CARD('a bit1)))"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   448
definition "enum_class.enum_all P = (\<forall>b :: 'a bit1 \<in> set enum_class.enum. P b)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   449
definition "enum_class.enum_ex P = (\<exists>b :: 'a bit1 \<in> set enum_class.enum. P b)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   450
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   451
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   452
proof(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   453
  show "distinct (enum_class.enum :: 'a bit1 list)"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   454
    by(simp only: Abs_bit1'_def zmod_int[symmetric] enum_bit1_def distinct_map Suc_eq_plus1 card_bit1 o_apply inj_on_def)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   455
      (clarsimp simp add: Abs_bit1_inject)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   456
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   457
  let ?Abs = "Abs_bit1 :: _ \<Rightarrow> 'a bit1"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   458
  interpret type_definition Rep_bit1 ?Abs "{0..<1 + 2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   459
    by (fact type_definition_bit1)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   460
  have "UNIV = ?Abs ` {0..<1 + 2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   461
    by (simp add: Abs_image)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   462
  also have "\<dots> = ?Abs ` (int ` {0..<1 + 2 * CARD('a)})"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   463
    by (simp add: image_int_atLeastLessThan)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   464
  also have "\<dots> = (?Abs \<circ> int) ` {0..<1 + 2 * CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   465
    by (simp add: image_image cong: image_cong)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   466
  finally show univ_eq: "(UNIV :: 'a bit1 set) = set enum_class.enum"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   467
    by (simp only: enum_bit1_def set_map set_upt) (simp add: Abs_bit1'_def cong: image_cong_simp)
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   468
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   469
  fix P :: "'a bit1 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   470
  show "enum_class.enum_all P = Ball UNIV P"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   471
    and "enum_class.enum_ex P = Bex UNIV P"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   472
    by(simp_all add: enum_all_bit1_def enum_ex_bit1_def univ_eq)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   473
qed
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   474
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   475
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   476
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   477
instantiation bit0 and bit1 :: (finite) finite_UNIV begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   478
definition "finite_UNIV = Phantom('a bit0) True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   479
definition "finite_UNIV = Phantom('a bit1) True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   480
instance by intro_classes (simp_all add: finite_UNIV_bit0_def finite_UNIV_bit1_def)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   481
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   482
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   483
instantiation bit0 and bit1 :: ("{finite,card_UNIV}") card_UNIV begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   484
definition "card_UNIV = Phantom('a bit0) (2 * of_phantom (card_UNIV :: 'a card_UNIV))"
51175
9f472d5f112c simplify definition as sort constraints ensure finiteness (thanks to Jesus Aransay)
Andreas Lochbihler
parents: 51153
diff changeset
   485
definition "card_UNIV = Phantom('a bit1) (1 + 2 * of_phantom (card_UNIV :: 'a card_UNIV))"
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   486
instance by intro_classes (simp_all add: card_UNIV_bit0_def card_UNIV_bit1_def card_UNIV)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   487
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   488
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   489
subsection \<open>Syntax\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   490
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   491
syntax
46236
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 37653
diff changeset
   492
  "_NumeralType" :: "num_token => type"  ("_")
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   493
  "_NumeralType0" :: type ("0")
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   494
  "_NumeralType1" :: type ("1")
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   495
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   496
translations
35362
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   497
  (type) "1" == (type) "num1"
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   498
  (type) "0" == (type) "num0"
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   499
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   500
parse_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   501
  let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   502
    fun mk_bintype n =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   503
      let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   504
        fun mk_bit 0 = Syntax.const \<^type_syntax>\<open>bit0\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   505
          | mk_bit 1 = Syntax.const \<^type_syntax>\<open>bit1\<close>;
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   506
        fun bin_of n =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   507
          if n = 1 then Syntax.const \<^type_syntax>\<open>num1\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   508
          else if n = 0 then Syntax.const \<^type_syntax>\<open>num0\<close>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   509
          else if n = ~1 then raise TERM ("negative type numeral", [])
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   510
          else
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   511
            let val (q, r) = Integer.div_mod n 2;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   512
            in mk_bit r $ bin_of q end;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   513
      in bin_of n end;
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   514
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   515
    fun numeral_tr [Free (str, _)] = mk_bintype (the (Int.fromString str))
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   516
      | numeral_tr ts = raise TERM ("numeral_tr", ts);
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   517
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   518
  in [(\<^syntax_const>\<open>_NumeralType\<close>, K numeral_tr)] end
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   519
\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   520
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   521
print_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   522
  let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   523
    fun int_of [] = 0
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   524
      | int_of (b :: bs) = b + 2 * int_of bs;
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   525
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   526
    fun bin_of (Const (\<^type_syntax>\<open>num0\<close>, _)) = []
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   527
      | bin_of (Const (\<^type_syntax>\<open>num1\<close>, _)) = [1]
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   528
      | bin_of (Const (\<^type_syntax>\<open>bit0\<close>, _) $ bs) = 0 :: bin_of bs
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   529
      | bin_of (Const (\<^type_syntax>\<open>bit1\<close>, _) $ bs) = 1 :: bin_of bs
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   530
      | bin_of t = raise TERM ("bin_of", [t]);
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   531
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   532
    fun bit_tr' b [t] =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   533
          let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   534
            val rev_digs = b :: bin_of t handle TERM _ => raise Match
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   535
            val i = int_of rev_digs;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   536
            val num = string_of_int (abs i);
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   537
          in
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   538
            Syntax.const \<^syntax_const>\<open>_NumeralType\<close> $ Syntax.free num
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   539
          end
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   540
      | bit_tr' b _ = raise Match;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   541
  in
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   542
   [(\<^type_syntax>\<open>bit0\<close>, K (bit_tr' 0)),
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   543
    (\<^type_syntax>\<open>bit1\<close>, K (bit_tr' 1))]
69216
1a52baa70aed clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
wenzelm
parents: 67411
diff changeset
   544
  end
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   545
\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   546
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   547
subsection \<open>Examples\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   548
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   549
lemma "CARD(0) = 0" by simp
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   550
lemma "CARD(17) = 17" by simp
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   551
lemma "8 * 11 ^ 3 - 6 = (2::5)" by simp
28920
4ed4b8b1988d fix typed print translation for card UNIV
huffman
parents: 27487
diff changeset
   552
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   553
end