src/HOL/Library/Numeral_Type.thy
author nipkow
Thu, 21 Dec 2017 18:11:24 +0100
changeset 67236 d2be0579a2c8
parent 66936 cf8d8fc23891
child 67399 eab6ce8368fa
permissions -rw-r--r--
tuned op's
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
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    55
instance bit0 :: (finite) card2
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    56
proof
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    57
  show "finite (UNIV::'a bit0 set)"
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    58
    unfolding type_definition.univ [OF type_definition_bit0]
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    59
    by simp
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    60
  show "2 \<le> CARD('a bit0)"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    61
    by simp
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    62
qed
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    63
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    64
instance bit1 :: (finite) card2
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    65
proof
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    66
  show "finite (UNIV::'a bit1 set)"
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    67
    unfolding type_definition.univ [OF type_definition_bit1]
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    68
    by simp
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    69
  show "2 \<le> CARD('a bit1)"
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
    70
    by simp
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    71
qed
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
    72
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
    73
subsection \<open>Locales for for modular arithmetic subtypes\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    74
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    75
locale mod_type =
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    76
  fixes n :: int
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
    77
  and Rep :: "'a::{zero,one,plus,times,uminus,minus} \<Rightarrow> int"
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
    78
  and Abs :: "int \<Rightarrow> 'a::{zero,one,plus,times,uminus,minus}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    79
  assumes type: "type_definition Rep Abs {0..<n}"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    80
  and size1: "1 < n"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    81
  and zero_def: "0 = Abs 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    82
  and one_def:  "1 = Abs 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    83
  and add_def:  "x + y = Abs ((Rep x + Rep y) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    84
  and mult_def: "x * y = Abs ((Rep x * Rep y) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    85
  and diff_def: "x - y = Abs ((Rep x - Rep y) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    86
  and minus_def: "- x = Abs ((- Rep x) mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    87
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    88
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    89
lemma size0: "0 < n"
35362
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
    90
using size1 by simp
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    91
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    92
lemmas definitions =
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
    93
  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
    94
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    95
lemma Rep_less_n: "Rep x < n"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    96
by (rule type_definition.Rep [OF type, simplified, THEN conjunct2])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    97
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    98
lemma Rep_le_n: "Rep x \<le> n"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
    99
by (rule Rep_less_n [THEN order_less_imp_le])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   100
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   101
lemma Rep_inject_sym: "x = y \<longleftrightarrow> Rep x = Rep y"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   102
by (rule type_definition.Rep_inject [OF type, symmetric])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   103
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   104
lemma Rep_inverse: "Abs (Rep x) = x"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   105
by (rule type_definition.Rep_inverse [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   106
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   107
lemma Abs_inverse: "m \<in> {0..<n} \<Longrightarrow> Rep (Abs m) = m"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   108
by (rule type_definition.Abs_inverse [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   109
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   110
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
   111
by (simp add: Abs_inverse pos_mod_conj [OF size0])
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   112
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   113
lemma Rep_Abs_0: "Rep (Abs 0) = 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   114
by (simp add: Abs_inverse size0)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   115
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   116
lemma Rep_0: "Rep 0 = 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   117
by (simp add: zero_def Rep_Abs_0)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   118
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   119
lemma Rep_Abs_1: "Rep (Abs 1) = 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   120
by (simp add: Abs_inverse size1)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   121
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   122
lemma Rep_1: "Rep 1 = 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   123
by (simp add: one_def Rep_Abs_1)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   124
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   125
lemma Rep_mod: "Rep x mod n = Rep x"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   126
apply (rule_tac x=x in type_definition.Abs_cases [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   127
apply (simp add: type_definition.Abs_inverse [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   128
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   129
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   130
lemmas Rep_simps =
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   131
  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
   132
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   133
lemma comm_ring_1: "OFCLASS('a, comm_ring_1_class)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   134
apply (intro_classes, unfold definitions)
64593
50c715579715 reoriented congruence rules in non-explosive direction
haftmann
parents: 62348
diff changeset
   135
apply (simp_all add: Rep_simps mod_simps field_simps)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   136
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   137
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   138
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   139
46868
6c250adbe101 eliminated old-fashioned 'constrains' element;
wenzelm
parents: 46236
diff changeset
   140
locale mod_ring = mod_type n Rep Abs
6c250adbe101 eliminated old-fashioned 'constrains' element;
wenzelm
parents: 46236
diff changeset
   141
  for n :: int
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   142
  and Rep :: "'a::{comm_ring_1} \<Rightarrow> int"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   143
  and Abs :: "int \<Rightarrow> 'a::{comm_ring_1}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   144
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   145
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   146
lemma of_nat_eq: "of_nat k = Abs (int k mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   147
apply (induct k)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   148
apply (simp add: zero_def)
64593
50c715579715 reoriented congruence rules in non-explosive direction
haftmann
parents: 62348
diff changeset
   149
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
   150
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   151
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   152
lemma of_int_eq: "of_int z = Abs (z mod n)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   153
apply (cases z rule: int_diff_cases)
64593
50c715579715 reoriented congruence rules in non-explosive direction
haftmann
parents: 62348
diff changeset
   154
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
   155
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   156
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   157
lemma Rep_numeral:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   158
  "Rep (numeral w) = numeral w mod n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   159
using of_int_eq [of "numeral w"]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   160
by (simp add: Rep_inject_sym Rep_Abs_mod)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   161
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   162
lemma iszero_numeral:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   163
  "iszero (numeral w::'a) \<longleftrightarrow> numeral w mod n = 0"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   164
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
   165
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   166
lemma cases:
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   167
  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
   168
  shows "P"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   169
apply (cases x rule: type_definition.Abs_cases [OF type])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   170
apply (rule_tac z="y" in 1)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   171
apply (simp_all add: of_int_eq)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   172
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   173
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   174
lemma induct:
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   175
  "(\<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
   176
by (cases x rule: cases) simp
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   177
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   178
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   179
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   180
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   181
subsection \<open>Ring class instances\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   182
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   183
text \<open>
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 60679
diff changeset
   184
  Unfortunately \<open>ring_1\<close> instance is not possible for
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   185
  @{typ num1}, since 0 and 1 are not distinct.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   186
\<close>
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   187
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   188
instantiation num1 :: "{comm_ring,comm_monoid_mult,numeral}"
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   189
begin
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   190
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   191
lemma num1_eq_iff: "(x::num1) = (y::num1) \<longleftrightarrow> True"
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   192
  by (induct x, induct y) simp
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   193
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 60500
diff changeset
   194
instance
ade12ef2773c tuned proofs;
wenzelm
parents: 60500
diff changeset
   195
  by standard (simp_all add: num1_eq_iff)
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   196
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   197
end
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   198
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   199
instantiation
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
   200
  bit0 and bit1 :: (finite) "{zero,one,plus,times,uminus,minus}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   201
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   202
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   203
definition Abs_bit0' :: "int \<Rightarrow> 'a bit0" where
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   204
  "Abs_bit0' x = Abs_bit0 (x mod int CARD('a bit0))"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   205
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   206
definition Abs_bit1' :: "int \<Rightarrow> 'a bit1" where
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   207
  "Abs_bit1' x = Abs_bit1 (x mod int CARD('a bit1))"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   208
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   209
definition "0 = Abs_bit0 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   210
definition "1 = Abs_bit0 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   211
definition "x + y = Abs_bit0' (Rep_bit0 x + Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   212
definition "x * y = Abs_bit0' (Rep_bit0 x * Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   213
definition "x - y = Abs_bit0' (Rep_bit0 x - Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   214
definition "- x = Abs_bit0' (- Rep_bit0 x)"
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 "0 = Abs_bit1 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   217
definition "1 = Abs_bit1 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   218
definition "x + y = Abs_bit1' (Rep_bit1 x + Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   219
definition "x * y = Abs_bit1' (Rep_bit1 x * Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   220
definition "x - y = Abs_bit1' (Rep_bit1 x - Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   221
definition "- x = Abs_bit1' (- Rep_bit1 x)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   222
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   223
instance ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   224
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   225
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   226
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   227
interpretation bit0:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   228
  mod_type "int CARD('a::finite bit0)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   229
           "Rep_bit0 :: 'a::finite bit0 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   230
           "Abs_bit0 :: int \<Rightarrow> 'a::finite bit0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   231
apply (rule mod_type.intro)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   232
apply (simp add: type_definition_bit0)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
   233
apply (rule one_less_int_card)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   234
apply (rule zero_bit0_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   235
apply (rule one_bit0_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   236
apply (rule plus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   237
apply (rule times_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   238
apply (rule minus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   239
apply (rule uminus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   240
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   241
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   242
interpretation bit1:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   243
  mod_type "int CARD('a::finite bit1)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   244
           "Rep_bit1 :: 'a::finite bit1 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   245
           "Abs_bit1 :: int \<Rightarrow> 'a::finite bit1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   246
apply (rule mod_type.intro)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   247
apply (simp add: type_definition_bit1)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
   248
apply (rule one_less_int_card)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   249
apply (rule zero_bit1_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   250
apply (rule one_bit1_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   251
apply (rule plus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   252
apply (rule times_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   253
apply (rule minus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   254
apply (rule uminus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   255
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   256
31021
53642251a04f farewell to class recpower
haftmann
parents: 30960
diff changeset
   257
instance bit0 :: (finite) comm_ring_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   258
  by (rule bit0.comm_ring_1)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   259
31021
53642251a04f farewell to class recpower
haftmann
parents: 30960
diff changeset
   260
instance bit1 :: (finite) comm_ring_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   261
  by (rule bit1.comm_ring_1)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   262
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   263
interpretation bit0:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   264
  mod_ring "int CARD('a::finite bit0)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   265
           "Rep_bit0 :: 'a::finite bit0 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   266
           "Abs_bit0 :: int \<Rightarrow> 'a::finite bit0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   267
  ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   268
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   269
interpretation bit1:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   270
  mod_ring "int CARD('a::finite bit1)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   271
           "Rep_bit1 :: 'a::finite bit1 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   272
           "Abs_bit1 :: int \<Rightarrow> 'a::finite bit1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   273
  ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   274
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   275
text \<open>Set up cases, induction, and arithmetic\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   276
29999
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   277
lemmas bit0_cases [case_names of_int, cases type: bit0] = bit0.cases
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   278
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
   279
29999
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   280
lemmas bit0_induct [case_names of_int, induct type: bit0] = bit0.induct
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   281
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
   282
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   283
lemmas bit0_iszero_numeral [simp] = bit0.iszero_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   284
lemmas bit1_iszero_numeral [simp] = bit1.iszero_numeral
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   285
55142
378ae9e46175 prefer explicit 'for' context;
wenzelm
parents: 52147
diff changeset
   286
lemmas [simp] = eq_numeral_iff_iszero [where 'a="'a bit0"] for dummy :: "'a::finite"
378ae9e46175 prefer explicit 'for' context;
wenzelm
parents: 52147
diff changeset
   287
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
   288
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   289
subsection \<open>Order instances\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   290
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   291
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
   292
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
   293
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
   294
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
   295
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
   296
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   297
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   298
  by(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   299
    (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
   300
end
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   301
67236
d2be0579a2c8 tuned op's
nipkow
parents: 66936
diff changeset
   302
lemma (in preorder) tranclp_less: "op < \<^sup>+\<^sup>+ = op <"
51288
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   303
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
   304
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   305
instance bit0 and bit1 :: (finite) wellorder
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   306
proof -
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   307
  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
   308
    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
   309
  thus "OFCLASS('a bit0, wellorder_class)"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   310
    by(rule wf_wellorderI) intro_classes
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   311
next
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   312
  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
   313
    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
   314
  thus "OFCLASS('a bit1, wellorder_class)"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   315
    by(rule wf_wellorderI) intro_classes
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   316
qed
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   317
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   318
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
   319
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   320
text \<open>Code setup for @{typ num0} and @{typ num1}\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   321
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   322
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
   323
code_datatype Num0
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   324
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   325
instantiation num0 :: equal begin
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   326
definition equal_num0 :: "num0 \<Rightarrow> num0 \<Rightarrow> bool"
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   327
  where "equal_num0 = op ="
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   328
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
   329
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   330
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   331
lemma equal_num0_code [code]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   332
  "equal_class.equal Num0 Num0 = True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   333
by(rule equal_refl)
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
code_datatype "1 :: num1"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   336
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   337
instantiation num1 :: equal begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   338
definition equal_num1 :: "num1 \<Rightarrow> num1 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   339
  where "equal_num1 = op ="
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   340
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
   341
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   342
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   343
lemma equal_num1_code [code]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   344
  "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
   345
by(rule equal_refl)
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 :: enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   348
definition "enum_class.enum = [1 :: num1]"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   349
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
   350
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
   351
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   352
  by intro_classes
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   353
     (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
   354
      (metis (full_types) num1_eq_iff)+)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   355
end
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 num0 and num1 :: card_UNIV begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   358
definition "finite_UNIV = Phantom(num0) False"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   359
definition "card_UNIV = Phantom(num0) 0"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   360
definition "finite_UNIV = Phantom(num1) True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   361
definition "card_UNIV = Phantom(num1) 1"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   362
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   363
  by intro_classes
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   364
     (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
   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
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   368
text \<open>Code setup for @{typ "'a bit0"} and @{typ "'a bit1"}\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   369
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   370
declare
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   371
  bit0.Rep_inverse[code abstype]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   372
  bit0.Rep_0[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   373
  bit0.Rep_1[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   374
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   375
lemma Abs_bit0'_code [code abstract]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   376
  "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
   377
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
   378
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   379
lemma inj_on_Abs_bit0:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   380
  "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
   381
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
   382
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   383
declare
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   384
  bit1.Rep_inverse[code abstype]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   385
  bit1.Rep_0[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   386
  bit1.Rep_1[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   387
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   388
lemma Abs_bit1'_code [code abstract]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   389
  "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
   390
  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
   391
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   392
lemma inj_on_Abs_bit1:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   393
  "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
   394
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
   395
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   396
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
   397
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   398
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
   399
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
   400
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   401
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   402
  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
   403
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   404
end
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 :: (finite) enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   407
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
   408
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
   409
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
   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
proof(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   413
  show "distinct (enum_class.enum :: 'a bit0 list)"
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   414
    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
   415
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   416
  show univ_eq: "(UNIV :: 'a bit0 set) = set enum_class.enum"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   417
    unfolding enum_bit0_def type_definition.Abs_image[OF type_definition_bit0, symmetric]
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   418
    by (simp add: image_comp [symmetric] inj_on_Abs_bit0 card_image image_int_atLeast_lessThan)
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   419
      (auto intro!: image_cong[OF refl] simp add: Abs_bit0'_def)
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   420
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   421
  fix P :: "'a bit0 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   422
  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
   423
    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
   424
    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
   425
qed
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   426
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   427
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   428
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   429
instantiation bit1 :: (finite) enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   430
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
   431
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
   432
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
   433
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   434
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   435
proof(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   436
  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
   437
    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
   438
      (clarsimp simp add: Abs_bit1_inject)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   439
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   440
  show univ_eq: "(UNIV :: 'a bit1 set) = set enum_class.enum"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   441
    unfolding enum_bit1_def type_definition.Abs_image[OF type_definition_bit1, symmetric]
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   442
    by(simp add: image_comp [symmetric] inj_on_Abs_bit1 card_image image_int_atLeast_lessThan)
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   443
      (auto intro!: image_cong[OF refl] simp add: Abs_bit1'_def)
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   444
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   445
  fix P :: "'a bit1 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   446
  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
   447
    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
   448
    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
   449
qed
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
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   452
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   453
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
   454
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
   455
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
   456
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
   457
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   458
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   459
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
   460
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
   461
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
   462
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
   463
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   464
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   465
subsection \<open>Syntax\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   466
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   467
syntax
46236
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 37653
diff changeset
   468
  "_NumeralType" :: "num_token => type"  ("_")
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   469
  "_NumeralType0" :: type ("0")
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   470
  "_NumeralType1" :: type ("1")
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   471
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   472
translations
35362
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   473
  (type) "1" == (type) "num1"
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   474
  (type) "0" == (type) "num0"
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   475
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   476
parse_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   477
  let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   478
    fun mk_bintype n =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   479
      let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   480
        fun mk_bit 0 = Syntax.const @{type_syntax bit0}
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   481
          | mk_bit 1 = Syntax.const @{type_syntax bit1};
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   482
        fun bin_of n =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   483
          if n = 1 then Syntax.const @{type_syntax num1}
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   484
          else if n = 0 then Syntax.const @{type_syntax num0}
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   485
          else if n = ~1 then raise TERM ("negative type numeral", [])
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   486
          else
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   487
            let val (q, r) = Integer.div_mod n 2;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   488
            in mk_bit r $ bin_of q end;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   489
      in bin_of n end;
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   490
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   491
    fun numeral_tr [Free (str, _)] = mk_bintype (the (Int.fromString str))
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   492
      | 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
   493
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   494
  in [(@{syntax_const "_NumeralType"}, K numeral_tr)] end;
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   495
\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   496
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   497
print_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   498
  let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   499
    fun int_of [] = 0
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   500
      | 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
   501
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   502
    fun bin_of (Const (@{type_syntax num0}, _)) = []
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   503
      | bin_of (Const (@{type_syntax num1}, _)) = [1]
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   504
      | bin_of (Const (@{type_syntax bit0}, _) $ bs) = 0 :: bin_of bs
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   505
      | bin_of (Const (@{type_syntax bit1}, _) $ bs) = 1 :: bin_of bs
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   506
      | 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
   507
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   508
    fun bit_tr' b [t] =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   509
          let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   510
            val rev_digs = b :: bin_of t handle TERM _ => raise Match
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   511
            val i = int_of rev_digs;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   512
            val num = string_of_int (abs i);
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   513
          in
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   514
            Syntax.const @{syntax_const "_NumeralType"} $ Syntax.free num
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   515
          end
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   516
      | bit_tr' b _ = raise Match;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   517
  in
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   518
   [(@{type_syntax bit0}, K (bit_tr' 0)),
52147
wenzelm
parents: 52143
diff changeset
   519
    (@{type_syntax bit1}, K (bit_tr' 1))]
wenzelm
parents: 52143
diff changeset
   520
  end;
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   521
\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   522
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   523
subsection \<open>Examples\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   524
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   525
lemma "CARD(0) = 0" by simp
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   526
lemma "CARD(17) = 17" by simp
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   527
lemma "8 * 11 ^ 3 - 6 = (2::5)" by simp
28920
4ed4b8b1988d fix typed print translation for card UNIV
huffman
parents: 27487
diff changeset
   528
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   529
end