src/HOL/Typedef.thy
author wenzelm
Fri, 01 Jan 2016 16:40:47 +0100
changeset 62028 2ecee4679f99
parent 61799 4cf66f21b764
child 63434 c956d995bec6
permissions -rw-r--r--
updated for release;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Typedef.thy
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     2
    Author:     Markus Wenzel, TU Munich
11743
wenzelm
parents: 11659
diff changeset
     3
*)
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     4
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 58889
diff changeset
     5
section \<open>HOL type definitions\<close>
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13421
diff changeset
     7
theory Typedef
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
     8
imports Set
46950
d0181abdbdac declare command keywords via theory header, including strict checking outside Pure;
wenzelm
parents: 46947
diff changeset
     9
keywords "typedef" :: thy_goal and "morphisms"
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13421
diff changeset
    10
begin
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    11
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    12
locale type_definition =
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    13
  fixes Rep and Abs and A
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    14
  assumes Rep: "Rep x \<in> A"
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    15
    and Rep_inverse: "Abs (Rep x) = x"
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    16
    and Abs_inverse: "y \<in> A \<Longrightarrow> Rep (Abs y) = y"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61102
diff changeset
    17
  \<comment> \<open>This will be axiomatized for each typedef!\<close>
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    18
begin
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    19
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    20
lemma Rep_inject: "Rep x = Rep y \<longleftrightarrow> x = y"
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    21
proof
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    22
  assume "Rep x = Rep y"
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    23
  then have "Abs (Rep x) = Abs (Rep y)" by (simp only:)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    24
  moreover have "Abs (Rep x) = x" by (rule Rep_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    25
  moreover have "Abs (Rep y) = y" by (rule Rep_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    26
  ultimately show "x = y" by simp
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    27
next
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    28
  assume "x = y"
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    29
  then show "Rep x = Rep y" by (simp only:)
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    30
qed
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    31
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    32
lemma Abs_inject:
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    33
  assumes "x \<in> A" and "y \<in> A"
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    34
  shows "Abs x = Abs y \<longleftrightarrow> x = y"
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    35
proof
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    36
  assume "Abs x = Abs y"
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    37
  then have "Rep (Abs x) = Rep (Abs y)" by (simp only:)
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    38
  moreover from \<open>x \<in> A\<close> have "Rep (Abs x) = x" by (rule Abs_inverse)
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    39
  moreover from \<open>y \<in> A\<close> have "Rep (Abs y) = y" by (rule Abs_inverse)
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    40
  ultimately show "x = y" by simp
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    41
next
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    42
  assume "x = y"
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    43
  then show "Abs x = Abs y" by (simp only:)
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    44
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    45
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    46
lemma Rep_cases [cases set]:
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    47
  assumes "y \<in> A"
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    48
    and hyp: "\<And>x. y = Rep x \<Longrightarrow> P"
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    49
  shows P
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    50
proof (rule hyp)
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    51
  from \<open>y \<in> A\<close> have "Rep (Abs y) = y" by (rule Abs_inverse)
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    52
  then show "y = Rep (Abs y)" ..
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    53
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    54
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    55
lemma Abs_cases [cases type]:
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    56
  assumes r: "\<And>y. x = Abs y \<Longrightarrow> y \<in> A \<Longrightarrow> P"
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    57
  shows P
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    58
proof (rule r)
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    59
  have "Abs (Rep x) = x" by (rule Rep_inverse)
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    60
  then show "x = Abs (Rep x)" ..
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    61
  show "Rep x \<in> A" by (rule Rep)
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    62
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    63
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    64
lemma Rep_induct [induct set]:
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    65
  assumes y: "y \<in> A"
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    66
    and hyp: "\<And>x. P (Rep x)"
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    67
  shows "P y"
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    68
proof -
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    69
  have "P (Rep (Abs y))" by (rule hyp)
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    70
  moreover from y have "Rep (Abs y) = y" by (rule Abs_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    71
  ultimately show "P y" by simp
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    72
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    73
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
    74
lemma Abs_induct [induct type]:
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    75
  assumes r: "\<And>y. y \<in> A \<Longrightarrow> P (Abs y)"
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    76
  shows "P x"
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    77
proof -
13412
666137b488a4 predicate defs via locales;
wenzelm
parents: 12023
diff changeset
    78
  have "Rep x \<in> A" by (rule Rep)
23710
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    79
  then have "P (Abs (Rep x))" by (rule r)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    80
  moreover have "Abs (Rep x) = x" by (rule Rep_inverse)
a8ac2305eaf2 removed proof dependency on transitivity theorems
haftmann
parents: 23433
diff changeset
    81
  ultimately show "P x" by simp
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    82
qed
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
    83
27295
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
    84
lemma Rep_range: "range Rep = A"
24269
4b2aac7669b3 remove redundant assumption from Rep_range lemma
huffman
parents: 23710
diff changeset
    85
proof
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    86
  show "range Rep \<subseteq> A" using Rep by (auto simp add: image_def)
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    87
  show "A \<subseteq> range Rep"
23433
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    88
  proof
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    89
    fix x assume "x \<in> A"
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    90
    then have "x = Rep (Abs x)" by (rule Abs_inverse [symmetric])
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    91
    then show "x \<in> range Rep" by (rule range_eqI)
23433
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    92
  qed
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    93
qed
c2c10abd2a1e added lemmas
nipkow
parents: 23247
diff changeset
    94
27295
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
    95
lemma Abs_image: "Abs ` A = UNIV"
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
    96
proof
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    97
  show "Abs ` A \<subseteq> UNIV" by (rule subset_UNIV)
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
    98
  show "UNIV \<subseteq> Abs ` A"
27295
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
    99
  proof
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
   100
    fix x
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
   101
    have "x = Abs (Rep x)" by (rule Rep_inverse [symmetric])
61102
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
   102
    moreover have "Rep x \<in> A" by (rule Rep)
0ec9fd8d8119 misc tuning and modernization;
wenzelm
parents: 60758
diff changeset
   103
    ultimately show "x \<in> Abs ` A" by (rule image_eqI)
27295
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
   104
  qed
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
   105
qed
cfe5244301dd add lemma Abs_image
huffman
parents: 26802
diff changeset
   106
23247
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
   107
end
b99dce43d252 merged Code_Generator.thy into HOL.thy
haftmann
parents: 22846
diff changeset
   108
58239
1c5bc387bd4c added flag to 'typedef' to allow concealed definitions
blanchet
parents: 48891
diff changeset
   109
ML_file "Tools/typedef.ML"
11608
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
   110
c760ea8154ee renamed theory "subset" to "Typedef";
wenzelm
parents:
diff changeset
   111
end