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