src/HOL/Library/Numeral_Type.thy
author Manuel Eberl <eberlm@in.tum.de>
Fri, 08 Jan 2021 19:52:10 +0100
changeset 73109 783406dd051e
parent 69678 0f4d4a13dc16
child 76231 8a48e18f081e
permissions -rw-r--r--
some algebra material for HOL: characteristic of a ring, algebraic integers
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
73109
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   226
lemma UNIV_eq: "(UNIV :: 'a set) = Abs ` {0..<n}"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   227
  using type type_definition.univ by blast
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   228
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   229
lemma CARD_eq: "CARD('a) = nat n"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   230
proof -
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   231
  have "CARD('a) = card (Abs ` {0..<n})"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   232
    by (simp add: UNIV_eq)
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   233
  also have "inj_on Abs {0..<n}"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   234
    by (metis Abs_inverse inj_onI)
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   235
  hence "card (Abs ` {0..<n}) = nat n"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   236
    using size1 by (subst card_image) auto
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   237
  finally show ?thesis .
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   238
qed
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   239
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   240
lemma CHAR_eq [simp]: "CHAR('a) = CARD('a)"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   241
proof (rule CHAR_eqI)
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   242
  show "of_nat (CARD('a)) = (0 :: 'a)"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   243
    by (simp add: CARD_eq of_nat_eq zero_def)
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   244
next
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   245
  fix n assume "of_nat n = (0 :: 'a)"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   246
  thus "CARD('a) dvd n"
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   247
    by (metis CARD_eq Rep_0 Rep_Abs_mod Rep_le_n mod_0_imp_dvd nat_dvd_iff of_nat_eq)
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   248
qed
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   249
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   250
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   251
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   252
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   253
subsection \<open>Ring class instances\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   254
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   255
text \<open>
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 60679
diff changeset
   256
  Unfortunately \<open>ring_1\<close> instance is not possible for
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   257
  \<^typ>\<open>num1\<close>, since 0 and 1 are not distinct.
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   258
\<close>
30032
c7f0c1b8001b class instances for num1
huffman
parents: 30001
diff changeset
   259
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   260
instantiation
30960
fec1a04b7220 power operation defined generic
haftmann
parents: 30729
diff changeset
   261
  bit0 and bit1 :: (finite) "{zero,one,plus,times,uminus,minus}"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   262
begin
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   263
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   264
definition Abs_bit0' :: "int \<Rightarrow> 'a bit0" where
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   265
  "Abs_bit0' x = Abs_bit0 (x mod int CARD('a bit0))"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   266
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   267
definition Abs_bit1' :: "int \<Rightarrow> 'a bit1" where
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   268
  "Abs_bit1' x = Abs_bit1 (x mod int CARD('a bit1))"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   269
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   270
definition "0 = Abs_bit0 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   271
definition "1 = Abs_bit0 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   272
definition "x + y = Abs_bit0' (Rep_bit0 x + Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   273
definition "x * y = Abs_bit0' (Rep_bit0 x * Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   274
definition "x - y = Abs_bit0' (Rep_bit0 x - Rep_bit0 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   275
definition "- x = Abs_bit0' (- Rep_bit0 x)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   276
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   277
definition "0 = Abs_bit1 0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   278
definition "1 = Abs_bit1 1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   279
definition "x + y = Abs_bit1' (Rep_bit1 x + Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   280
definition "x * y = Abs_bit1' (Rep_bit1 x * Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   281
definition "x - y = Abs_bit1' (Rep_bit1 x - Rep_bit1 y)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   282
definition "- x = Abs_bit1' (- Rep_bit1 x)"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   283
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   284
instance ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   285
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   286
end
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   287
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   288
interpretation bit0:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   289
  mod_type "int CARD('a::finite bit0)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   290
           "Rep_bit0 :: 'a::finite bit0 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   291
           "Abs_bit0 :: int \<Rightarrow> 'a::finite bit0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   292
apply (rule mod_type.intro)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   293
apply (simp add: type_definition_bit0)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
   294
apply (rule one_less_int_card)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   295
apply (rule zero_bit0_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   296
apply (rule one_bit0_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   297
apply (rule plus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   298
apply (rule times_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   299
apply (rule minus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   300
apply (rule uminus_bit0_def [unfolded Abs_bit0'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   301
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   302
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   303
interpretation bit1:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   304
  mod_type "int CARD('a::finite bit1)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   305
           "Rep_bit1 :: 'a::finite bit1 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   306
           "Abs_bit1 :: int \<Rightarrow> 'a::finite bit1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   307
apply (rule mod_type.intro)
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   308
apply (simp add: type_definition_bit1)
30001
dd27e16677b2 cleaned up
huffman
parents: 29999
diff changeset
   309
apply (rule one_less_int_card)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   310
apply (rule zero_bit1_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   311
apply (rule one_bit1_def)
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   312
apply (rule plus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   313
apply (rule times_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   314
apply (rule minus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   315
apply (rule uminus_bit1_def [unfolded Abs_bit1'_def])
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   316
done
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   317
31021
53642251a04f farewell to class recpower
haftmann
parents: 30960
diff changeset
   318
instance bit0 :: (finite) comm_ring_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   319
  by (rule bit0.comm_ring_1)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   320
31021
53642251a04f farewell to class recpower
haftmann
parents: 30960
diff changeset
   321
instance bit1 :: (finite) comm_ring_1
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   322
  by (rule bit1.comm_ring_1)
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   323
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   324
interpretation bit0:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   325
  mod_ring "int CARD('a::finite bit0)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   326
           "Rep_bit0 :: 'a::finite bit0 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   327
           "Abs_bit0 :: int \<Rightarrow> 'a::finite bit0"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   328
  ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   329
30729
461ee3e49ad3 interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents: 30663
diff changeset
   330
interpretation bit1:
29998
19e1ef628b25 nicer induction/cases rules for numeral types
huffman
parents: 29997
diff changeset
   331
  mod_ring "int CARD('a::finite bit1)"
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   332
           "Rep_bit1 :: 'a::finite bit1 \<Rightarrow> int"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   333
           "Abs_bit1 :: int \<Rightarrow> 'a::finite bit1"
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   334
  ..
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   335
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   336
text \<open>Set up cases, induction, and arithmetic\<close>
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   337
29999
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   338
lemmas bit0_cases [case_names of_int, cases type: bit0] = bit0.cases
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   339
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
   340
29999
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   341
lemmas bit0_induct [case_names of_int, induct type: bit0] = bit0.induct
da85a244e328 fix case_names
huffman
parents: 29998
diff changeset
   342
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
   343
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   344
lemmas bit0_iszero_numeral [simp] = bit0.iszero_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46868
diff changeset
   345
lemmas bit1_iszero_numeral [simp] = bit1.iszero_numeral
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   346
55142
378ae9e46175 prefer explicit 'for' context;
wenzelm
parents: 52147
diff changeset
   347
lemmas [simp] = eq_numeral_iff_iszero [where 'a="'a bit0"] for dummy :: "'a::finite"
378ae9e46175 prefer explicit 'for' context;
wenzelm
parents: 52147
diff changeset
   348
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
   349
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   350
subsection \<open>Order instances\<close>
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   351
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   352
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
   353
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
   354
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
   355
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
   356
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
   357
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   358
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   359
  by(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   360
    (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
   361
end
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   362
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67236
diff changeset
   363
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
   364
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
   365
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   366
instance bit0 and bit1 :: (finite) wellorder
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   367
proof -
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   368
  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
   369
    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
   370
  thus "OFCLASS('a bit0, wellorder_class)"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   371
    by(rule wf_wellorderI) intro_classes
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   372
next
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   373
  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
   374
    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
   375
  thus "OFCLASS('a bit1, wellorder_class)"
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   376
    by(rule wf_wellorderI) intro_classes
be7e9a675ec9 add wellorder instance for Numeral_Type (suggested by Jesus Aransay)
Andreas Lochbihler
parents: 51175
diff changeset
   377
qed
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   378
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   379
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
   380
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   381
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
   382
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   383
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
   384
code_datatype Num0
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   385
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   386
instantiation num0 :: equal begin
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   387
definition equal_num0 :: "num0 \<Rightarrow> num0 \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67236
diff changeset
   388
  where "equal_num0 = (=)"
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   389
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
   390
end
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 equal_num0_code [code]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   393
  "equal_class.equal Num0 Num0 = True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   394
by(rule equal_refl)
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
code_datatype "1 :: num1"
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
instantiation num1 :: equal begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   399
definition equal_num1 :: "num1 \<Rightarrow> num1 \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67236
diff changeset
   400
  where "equal_num1 = (=)"
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   401
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
   402
end
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
lemma equal_num1_code [code]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   405
  "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
   406
by(rule equal_refl)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   407
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   408
instantiation num1 :: enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   409
definition "enum_class.enum = [1 :: num1]"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   410
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
   411
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
   412
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   413
  by intro_classes
69666
d51e5e41fafe Reorg of material
nipkow
parents: 69663
diff changeset
   414
     (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
   415
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   416
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   417
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
   418
definition "finite_UNIV = Phantom(num0) False"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   419
definition "card_UNIV = Phantom(num0) 0"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   420
definition "finite_UNIV = Phantom(num1) True"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   421
definition "card_UNIV = Phantom(num1) 1"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   422
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   423
  by intro_classes
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   424
     (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
   425
end
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
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   428
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
   429
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   430
declare
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   431
  bit0.Rep_inverse[code abstype]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   432
  bit0.Rep_0[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   433
  bit0.Rep_1[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   434
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   435
lemma Abs_bit0'_code [code abstract]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   436
  "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
   437
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
   438
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   439
lemma inj_on_Abs_bit0:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   440
  "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
   441
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
   442
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   443
declare
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   444
  bit1.Rep_inverse[code abstype]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   445
  bit1.Rep_0[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   446
  bit1.Rep_1[code abstract]
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   447
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   448
lemma Abs_bit1'_code [code abstract]:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   449
  "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
   450
  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
   451
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   452
lemma inj_on_Abs_bit1:
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   453
  "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
   454
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
   455
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   456
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
   457
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   458
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
   459
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
   460
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   461
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   462
  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
   463
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   464
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   465
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   466
instantiation bit0 :: (finite) enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   467
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
   468
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
   469
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
   470
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   471
instance proof
51153
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   472
  show "distinct (enum_class.enum :: 'a bit0 list)"
66936
cf8d8fc23891 tuned some proofs and added some lemmas
haftmann
parents: 66886
diff changeset
   473
    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
   474
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   475
  let ?Abs = "Abs_bit0 :: _ \<Rightarrow> 'a bit0"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   476
  interpret type_definition Rep_bit0 ?Abs "{0..<2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   477
    by (fact type_definition_bit0)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   478
  have "UNIV = ?Abs ` {0..<2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   479
    by (simp add: Abs_image)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   480
  also have "\<dots> = ?Abs ` (int ` {0..<2 * CARD('a)})"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   481
    by (simp add: image_int_atLeastLessThan)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   482
  also have "\<dots> = (?Abs \<circ> int) ` {0..<2 * CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   483
    by (simp add: image_image cong: image_cong)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   484
  also have "\<dots> = set enum_class.enum"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   485
    by (simp add: enum_bit0_def Abs_bit0'_def cong: image_cong_simp)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   486
  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
   487
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   488
  fix P :: "'a bit0 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   489
  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
   490
    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
   491
    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
   492
qed
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   493
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   494
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   495
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   496
instantiation bit1 :: (finite) enum begin
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   497
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
   498
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
   499
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
   500
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   501
instance
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   502
proof(intro_classes)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   503
  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
   504
    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
   505
      (clarsimp simp add: Abs_bit1_inject)
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   506
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   507
  let ?Abs = "Abs_bit1 :: _ \<Rightarrow> 'a bit1"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   508
  interpret type_definition Rep_bit1 ?Abs "{0..<1 + 2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   509
    by (fact type_definition_bit1)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   510
  have "UNIV = ?Abs ` {0..<1 + 2 * int CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   511
    by (simp add: Abs_image)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   512
  also have "\<dots> = ?Abs ` (int ` {0..<1 + 2 * CARD('a)})"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   513
    by (simp add: image_int_atLeastLessThan)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   514
  also have "\<dots> = (?Abs \<circ> int) ` {0..<1 + 2 * CARD('a)}"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   515
    by (simp add: image_image cong: image_cong)
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   516
  finally show univ_eq: "(UNIV :: 'a bit1 set) = set enum_class.enum"
a03a63b81f44 tuned proofs
haftmann
parents: 69593
diff changeset
   517
    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
   518
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   519
  fix P :: "'a bit1 \<Rightarrow> bool"
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   520
  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
   521
    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
   522
    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
   523
qed
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   524
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   525
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   526
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   527
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
   528
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
   529
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
   530
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
   531
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   532
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   533
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
   534
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
   535
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
   536
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
   537
end
b14ee572cc7b more type class instances for Numeral_Type (contributed by Jesus Aransay)
Andreas Lochbihler
parents: 49834
diff changeset
   538
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   539
subsection \<open>Syntax\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   540
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   541
syntax
46236
ae79f2978a67 position constraints for numerals enable PIDE markup;
wenzelm
parents: 37653
diff changeset
   542
  "_NumeralType" :: "num_token => type"  ("_")
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   543
  "_NumeralType0" :: type ("0")
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   544
  "_NumeralType1" :: type ("1")
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   545
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   546
translations
35362
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   547
  (type) "1" == (type) "num1"
828a42fb7445 explicit @{type_syntax} markup;
wenzelm
parents: 35115
diff changeset
   548
  (type) "0" == (type) "num0"
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   549
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   550
parse_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   551
  let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   552
    fun mk_bintype n =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   553
      let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   554
        fun mk_bit 0 = Syntax.const \<^type_syntax>\<open>bit0\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   555
          | mk_bit 1 = Syntax.const \<^type_syntax>\<open>bit1\<close>;
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   556
        fun bin_of n =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   557
          if n = 1 then Syntax.const \<^type_syntax>\<open>num1\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   558
          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
   559
          else if n = ~1 then raise TERM ("negative type numeral", [])
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   560
          else
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   561
            let val (q, r) = Integer.div_mod n 2;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   562
            in mk_bit r $ bin_of q end;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   563
      in bin_of n end;
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   564
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   565
    fun numeral_tr [Free (str, _)] = mk_bintype (the (Int.fromString str))
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   566
      | 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
   567
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   568
  in [(\<^syntax_const>\<open>_NumeralType\<close>, K numeral_tr)] end
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   569
\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   570
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   571
print_translation \<open>
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   572
  let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   573
    fun int_of [] = 0
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   574
      | 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
   575
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   576
    fun bin_of (Const (\<^type_syntax>\<open>num0\<close>, _)) = []
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   577
      | bin_of (Const (\<^type_syntax>\<open>num1\<close>, _)) = [1]
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   578
      | bin_of (Const (\<^type_syntax>\<open>bit0\<close>, _) $ bs) = 0 :: bin_of bs
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   579
      | 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
   580
      | 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
   581
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   582
    fun bit_tr' b [t] =
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   583
          let
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   584
            val rev_digs = b :: bin_of t handle TERM _ => raise Match
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   585
            val i = int_of rev_digs;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   586
            val num = string_of_int (abs i);
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   587
          in
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   588
            Syntax.const \<^syntax_const>\<open>_NumeralType\<close> $ Syntax.free num
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   589
          end
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   590
      | bit_tr' b _ = raise Match;
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 51288
diff changeset
   591
  in
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   592
   [(\<^type_syntax>\<open>bit0\<close>, K (bit_tr' 0)),
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69216
diff changeset
   593
    (\<^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
   594
  end
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   595
\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   596
60500
903bb1495239 isabelle update_cartouches;
wenzelm
parents: 58881
diff changeset
   597
subsection \<open>Examples\<close>
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   598
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   599
lemma "CARD(0) = 0" by simp
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   600
lemma "CARD(17) = 17" by simp
73109
783406dd051e some algebra material for HOL: characteristic of a ring, algebraic integers
Manuel Eberl <eberlm@in.tum.de>
parents: 69678
diff changeset
   601
lemma "CHAR(23) = 23" by simp
29997
f6756c097c2d number_ring instances for numeral types
huffman
parents: 29629
diff changeset
   602
lemma "8 * 11 ^ 3 - 6 = (2::5)" by simp
28920
4ed4b8b1988d fix typed print translation for card UNIV
huffman
parents: 27487
diff changeset
   603
24332
e3a2b75b1cf9 boolean algebras as locales and numbers as types by Brian Huffman
kleing
parents:
diff changeset
   604
end