src/HOL/BNF_Def.thy
author blanchet
Tue, 16 Sep 2014 19:23:37 +0200
changeset 58352 37745650a3f4
parent 58106 c8cba801c483
child 58446 e89f57d1e46c
permissions -rw-r--r--
register 'prod' and 'sum' as datatypes, to allow N2M through them
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55059
ef2e0fb783c6 tuned comments
blanchet
parents: 55058
diff changeset
     1
(*  Title:      HOL/BNF_Def.thy
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     2
    Author:     Dmitriy Traytel, TU Muenchen
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
     3
    Author:     Jasmin Blanchette, TU Muenchen
57698
afef6616cbae header tuning
blanchet
parents: 57641
diff changeset
     4
    Copyright   2012, 2013, 2014
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     5
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     6
Definition of bounded natural functors.
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     7
*)
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     8
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
     9
header {* Definition of Bounded Natural Functors *}
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    10
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    11
theory BNF_Def
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    12
imports BNF_Cardinal_Arithmetic Fun_Def_Base
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    13
keywords
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49284
diff changeset
    14
  "print_bnfs" :: diag and
51836
4d6dcd51dd52 renamed "bnf_def" keyword to "bnf" (since it's not a definition, but rather a registration)
blanchet
parents: 49537
diff changeset
    15
  "bnf" :: thy_goal
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    16
begin
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
    17
58104
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    18
lemma Collect_splitD: "x \<in> Collect (split A) \<Longrightarrow> A (fst x) (snd x)"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    19
  by auto
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    20
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    21
definition
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    22
  rel_fun :: "('a \<Rightarrow> 'c \<Rightarrow> bool) \<Rightarrow> ('b \<Rightarrow> 'd \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('c \<Rightarrow> 'd) \<Rightarrow> bool"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    23
where
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    24
  "rel_fun A B = (\<lambda>f g. \<forall>x y. A x y \<longrightarrow> B (f x) (g y))"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    25
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    26
lemma rel_funI [intro]:
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    27
  assumes "\<And>x y. A x y \<Longrightarrow> B (f x) (g y)"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    28
  shows "rel_fun A B f g"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    29
  using assms by (simp add: rel_fun_def)
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    30
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    31
lemma rel_funD:
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    32
  assumes "rel_fun A B f g" and "A x y"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    33
  shows "B (f x) (g y)"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    34
  using assms by (simp add: rel_fun_def)
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    35
58104
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    36
definition rel_set :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> bool"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    37
  where "rel_set R = (\<lambda>A B. (\<forall>x\<in>A. \<exists>y\<in>B. R x y) \<and> (\<forall>y\<in>B. \<exists>x\<in>A. R x y))"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    38
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    39
lemma rel_setI:
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    40
  assumes "\<And>x. x \<in> A \<Longrightarrow> \<exists>y\<in>B. R x y"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    41
  assumes "\<And>y. y \<in> B \<Longrightarrow> \<exists>x\<in>A. R x y"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    42
  shows "rel_set R A B"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    43
  using assms unfolding rel_set_def by simp
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    44
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    45
lemma predicate2_transferD:
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    46
   "\<lbrakk>rel_fun R1 (rel_fun R2 (op =)) P Q; a \<in> A; b \<in> B; A \<subseteq> {(x, y). R1 x y}; B \<subseteq> {(x, y). R2 x y}\<rbrakk> \<Longrightarrow>
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    47
   P (fst a) (fst b) \<longleftrightarrow> Q (snd a) (snd b)"
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    48
  unfolding rel_fun_def by (blast dest!: Collect_splitD)
c5316f843f72 generate 'rel_transfer' for BNFs
desharna
parents: 57802
diff changeset
    49
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    50
definition collect where
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    51
  "collect F x = (\<Union>f \<in> F. f x)"
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    52
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    53
lemma fstI: "x = (y, z) \<Longrightarrow> fst x = y"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    54
  by simp
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    55
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    56
lemma sndI: "x = (y, z) \<Longrightarrow> snd x = z"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    57
  by simp
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    58
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    59
lemma bijI': "\<lbrakk>\<And>x y. (f x = f y) = (x = y); \<And>y. \<exists>x. y = f x\<rbrakk> \<Longrightarrow> bij f"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    60
  unfolding bij_def inj_on_def by auto blast
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    61
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    62
(* Operator: *)
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    63
definition "Gr A f = {(a, f a) | a. a \<in> A}"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    64
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    65
definition "Grp A f = (\<lambda>a b. b = f a \<and> a \<in> A)"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    66
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    67
definition vimage2p where
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    68
  "vimage2p f g R = (\<lambda>x y. R (f x) (g y))"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
    69
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 55945
diff changeset
    70
lemma collect_comp: "collect F \<circ> g = collect ((\<lambda>f. f \<circ> g) ` F)"
55066
blanchet
parents: 55062
diff changeset
    71
  by (rule ext) (auto simp only: comp_apply collect_def)
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    72
57641
dc59f147b27d more robust notation BNF_Def.convol, which is private to main HOL, but may cause syntax ambiguities nonetheless (e.g. List.thy);
wenzelm
parents: 57398
diff changeset
    73
definition convol ("\<langle>(_,/ _)\<rangle>") where
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    74
  "\<langle>f, g\<rangle> \<equiv> \<lambda>a. (f a, g a)"
49495
675b9df572df rel_Gr does not depend on map_wpull
traytel
parents: 49325
diff changeset
    75
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    76
lemma fst_convol: "fst \<circ> \<langle>f, g\<rangle> = f"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    77
  apply(rule ext)
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    78
  unfolding convol_def by simp
49495
675b9df572df rel_Gr does not depend on map_wpull
traytel
parents: 49325
diff changeset
    79
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    80
lemma snd_convol: "snd \<circ> \<langle>f, g\<rangle> = g"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    81
  apply(rule ext)
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    82
  unfolding convol_def by simp
49495
675b9df572df rel_Gr does not depend on map_wpull
traytel
parents: 49325
diff changeset
    83
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    84
lemma convol_mem_GrpI:
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    85
  "x \<in> A \<Longrightarrow> \<langle>id, g\<rangle> x \<in> (Collect (split (Grp A g)))"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    86
  unfolding convol_def Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    87
49312
c874ff5658dc moved theorems closer to where they are used
blanchet
parents: 49309
diff changeset
    88
definition csquare where
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    89
  "csquare A f1 f2 p1 p2 \<longleftrightarrow> (\<forall> a \<in> A. f1 (p1 a) = f2 (p2 a))"
49312
c874ff5658dc moved theorems closer to where they are used
blanchet
parents: 49309
diff changeset
    90
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    91
lemma eq_alt: "op = = Grp UNIV id"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
    92
  unfolding Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    93
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    94
lemma leq_conversepI: "R = op = \<Longrightarrow> R \<le> R^--1"
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    95
  by auto
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    96
54841
af71b753c459 express weak pullback property of bnfs only in terms of the relator
traytel
parents: 54581
diff changeset
    97
lemma leq_OOI: "R = op = \<Longrightarrow> R \<le> R OO R"
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    98
  by auto
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
    99
53561
92bcac4f9ac9 simplified derivation of in_rel
traytel
parents: 53560
diff changeset
   100
lemma OO_Grp_alt: "(Grp A f)^--1 OO Grp A g = (\<lambda>x y. \<exists>z. z \<in> A \<and> f z = x \<and> g z = y)"
92bcac4f9ac9 simplified derivation of in_rel
traytel
parents: 53560
diff changeset
   101
  unfolding Grp_def by auto
92bcac4f9ac9 simplified derivation of in_rel
traytel
parents: 53560
diff changeset
   102
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   103
lemma Grp_UNIV_id: "f = id \<Longrightarrow> (Grp UNIV f)^--1 OO Grp UNIV f = Grp UNIV f"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   104
  unfolding Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   105
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   106
lemma Grp_UNIV_idI: "x = y \<Longrightarrow> Grp UNIV id x y"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   107
  unfolding Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   108
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   109
lemma Grp_mono: "A \<le> B \<Longrightarrow> Grp A f \<le> Grp B f"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   110
  unfolding Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   111
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   112
lemma GrpI: "\<lbrakk>f x = y; x \<in> A\<rbrakk> \<Longrightarrow> Grp A f x y"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   113
  unfolding Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   114
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   115
lemma GrpE: "Grp A f x y \<Longrightarrow> (\<lbrakk>f x = y; x \<in> A\<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   116
  unfolding Grp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   117
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   118
lemma Collect_split_Grp_eqD: "z \<in> Collect (split (Grp A f)) \<Longrightarrow> (f \<circ> fst) z = snd z"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   119
  unfolding Grp_def comp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   120
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   121
lemma Collect_split_Grp_inD: "z \<in> Collect (split (Grp A f)) \<Longrightarrow> fst z \<in> A"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   122
  unfolding Grp_def comp_def by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   123
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   124
definition "pick_middlep P Q a c = (SOME b. P a b \<and> Q b c)"
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   125
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   126
lemma pick_middlep:
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   127
  "(P OO Q) a c \<Longrightarrow> P a (pick_middlep P Q a c) \<and> Q (pick_middlep P Q a c) c"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   128
  unfolding pick_middlep_def apply(rule someI_ex) by auto
49312
c874ff5658dc moved theorems closer to where they are used
blanchet
parents: 49309
diff changeset
   129
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   130
definition fstOp where
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   131
  "fstOp P Q ac = (fst ac, pick_middlep P Q (fst ac) (snd ac))"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   132
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   133
definition sndOp where
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   134
  "sndOp P Q ac = (pick_middlep P Q (fst ac) (snd ac), (snd ac))"
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   135
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   136
lemma fstOp_in: "ac \<in> Collect (split (P OO Q)) \<Longrightarrow> fstOp P Q ac \<in> Collect (split P)"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   137
  unfolding fstOp_def mem_Collect_eq
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   138
  by (subst (asm) surjective_pairing, unfold prod.case) (erule pick_middlep[THEN conjunct1])
49312
c874ff5658dc moved theorems closer to where they are used
blanchet
parents: 49309
diff changeset
   139
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   140
lemma fst_fstOp: "fst bc = (fst \<circ> fstOp P Q) bc"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   141
  unfolding comp_def fstOp_def by simp
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   142
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   143
lemma snd_sndOp: "snd bc = (snd \<circ> sndOp P Q) bc"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   144
  unfolding comp_def sndOp_def by simp
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   145
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   146
lemma sndOp_in: "ac \<in> Collect (split (P OO Q)) \<Longrightarrow> sndOp P Q ac \<in> Collect (split Q)"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   147
  unfolding sndOp_def mem_Collect_eq
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   148
  by (subst (asm) surjective_pairing, unfold prod.case) (erule pick_middlep[THEN conjunct2])
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   149
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   150
lemma csquare_fstOp_sndOp:
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   151
  "csquare (Collect (split (P OO Q))) snd fst (fstOp P Q) (sndOp P Q)"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   152
  unfolding csquare_def fstOp_def sndOp_def using pick_middlep by simp
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   153
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 55945
diff changeset
   154
lemma snd_fst_flip: "snd xy = (fst \<circ> (%(x, y). (y, x))) xy"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   155
  by (simp split: prod.split)
49312
c874ff5658dc moved theorems closer to where they are used
blanchet
parents: 49309
diff changeset
   156
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 55945
diff changeset
   157
lemma fst_snd_flip: "fst xy = (snd \<circ> (%(x, y). (y, x))) xy"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   158
  by (simp split: prod.split)
49312
c874ff5658dc moved theorems closer to where they are used
blanchet
parents: 49309
diff changeset
   159
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   160
lemma flip_pred: "A \<subseteq> Collect (split (R ^--1)) \<Longrightarrow> (%(x, y). (y, x)) ` A \<subseteq> Collect (split R)"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   161
  by auto
51893
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   162
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   163
lemma Collect_split_mono: "A \<le> B \<Longrightarrow> Collect (split A) \<subseteq> Collect (split B)"
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   164
  by auto
596baae88a88 got rid of the set based relator---use (binary) predicate based relator instead
traytel
parents: 51836
diff changeset
   165
51916
eac9e9a45bf5 stronger monotonicity property for relators
traytel
parents: 51909
diff changeset
   166
lemma Collect_split_mono_strong: 
55163
a740f312d9e4 made tactic more robust
traytel
parents: 55085
diff changeset
   167
  "\<lbrakk>X = fst ` A; Y = snd ` A; \<forall>a\<in>X. \<forall>b \<in> Y. P a b \<longrightarrow> Q a b; A \<subseteq> Collect (split P)\<rbrakk> \<Longrightarrow>
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   168
   A \<subseteq> Collect (split Q)"
51916
eac9e9a45bf5 stronger monotonicity property for relators
traytel
parents: 51909
diff changeset
   169
  by fastforce
eac9e9a45bf5 stronger monotonicity property for relators
traytel
parents: 51909
diff changeset
   170
55163
a740f312d9e4 made tactic more robust
traytel
parents: 55085
diff changeset
   171
51917
f964a9887713 store proper theorems even for fixed points that have no passive live variables
traytel
parents: 51916
diff changeset
   172
lemma predicate2_eqD: "A = B \<Longrightarrow> A a b \<longleftrightarrow> B a b"
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   173
  by simp
49537
fe1deee434b6 generate "rel_as_srel" and "rel_flip" properties
blanchet
parents: 49510
diff changeset
   174
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   175
lemma case_sum_o_inj: "case_sum f g \<circ> Inl = f" "case_sum f g \<circ> Inr = g"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   176
  by auto
52635
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   177
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   178
lemma map_sum_o_inj: "map_sum f g o Inl = Inl o f" "map_sum f g o Inr = Inr o g"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   179
  by auto
57802
9c065009cd8a handle deep nesting in N2M
traytel
parents: 57698
diff changeset
   180
52635
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   181
lemma card_order_csum_cone_cexp_def:
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   182
  "card_order r \<Longrightarrow> ( |A1| +c cone) ^c r = |Func UNIV (Inl ` A1 \<union> {Inr ()})|"
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   183
  unfolding cexp_def cone_def Field_csum Field_card_of by (auto dest: Field_card_order)
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   184
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   185
lemma If_the_inv_into_in_Func:
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   186
  "\<lbrakk>inj_on g C; C \<subseteq> B \<union> {x}\<rbrakk> \<Longrightarrow>
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   187
   (\<lambda>i. if i \<in> g ` C then the_inv_into C g i else x) \<in> Func UNIV (B \<union> {x})"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   188
  unfolding Func_def by (auto dest: the_inv_into_into)
52635
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   189
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   190
lemma If_the_inv_into_f_f:
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   191
  "\<lbrakk>i \<in> C; inj_on g C\<rbrakk> \<Longrightarrow> ((\<lambda>i. if i \<in> g ` C then the_inv_into C g i else x) \<circ> g) i = id i"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   192
  unfolding Func_def by (auto elim: the_inv_into_f_f)
52635
4f84b730c489 got rid of in_bd BNF property (derivable from set_bd+map_cong+map_comp+map_id)
traytel
parents: 51917
diff changeset
   193
56635
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 55945
diff changeset
   194
lemma the_inv_f_o_f_id: "inj f \<Longrightarrow> (the_inv f \<circ> f) z = id z"
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 55945
diff changeset
   195
  by (simp add: the_inv_f_f)
b07c8ad23010 added 'inj_map' as auxiliary BNF theorem
blanchet
parents: 55945
diff changeset
   196
52731
dacd47a0633f transfer rule for {c,d}tor_{,un}fold
traytel
parents: 52730
diff changeset
   197
lemma vimage2pI: "R (f x) (g y) \<Longrightarrow> vimage2p f g R x y"
dacd47a0633f transfer rule for {c,d}tor_{,un}fold
traytel
parents: 52730
diff changeset
   198
  unfolding vimage2p_def by -
52719
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52660
diff changeset
   199
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55811
diff changeset
   200
lemma rel_fun_iff_leq_vimage2p: "(rel_fun R S) f g = (R \<le> vimage2p f g S)"
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55811
diff changeset
   201
  unfolding rel_fun_def vimage2p_def by auto
52719
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52660
diff changeset
   202
57641
dc59f147b27d more robust notation BNF_Def.convol, which is private to main HOL, but may cause syntax ambiguities nonetheless (e.g. List.thy);
wenzelm
parents: 57398
diff changeset
   203
lemma convol_image_vimage2p: "\<langle>f \<circ> fst, g \<circ> snd\<rangle> ` Collect (split (vimage2p f g R)) \<subseteq> Collect (split R)"
52731
dacd47a0633f transfer rule for {c,d}tor_{,un}fold
traytel
parents: 52730
diff changeset
   204
  unfolding vimage2p_def convol_def by auto
52719
480a3479fa47 transfer rule for map (not yet registered as a transfer rule)
traytel
parents: 52660
diff changeset
   205
54961
e60428f432bc new codatatype example: stream processors
traytel
parents: 54841
diff changeset
   206
lemma vimage2p_Grp: "vimage2p f g P = Grp UNIV f OO P OO (Grp UNIV g)\<inverse>\<inverse>"
e60428f432bc new codatatype example: stream processors
traytel
parents: 54841
diff changeset
   207
  unfolding vimage2p_def Grp_def by auto
e60428f432bc new codatatype example: stream processors
traytel
parents: 54841
diff changeset
   208
58106
c8cba801c483 generate 'set_transfer' for BNFs
desharna
parents: 58104
diff changeset
   209
lemma subst_Pair: "P x y \<Longrightarrow> a = (x, y) \<Longrightarrow> P (fst a) (snd a)"
c8cba801c483 generate 'set_transfer' for BNFs
desharna
parents: 58104
diff changeset
   210
  by simp
c8cba801c483 generate 'set_transfer' for BNFs
desharna
parents: 58104
diff changeset
   211
58352
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   212
lemma comp_apply_eq: "f (g x) = h (k x) \<Longrightarrow> (f \<circ> g) x = (h \<circ> k) x"
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   213
  unfolding comp_apply by assumption
37745650a3f4 register 'prod' and 'sum' as datatypes, to allow N2M through them
blanchet
parents: 58106
diff changeset
   214
57398
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
   215
ML_file "Tools/BNF/bnf_util.ML"
882091eb1e9a merged two small theory files
blanchet
parents: 56635
diff changeset
   216
ML_file "Tools/BNF/bnf_tactics.ML"
55062
6d3fad6f01c9 made BNF compile after move to HOL
blanchet
parents: 55059
diff changeset
   217
ML_file "Tools/BNF/bnf_def_tactics.ML"
6d3fad6f01c9 made BNF compile after move to HOL
blanchet
parents: 55059
diff changeset
   218
ML_file "Tools/BNF/bnf_def.ML"
49309
f20b24214ac2 split basic BNFs into really basic ones and others, and added Andreas Lochbihler's "option" BNF
blanchet
parents: 49286
diff changeset
   219
48975
7f79f94a432c added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
blanchet
parents:
diff changeset
   220
end