src/HOL/Product_Type.thy
author haftmann
Thu, 18 Nov 2010 17:01:16 +0100
changeset 40607 30d512bf47a7
parent 40590 b994d855dbd2
child 40702 cf26dd7395e4
permissions -rw-r--r--
map_pair replaces prod_fun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Product_Type.thy
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     3
    Copyright   1992  University of Cambridge
11777
wenzelm
parents: 11602
diff changeset
     4
*)
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     5
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
     6
header {* Cartesian products *}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14952
diff changeset
     8
theory Product_Type
33959
2afc55e8ed27 bootstrap datatype_rep_proofs in Datatype.thy (avoids unchecked dynamic name references)
haftmann
parents: 33638
diff changeset
     9
imports Typedef Inductive Fun
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    10
uses
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    11
  ("Tools/split_rule.ML")
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
    12
  ("Tools/inductive_codegen.ML")
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31667
diff changeset
    13
  ("Tools/inductive_set.ML")
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14952
diff changeset
    14
begin
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    15
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    16
subsection {* @{typ bool} is a datatype *}
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    17
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
    18
rep_datatype True False by (auto intro: bool_induct)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    19
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    20
declare case_split [cases type: bool]
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    21
  -- "prefer plain propositional version"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    22
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
    23
lemma
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    24
  shows [code]: "HOL.equal False P \<longleftrightarrow> \<not> P"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    25
    and [code]: "HOL.equal True P \<longleftrightarrow> P" 
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    26
    and [code]: "HOL.equal P False \<longleftrightarrow> \<not> P" 
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    27
    and [code]: "HOL.equal P True \<longleftrightarrow> P"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    28
    and [code nbe]: "HOL.equal P P \<longleftrightarrow> True"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    29
  by (simp_all add: equal)
25534
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    30
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    31
code_const "HOL.equal \<Colon> bool \<Rightarrow> bool \<Rightarrow> bool"
39272
0b61951d2682 Haskell == is infix, not infixl
haftmann
parents: 39198
diff changeset
    32
  (Haskell infix 4 "==")
25534
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    33
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    34
code_instance bool :: equal
25534
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    35
  (Haskell -)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    36
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    37
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
    38
subsection {* The @{text unit} type *}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    39
40590
b994d855dbd2 typedef (open) unit
huffman
parents: 39302
diff changeset
    40
typedef (open) unit = "{True}"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    41
proof
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
    42
  show "True : ?unit" ..
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    43
qed
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    44
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    45
definition
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    46
  Unity :: unit    ("'(')")
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    47
where
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    48
  "() = Abs_unit True"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    49
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
    50
lemma unit_eq [no_atp]: "u = ()"
40590
b994d855dbd2 typedef (open) unit
huffman
parents: 39302
diff changeset
    51
  by (induct u) (simp add: Unity_def)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    52
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    53
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    54
  Simplification procedure for @{thm [source] unit_eq}.  Cannot use
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    55
  this rule directly --- it loops!
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    56
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    57
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26358
diff changeset
    58
ML {*
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12338
diff changeset
    59
  val unit_eq_proc =
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    60
    let val unit_meta_eq = mk_meta_eq @{thm unit_eq} in
38715
6513ea67d95d renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents: 37808
diff changeset
    61
      Simplifier.simproc_global @{theory} "unit_eq" ["x::unit"]
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
    62
      (fn _ => fn _ => fn t => if HOLogic.is_unit t then NONE else SOME unit_meta_eq)
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12338
diff changeset
    63
    end;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    64
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    65
  Addsimprocs [unit_eq_proc];
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    66
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    67
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
    68
rep_datatype "()" by simp
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    69
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    70
lemma unit_all_eq1: "(!!x::unit. PROP P x) == PROP P ()"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    71
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    72
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    73
lemma unit_all_eq2: "(!!x::unit. PROP P) == PROP P"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    74
  by (rule triv_forall_equality)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    75
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    76
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    77
  This rewrite counters the effect of @{text unit_eq_proc} on @{term
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    78
  [source] "%u::unit. f u"}, replacing it by @{term [source]
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    79
  f} rather than by @{term [source] "%u. f ()"}.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    80
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    81
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
    82
lemma unit_abs_eta_conv [simp,no_atp]: "(%u::unit. f ()) = f"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    83
  by (rule ext) simp
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    84
30924
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    85
instantiation unit :: default
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    86
begin
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    87
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    88
definition "default = ()"
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    89
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    90
instance ..
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    91
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    92
end
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    93
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
    94
lemma [code]:
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
    95
  "HOL.equal (u\<Colon>unit) v \<longleftrightarrow> True" unfolding equal unit_eq [of u] unit_eq [of v] by rule+
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    96
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    97
code_type unit
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    98
  (SML "unit")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    99
  (OCaml "unit")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   100
  (Haskell "()")
34886
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   101
  (Scala "Unit")
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   102
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   103
code_const Unity
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   104
  (SML "()")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   105
  (OCaml "()")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   106
  (Haskell "()")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   107
  (Scala "()")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   108
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
   109
code_instance unit :: equal
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   110
  (Haskell -)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   111
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
   112
code_const "HOL.equal \<Colon> unit \<Rightarrow> unit \<Rightarrow> bool"
39272
0b61951d2682 Haskell == is infix, not infixl
haftmann
parents: 39198
diff changeset
   113
  (Haskell infix 4 "==")
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   114
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   115
code_reserved SML
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   116
  unit
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   117
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   118
code_reserved OCaml
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   119
  unit
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   120
34886
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   121
code_reserved Scala
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   122
  Unit
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   123
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   124
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   125
subsection {* The product type *}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   126
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   127
subsubsection {* Type definition *}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   128
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   129
definition Pair_Rep :: "'a \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool" where
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   130
  "Pair_Rep a b = (\<lambda>x y. x = a \<and> y = b)"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   131
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   132
typedef ('a, 'b) prod (infixr "*" 20)
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   133
  = "{f. \<exists>a b. f = Pair_Rep (a\<Colon>'a) (b\<Colon>'b)}"
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   134
proof
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   135
  fix a b show "Pair_Rep a b \<in> ?prod"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   136
    by rule+
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   137
qed
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   138
35427
ad039d29e01c proper (type_)notation;
wenzelm
parents: 35365
diff changeset
   139
type_notation (xsymbols)
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   140
  "prod"  ("(_ \<times>/ _)" [21, 20] 20)
35427
ad039d29e01c proper (type_)notation;
wenzelm
parents: 35365
diff changeset
   141
type_notation (HTML output)
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   142
  "prod"  ("(_ \<times>/ _)" [21, 20] 20)
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   143
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   144
definition Pair :: "'a \<Rightarrow> 'b \<Rightarrow> 'a \<times> 'b" where
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   145
  "Pair a b = Abs_prod (Pair_Rep a b)"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   146
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   147
rep_datatype Pair proof -
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   148
  fix P :: "'a \<times> 'b \<Rightarrow> bool" and p
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   149
  assume "\<And>a b. P (Pair a b)"
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   150
  then show "P p" by (cases p) (auto simp add: prod_def Pair_def Pair_Rep_def)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   151
next
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   152
  fix a c :: 'a and b d :: 'b
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   153
  have "Pair_Rep a b = Pair_Rep c d \<longleftrightarrow> a = c \<and> b = d"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   154
    by (auto simp add: Pair_Rep_def fun_eq_iff)
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   155
  moreover have "Pair_Rep a b \<in> prod" and "Pair_Rep c d \<in> prod"
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   156
    by (auto simp add: prod_def)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   157
  ultimately show "Pair a b = Pair c d \<longleftrightarrow> a = c \<and> b = d"
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   158
    by (simp add: Pair_def Abs_prod_inject)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   159
qed
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   160
37704
c6161bee8486 adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
blanchet
parents: 37678
diff changeset
   161
declare prod.simps(2) [nitpick_simp del]
c6161bee8486 adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
blanchet
parents: 37678
diff changeset
   162
37411
c88c44156083 removed simplifier congruence rule of "prod_case"
haftmann
parents: 37389
diff changeset
   163
declare weak_case_cong [cong del]
c88c44156083 removed simplifier congruence rule of "prod_case"
haftmann
parents: 37389
diff changeset
   164
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   165
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   166
subsubsection {* Tuple syntax *}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   167
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   168
abbreviation (input) split :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c" where
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   169
  "split \<equiv> prod_case"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   170
11777
wenzelm
parents: 11602
diff changeset
   171
text {*
wenzelm
parents: 11602
diff changeset
   172
  Patterns -- extends pre-defined type @{typ pttrn} used in
wenzelm
parents: 11602
diff changeset
   173
  abstractions.
wenzelm
parents: 11602
diff changeset
   174
*}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   175
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   176
nonterminals
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   177
  tuple_args patterns
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   178
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   179
syntax
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   180
  "_tuple"      :: "'a => tuple_args => 'a * 'b"        ("(1'(_,/ _'))")
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   181
  "_tuple_arg"  :: "'a => tuple_args"                   ("_")
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   182
  "_tuple_args" :: "'a => tuple_args => tuple_args"     ("_,/ _")
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   183
  "_pattern"    :: "[pttrn, patterns] => pttrn"         ("'(_,/ _')")
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   184
  ""            :: "pttrn => patterns"                  ("_")
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   185
  "_patterns"   :: "[pttrn, patterns] => patterns"      ("_,/ _")
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   186
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   187
translations
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   188
  "(x, y)" == "CONST Pair x y"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   189
  "_tuple x (_tuple_args y z)" == "_tuple x (_tuple_arg (_tuple y z))"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   190
  "%(x, y, zs). b" == "CONST prod_case (%x (y, zs). b)"
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   191
  "%(x, y). b" == "CONST prod_case (%x y. b)"
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   192
  "_abs (CONST Pair x y) t" => "%(x, y). t"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   193
  -- {* The last rule accommodates tuples in `case C ... (x,y) ... => ...'
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   194
     The (x,y) is parsed as `Pair x y' because it is logic, not pttrn *}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   195
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   196
(*reconstruct pattern from (nested) splits, avoiding eta-contraction of body;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   197
  works best with enclosing "let", if "let" does not avoid eta-contraction*)
14359
3d9948163018 Added print translation for pairs
schirmer
parents: 14337
diff changeset
   198
print_translation {*
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   199
let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   200
  fun split_tr' [Abs (x, T, t as (Abs abs))] =
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   201
        (* split (%x y. t) => %(x,y) t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   202
        let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   203
          val (y, t') = atomic_abs_tr' abs;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   204
          val (x', t'') = atomic_abs_tr' (x, T, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   205
        in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   206
          Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   207
            (Syntax.const @{syntax_const "_pattern"} $ x' $ y) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   208
        end
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   209
    | split_tr' [Abs (x, T, (s as Const (@{const_syntax prod_case}, _) $ t))] =
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   210
        (* split (%x. (split (%y z. t))) => %(x,y,z). t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   211
        let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   212
          val Const (@{syntax_const "_abs"}, _) $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   213
            (Const (@{syntax_const "_pattern"}, _) $ y $ z) $ t' = split_tr' [t];
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   214
          val (x', t'') = atomic_abs_tr' (x, T, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   215
        in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   216
          Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   217
            (Syntax.const @{syntax_const "_pattern"} $ x' $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   218
              (Syntax.const @{syntax_const "_patterns"} $ y $ z)) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   219
        end
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   220
    | split_tr' [Const (@{const_syntax prod_case}, _) $ t] =
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   221
        (* split (split (%x y z. t)) => %((x, y), z). t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   222
        split_tr' [(split_tr' [t])] (* inner split_tr' creates next pattern *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   223
    | split_tr' [Const (@{syntax_const "_abs"}, _) $ x_y $ Abs abs] =
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   224
        (* split (%pttrn z. t) => %(pttrn,z). t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   225
        let val (z, t) = atomic_abs_tr' abs in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   226
          Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   227
            (Syntax.const @{syntax_const "_pattern"} $ x_y $ z) $ t
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   228
        end
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   229
    | split_tr' _ = raise Match;
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   230
in [(@{const_syntax prod_case}, split_tr')] end
14359
3d9948163018 Added print translation for pairs
schirmer
parents: 14337
diff changeset
   231
*}
3d9948163018 Added print translation for pairs
schirmer
parents: 14337
diff changeset
   232
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   233
(* print "split f" as "\<lambda>(x,y). f x y" and "split (\<lambda>x. f x)" as "\<lambda>(x,y). f x y" *) 
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   234
typed_print_translation {*
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   235
let
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   236
  fun split_guess_names_tr' _ T [Abs (x, _, Abs _)] = raise Match
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   237
    | split_guess_names_tr' _ T [Abs (x, xT, t)] =
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   238
        (case (head_of t) of
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   239
          Const (@{const_syntax prod_case}, _) => raise Match
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   240
        | _ =>
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   241
          let 
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   242
            val (_ :: yT :: _) = binder_types (domain_type T) handle Bind => raise Match;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   243
            val (y, t') = atomic_abs_tr' ("y", yT, incr_boundvars 1 t $ Bound 0);
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   244
            val (x', t'') = atomic_abs_tr' (x, xT, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   245
          in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   246
            Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   247
              (Syntax.const @{syntax_const "_pattern"} $ x' $ y) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   248
          end)
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   249
    | split_guess_names_tr' _ T [t] =
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   250
        (case head_of t of
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   251
          Const (@{const_syntax prod_case}, _) => raise Match
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   252
        | _ =>
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   253
          let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   254
            val (xT :: yT :: _) = binder_types (domain_type T) handle Bind => raise Match;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   255
            val (y, t') = atomic_abs_tr' ("y", yT, incr_boundvars 2 t $ Bound 1 $ Bound 0);
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   256
            val (x', t'') = atomic_abs_tr' ("x", xT, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   257
          in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   258
            Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   259
              (Syntax.const @{syntax_const "_pattern"} $ x' $ y) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   260
          end)
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   261
    | split_guess_names_tr' _ _ _ = raise Match;
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   262
in [(@{const_syntax prod_case}, split_guess_names_tr')] end
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   263
*}
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   264
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   265
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   266
subsubsection {* Code generator setup *}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   267
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   268
code_type prod
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   269
  (SML infix 2 "*")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   270
  (OCaml infix 2 "*")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   271
  (Haskell "!((_),/ (_))")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   272
  (Scala "((_),/ (_))")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   273
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   274
code_const Pair
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   275
  (SML "!((_),/ (_))")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   276
  (OCaml "!((_),/ (_))")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   277
  (Haskell "!((_),/ (_))")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   278
  (Scala "!((_),/ (_))")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   279
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
   280
code_instance prod :: equal
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   281
  (Haskell -)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   282
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
   283
code_const "HOL.equal \<Colon> 'a \<times> 'b \<Rightarrow> 'a \<times> 'b \<Rightarrow> bool"
39272
0b61951d2682 Haskell == is infix, not infixl
haftmann
parents: 39198
diff changeset
   284
  (Haskell infix 4 "==")
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   285
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   286
types_code
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   287
  "prod"     ("(_ */ _)")
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   288
attach (term_of) {*
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   289
fun term_of_prod aF aT bF bT (x, y) = HOLogic.pair_const aT bT $ aF x $ bF y;
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   290
*}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   291
attach (test) {*
37808
e604e5f9bb6a correcting function name of generator for products of traditional code generator (introduced in 0040bafffdef)
bulwahn
parents: 37765
diff changeset
   292
fun gen_prod aG aT bG bT i =
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   293
  let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   294
    val (x, t) = aG i;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   295
    val (y, u) = bG i
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   296
  in ((x, y), fn () => HOLogic.pair_const aT bT $ t () $ u ()) end;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   297
*}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   298
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   299
consts_code
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   300
  "Pair"    ("(_,/ _)")
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   301
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   302
setup {*
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   303
let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   304
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   305
fun strip_abs_split 0 t = ([], t)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   306
  | strip_abs_split i (Abs (s, T, t)) =
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   307
      let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   308
        val s' = Codegen.new_name t s;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   309
        val v = Free (s', T)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   310
      in apfst (cons v) (strip_abs_split (i-1) (subst_bound (v, t))) end
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   311
  | strip_abs_split i (u as Const (@{const_name prod_case}, _) $ t) =
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   312
      (case strip_abs_split (i+1) t of
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   313
        (v :: v' :: vs, u) => (HOLogic.mk_prod (v, v') :: vs, u)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   314
      | _ => ([], u))
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   315
  | strip_abs_split i t =
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   316
      strip_abs_split i (Abs ("x", hd (binder_types (fastype_of t)), t $ Bound 0));
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   317
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   318
fun let_codegen thy defs dep thyname brack t gr =
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   319
  (case strip_comb t of
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   320
    (t1 as Const (@{const_name Let}, _), t2 :: t3 :: ts) =>
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   321
    let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   322
      fun dest_let (l as Const (@{const_name Let}, _) $ t $ u) =
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   323
          (case strip_abs_split 1 u of
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   324
             ([p], u') => apfst (cons (p, t)) (dest_let u')
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   325
           | _ => ([], l))
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   326
        | dest_let t = ([], t);
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   327
      fun mk_code (l, r) gr =
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   328
        let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   329
          val (pl, gr1) = Codegen.invoke_codegen thy defs dep thyname false l gr;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   330
          val (pr, gr2) = Codegen.invoke_codegen thy defs dep thyname false r gr1;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   331
        in ((pl, pr), gr2) end
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   332
    in case dest_let (t1 $ t2 $ t3) of
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   333
        ([], _) => NONE
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   334
      | (ps, u) =>
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   335
          let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   336
            val (qs, gr1) = fold_map mk_code ps gr;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   337
            val (pu, gr2) = Codegen.invoke_codegen thy defs dep thyname false u gr1;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   338
            val (pargs, gr3) = fold_map
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   339
              (Codegen.invoke_codegen thy defs dep thyname true) ts gr2
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   340
          in
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   341
            SOME (Codegen.mk_app brack
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   342
              (Pretty.blk (0, [Codegen.str "let ", Pretty.blk (0, flat
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   343
                  (separate [Codegen.str ";", Pretty.brk 1] (map (fn (pl, pr) =>
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   344
                    [Pretty.block [Codegen.str "val ", pl, Codegen.str " =",
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   345
                       Pretty.brk 1, pr]]) qs))),
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   346
                Pretty.brk 1, Codegen.str "in ", pu,
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   347
                Pretty.brk 1, Codegen.str "end"])) pargs, gr3)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   348
          end
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   349
    end
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   350
  | _ => NONE);
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   351
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   352
fun split_codegen thy defs dep thyname brack t gr = (case strip_comb t of
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   353
    (t1 as Const (@{const_name prod_case}, _), t2 :: ts) =>
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   354
      let
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   355
        val ([p], u) = strip_abs_split 1 (t1 $ t2);
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   356
        val (q, gr1) = Codegen.invoke_codegen thy defs dep thyname false p gr;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   357
        val (pu, gr2) = Codegen.invoke_codegen thy defs dep thyname false u gr1;
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   358
        val (pargs, gr3) = fold_map
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   359
          (Codegen.invoke_codegen thy defs dep thyname true) ts gr2
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   360
      in
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   361
        SOME (Codegen.mk_app brack
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   362
          (Pretty.block [Codegen.str "(fn ", q, Codegen.str " =>",
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   363
            Pretty.brk 1, pu, Codegen.str ")"]) pargs, gr2)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   364
      end
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   365
  | _ => NONE);
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   366
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   367
in
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   368
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   369
  Codegen.add_codegen "let_codegen" let_codegen
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   370
  #> Codegen.add_codegen "split_codegen" split_codegen
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   371
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   372
end
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   373
*}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   374
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   375
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   376
subsubsection {* Fundamental operations and properties *}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   377
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   378
lemma surj_pair [simp]: "EX x y. p = (x, y)"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   379
  by (cases p) simp
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   380
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   381
definition fst :: "'a \<times> 'b \<Rightarrow> 'a" where
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   382
  "fst p = (case p of (a, b) \<Rightarrow> a)"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   383
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   384
definition snd :: "'a \<times> 'b \<Rightarrow> 'b" where
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   385
  "snd p = (case p of (a, b) \<Rightarrow> b)"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   386
22886
cdff6ef76009 moved recfun_codegen.ML to Code_Generator.thy
haftmann
parents: 22838
diff changeset
   387
lemma fst_conv [simp, code]: "fst (a, b) = a"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   388
  unfolding fst_def by simp
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   389
22886
cdff6ef76009 moved recfun_codegen.ML to Code_Generator.thy
haftmann
parents: 22838
diff changeset
   390
lemma snd_conv [simp, code]: "snd (a, b) = b"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   391
  unfolding snd_def by simp
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   392
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   393
code_const fst and snd
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   394
  (Haskell "fst" and "snd")
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   395
37704
c6161bee8486 adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
blanchet
parents: 37678
diff changeset
   396
lemma prod_case_unfold [nitpick_def]: "prod_case = (%c p. c (fst p) (snd p))"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   397
  by (simp add: fun_eq_iff split: prod.split)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   398
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   399
lemma fst_eqD: "fst (x, y) = a ==> x = a"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   400
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   401
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   402
lemma snd_eqD: "snd (x, y) = a ==> y = a"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   403
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   404
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   405
lemma pair_collapse [simp]: "(fst p, snd p) = p"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   406
  by (cases p) simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   407
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   408
lemmas surjective_pairing = pair_collapse [symmetric]
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   409
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   410
lemma Pair_fst_snd_eq: "s = t \<longleftrightarrow> fst s = fst t \<and> snd s = snd t"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   411
  by (cases s, cases t) simp
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   412
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   413
lemma prod_eqI [intro?]: "fst p = fst q \<Longrightarrow> snd p = snd q \<Longrightarrow> p = q"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   414
  by (simp add: Pair_fst_snd_eq)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   415
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   416
lemma split_conv [simp, code]: "split f (a, b) = f a b"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   417
  by (fact prod.cases)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   418
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   419
lemma splitI: "f a b \<Longrightarrow> split f (a, b)"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   420
  by (rule split_conv [THEN iffD2])
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   421
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   422
lemma splitD: "split f (a, b) \<Longrightarrow> f a b"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   423
  by (rule split_conv [THEN iffD1])
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   424
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   425
lemma split_Pair [simp]: "(\<lambda>(x, y). (x, y)) = id"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   426
  by (simp add: fun_eq_iff split: prod.split)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   427
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   428
lemma split_eta: "(\<lambda>(x, y). f (x, y)) = f"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   429
  -- {* Subsumes the old @{text split_Pair} when @{term f} is the identity function. *}
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   430
  by (simp add: fun_eq_iff split: prod.split)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   431
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   432
lemma split_comp: "split (f \<circ> g) x = f (g (fst x)) (snd x)"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   433
  by (cases x) simp
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   434
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   435
lemma split_twice: "split f (split g p) = split (\<lambda>x y. split f (g x y)) p"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   436
  by (cases p) simp
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   437
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   438
lemma The_split: "The (split P) = (THE xy. P (fst xy) (snd xy))"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   439
  by (simp add: prod_case_unfold)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   440
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   441
lemma split_weak_cong: "p = q \<Longrightarrow> split c p = split c q"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   442
  -- {* Prevents simplification of @{term c}: much faster *}
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   443
  by (fact weak_case_cong)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   444
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   445
lemma cond_split_eta: "(!!x y. f x y = g (x, y)) ==> (%(x, y). f x y) = g"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   446
  by (simp add: split_eta)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   447
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   448
lemma split_paired_all: "(!!x. PROP P x) == (!!a b. PROP P (a, b))"
11820
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   449
proof
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   450
  fix a b
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   451
  assume "!!x. PROP P x"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   452
  then show "PROP P (a, b)" .
11820
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   453
next
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   454
  fix x
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   455
  assume "!!a b. PROP P (a, b)"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   456
  from `PROP P (fst x, snd x)` show "PROP P x" by simp
11820
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   457
qed
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   458
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   459
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   460
  The rule @{thm [source] split_paired_all} does not work with the
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   461
  Simplifier because it also affects premises in congrence rules,
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   462
  where this can lead to premises of the form @{text "!!a b. ... =
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   463
  ?P(a, b)"} which cannot be solved by reflexivity.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   464
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   465
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   466
lemmas split_tupled_all = split_paired_all unit_all_eq2
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   467
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26358
diff changeset
   468
ML {*
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   469
  (* replace parameters of product type by individual component parameters *)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   470
  val safe_full_simp_tac = generic_simp_tac true (true, false, false);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   471
  local (* filtering with exists_paired_all is an essential optimization *)
16121
wenzelm
parents: 15570
diff changeset
   472
    fun exists_paired_all (Const ("all", _) $ Abs (_, T, t)) =
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   473
          can HOLogic.dest_prodT T orelse exists_paired_all t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   474
      | exists_paired_all (t $ u) = exists_paired_all t orelse exists_paired_all u
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   475
      | exists_paired_all (Abs (_, _, t)) = exists_paired_all t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   476
      | exists_paired_all _ = false;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   477
    val ss = HOL_basic_ss
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   478
      addsimps [@{thm split_paired_all}, @{thm unit_all_eq2}, @{thm unit_abs_eta_conv}]
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   479
      addsimprocs [unit_eq_proc];
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   480
  in
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   481
    val split_all_tac = SUBGOAL (fn (t, i) =>
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   482
      if exists_paired_all t then safe_full_simp_tac ss i else no_tac);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   483
    val unsafe_split_all_tac = SUBGOAL (fn (t, i) =>
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   484
      if exists_paired_all t then full_simp_tac ss i else no_tac);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   485
    fun split_all th =
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   486
   if exists_paired_all (Thm.prop_of th) then full_simplify ss th else th;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   487
  end;
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   488
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   489
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   490
declaration {* fn _ =>
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   491
  Classical.map_cs (fn cs => cs addSbefore ("split_all_tac", split_all_tac))
16121
wenzelm
parents: 15570
diff changeset
   492
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   493
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   494
lemma split_paired_All [simp]: "(ALL x. P x) = (ALL a b. P (a, b))"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   495
  -- {* @{text "[iff]"} is not a good idea because it makes @{text blast} loop *}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   496
  by fast
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   497
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   498
lemma split_paired_Ex [simp]: "(EX x. P x) = (EX a b. P (a, b))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   499
  by fast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   500
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   501
lemma split_paired_The: "(THE x. P x) = (THE (a, b). P (a, b))"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   502
  -- {* Can't be added to simpset: loops! *}
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   503
  by (simp add: split_eta)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   504
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   505
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   506
  Simplification procedure for @{thm [source] cond_split_eta}.  Using
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   507
  @{thm [source] split_eta} as a rewrite rule is not general enough,
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   508
  and using @{thm [source] cond_split_eta} directly would render some
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   509
  existing proofs very inefficient; similarly for @{text
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   510
  split_beta}.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   511
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   512
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26358
diff changeset
   513
ML {*
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   514
local
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   515
  val cond_split_eta_ss = HOL_basic_ss addsimps @{thms cond_split_eta};
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   516
  fun Pair_pat k 0 (Bound m) = (m = k)
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   517
    | Pair_pat k i (Const (@{const_name Pair},  _) $ Bound m $ t) =
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   518
        i > 0 andalso m = k + i andalso Pair_pat k (i - 1) t
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   519
    | Pair_pat _ _ _ = false;
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   520
  fun no_args k i (Abs (_, _, t)) = no_args (k + 1) i t
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   521
    | no_args k i (t $ u) = no_args k i t andalso no_args k i u
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   522
    | no_args k i (Bound m) = m < k orelse m > k + i
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   523
    | no_args _ _ _ = true;
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   524
  fun split_pat tp i (Abs  (_, _, t)) = if tp 0 i t then SOME (i, t) else NONE
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   525
    | split_pat tp i (Const (@{const_name prod_case}, _) $ Abs (_, _, t)) = split_pat tp (i + 1) t
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   526
    | split_pat tp i _ = NONE;
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   527
  fun metaeq ss lhs rhs = mk_meta_eq (Goal.prove (Simplifier.the_context ss) [] []
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   528
        (HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs)))
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 18220
diff changeset
   529
        (K (simp_tac (Simplifier.inherit_context ss cond_split_eta_ss) 1)));
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   530
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   531
  fun beta_term_pat k i (Abs (_, _, t)) = beta_term_pat (k + 1) i t
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   532
    | beta_term_pat k i (t $ u) =
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   533
        Pair_pat k i (t $ u) orelse (beta_term_pat k i t andalso beta_term_pat k i u)
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   534
    | beta_term_pat k i t = no_args k i t;
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   535
  fun eta_term_pat k i (f $ arg) = no_args k i f andalso Pair_pat k i arg
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   536
    | eta_term_pat _ _ _ = false;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   537
  fun subst arg k i (Abs (x, T, t)) = Abs (x, T, subst arg (k+1) i t)
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   538
    | subst arg k i (t $ u) =
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   539
        if Pair_pat k i (t $ u) then incr_boundvars k arg
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   540
        else (subst arg k i t $ subst arg k i u)
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   541
    | subst arg k i t = t;
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   542
  fun beta_proc ss (s as Const (@{const_name prod_case}, _) $ Abs (_, _, t) $ arg) =
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   543
        (case split_pat beta_term_pat 1 t of
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   544
          SOME (i, f) => SOME (metaeq ss s (subst arg 0 i f))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   545
        | NONE => NONE)
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   546
    | beta_proc _ _ = NONE;
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   547
  fun eta_proc ss (s as Const (@{const_name prod_case}, _) $ Abs (_, _, t)) =
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   548
        (case split_pat eta_term_pat 1 t of
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   549
          SOME (_, ft) => SOME (metaeq ss s (let val (f $ arg) = ft in f end))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   550
        | NONE => NONE)
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   551
    | eta_proc _ _ = NONE;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   552
in
38715
6513ea67d95d renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents: 37808
diff changeset
   553
  val split_beta_proc = Simplifier.simproc_global @{theory} "split_beta" ["split f z"] (K beta_proc);
6513ea67d95d renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
wenzelm
parents: 37808
diff changeset
   554
  val split_eta_proc = Simplifier.simproc_global @{theory} "split_eta" ["split f"] (K eta_proc);
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   555
end;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   556
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   557
Addsimprocs [split_beta_proc, split_eta_proc];
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   558
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   559
26798
a9134a089106 split_beta is now declared as monotonicity rule, to allow bounded
berghofe
parents: 26588
diff changeset
   560
lemma split_beta [mono]: "(%(x, y). P x y) z = P (fst z) (snd z)"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   561
  by (subst surjective_pairing, rule split_conv)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   562
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
   563
lemma split_split [no_atp]: "R(split c p) = (ALL x y. p = (x, y) --> R(c x y))"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   564
  -- {* For use with @{text split} and the Simplifier. *}
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15422
diff changeset
   565
  by (insert surj_pair [of p], clarify, simp)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   566
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   567
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   568
  @{thm [source] split_split} could be declared as @{text "[split]"}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   569
  done after the Splitter has been speeded up significantly;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   570
  precompute the constants involved and don't do anything unless the
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   571
  current goal contains one of those constants.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   572
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   573
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
   574
lemma split_split_asm [no_atp]: "R (split c p) = (~(EX x y. p = (x, y) & (~R (c x y))))"
14208
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   575
by (subst split_split, simp)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   576
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   577
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   578
  \medskip @{term split} used as a logical connective or set former.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   579
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   580
  \medskip These rules are for use with @{text blast}; could instead
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   581
  call @{text simp} using @{thm [source] split} as rewrite. *}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   582
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   583
lemma splitI2: "!!p. [| !!a b. p = (a, b) ==> c a b |] ==> split c p"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   584
  apply (simp only: split_tupled_all)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   585
  apply (simp (no_asm_simp))
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   586
  done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   587
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   588
lemma splitI2': "!!p. [| !!a b. (a, b) = p ==> c a b x |] ==> split c p x"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   589
  apply (simp only: split_tupled_all)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   590
  apply (simp (no_asm_simp))
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   591
  done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   592
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   593
lemma splitE: "split c p ==> (!!x y. p = (x, y) ==> c x y ==> Q) ==> Q"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   594
  by (induct p) auto
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   595
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   596
lemma splitE': "split c p z ==> (!!x y. p = (x, y) ==> c x y z ==> Q) ==> Q"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   597
  by (induct p) auto
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   598
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   599
lemma splitE2:
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   600
  "[| Q (split P z);  !!x y. [|z = (x, y); Q (P x y)|] ==> R |] ==> R"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   601
proof -
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   602
  assume q: "Q (split P z)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   603
  assume r: "!!x y. [|z = (x, y); Q (P x y)|] ==> R"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   604
  show R
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   605
    apply (rule r surjective_pairing)+
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   606
    apply (rule split_beta [THEN subst], rule q)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   607
    done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   608
qed
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   609
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   610
lemma splitD': "split R (a,b) c ==> R a b c"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   611
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   612
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   613
lemma mem_splitI: "z: c a b ==> z: split c (a, b)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   614
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   615
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   616
lemma mem_splitI2: "!!p. [| !!a b. p = (a, b) ==> z: c a b |] ==> z: split c p"
14208
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   617
by (simp only: split_tupled_all, simp)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   618
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   619
lemma mem_splitE:
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   620
  assumes major: "z \<in> split c p"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   621
    and cases: "\<And>x y. p = (x, y) \<Longrightarrow> z \<in> c x y \<Longrightarrow> Q"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   622
  shows Q
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   623
  by (rule major [unfolded prod_case_unfold] cases surjective_pairing)+
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   624
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   625
declare mem_splitI2 [intro!] mem_splitI [intro!] splitI2' [intro!] splitI2 [intro!] splitI [intro!]
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   626
declare mem_splitE [elim!] splitE' [elim!] splitE [elim!]
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   627
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   628
ML {*
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   629
local (* filtering with exists_p_split is an essential optimization *)
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   630
  fun exists_p_split (Const (@{const_name prod_case},_) $ _ $ (Const (@{const_name Pair},_)$_$_)) = true
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   631
    | exists_p_split (t $ u) = exists_p_split t orelse exists_p_split u
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   632
    | exists_p_split (Abs (_, _, t)) = exists_p_split t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   633
    | exists_p_split _ = false;
35364
b8c62d60195c more antiquotations;
wenzelm
parents: 35115
diff changeset
   634
  val ss = HOL_basic_ss addsimps @{thms split_conv};
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   635
in
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   636
val split_conv_tac = SUBGOAL (fn (t, i) =>
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   637
    if exists_p_split t then safe_full_simp_tac ss i else no_tac);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   638
end;
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   639
*}
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   640
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   641
(* This prevents applications of splitE for already splitted arguments leading
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   642
   to quite time-consuming computations (in particular for nested tuples) *)
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   643
declaration {* fn _ =>
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   644
  Classical.map_cs (fn cs => cs addSbefore ("split_conv_tac", split_conv_tac))
16121
wenzelm
parents: 15570
diff changeset
   645
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   646
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
   647
lemma split_eta_SetCompr [simp,no_atp]: "(%u. EX x y. u = (x, y) & P (x, y)) = P"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   648
  by (rule ext) fast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   649
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
   650
lemma split_eta_SetCompr2 [simp,no_atp]: "(%u. EX x y. u = (x, y) & P x y) = split P"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   651
  by (rule ext) fast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   652
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   653
lemma split_part [simp]: "(%(a,b). P & Q a b) = (%ab. P & split Q ab)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   654
  -- {* Allows simplifications of nested splits in case of independent predicates. *}
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   655
  by (rule ext) blast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   656
14337
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   657
(* Do NOT make this a simp rule as it
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   658
   a) only helps in special situations
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   659
   b) can lead to nontermination in the presence of split_def
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   660
*)
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   661
lemma split_comp_eq: 
20415
e3d2d7b01279 explicit type variables prevent empty sorts
paulson
parents: 20380
diff changeset
   662
  fixes f :: "'a => 'b => 'c" and g :: "'d => 'a"
e3d2d7b01279 explicit type variables prevent empty sorts
paulson
parents: 20380
diff changeset
   663
  shows "(%u. f (g (fst u)) (snd u)) = (split (%x. f (g x)))"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   664
  by (rule ext) auto
14101
d25c23e46173 added upd_fst, upd_snd, some thms
oheimb
parents: 13480
diff changeset
   665
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   666
lemma pair_imageI [intro]: "(a, b) : A ==> f a b : (%(a, b). f a b) ` A"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   667
  apply (rule_tac x = "(a, b)" in image_eqI)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   668
   apply auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   669
  done
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   670
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   671
lemma The_split_eq [simp]: "(THE (x',y'). x = x' & y = y') = (x, y)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   672
  by blast
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   673
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   674
(*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   675
the following  would be slightly more general,
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   676
but cannot be used as rewrite rule:
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   677
### Cannot add premise as rewrite rule because it contains (type) unknowns:
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   678
### ?y = .x
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   679
Goal "[| P y; !!x. P x ==> x = y |] ==> (@(x',y). x = x' & P y) = (x,y)"
14208
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   680
by (rtac some_equality 1)
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   681
by ( Simp_tac 1)
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   682
by (split_all_tac 1)
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   683
by (Asm_full_simp_tac 1)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   684
qed "The_split_eq";
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   685
*)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   686
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   687
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   688
  Setup of internal @{text split_rule}.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   689
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   690
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   691
lemmas prod_caseI = prod.cases [THEN iffD2, standard]
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   692
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   693
lemma prod_caseI2: "!!p. [| !!a b. p = (a, b) ==> c a b |] ==> prod_case c p"
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   694
  by (fact splitI2)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   695
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   696
lemma prod_caseI2': "!!p. [| !!a b. (a, b) = p ==> c a b x |] ==> prod_case c p x"
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   697
  by (fact splitI2')
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   698
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   699
lemma prod_caseE: "prod_case c p ==> (!!x y. p = (x, y) ==> c x y ==> Q) ==> Q"
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   700
  by (fact splitE)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   701
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   702
lemma prod_caseE': "prod_case c p z ==> (!!x y. p = (x, y) ==> c x y z ==> Q) ==> Q"
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   703
  by (fact splitE')
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   704
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   705
declare prod_caseI [intro!]
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   706
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   707
lemma prod_case_beta:
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   708
  "prod_case f p = f (fst p) (snd p)"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   709
  by (fact split_beta)
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   710
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   711
lemma prod_cases3 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   712
  obtains (fields) a b c where "y = (a, b, c)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   713
  by (cases y, case_tac b) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   714
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   715
lemma prod_induct3 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   716
    "(!!a b c. P (a, b, c)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   717
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   718
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   719
lemma prod_cases4 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   720
  obtains (fields) a b c d where "y = (a, b, c, d)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   721
  by (cases y, case_tac c) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   722
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   723
lemma prod_induct4 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   724
    "(!!a b c d. P (a, b, c, d)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   725
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   726
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   727
lemma prod_cases5 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   728
  obtains (fields) a b c d e where "y = (a, b, c, d, e)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   729
  by (cases y, case_tac d) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   730
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   731
lemma prod_induct5 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   732
    "(!!a b c d e. P (a, b, c, d, e)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   733
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   734
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   735
lemma prod_cases6 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   736
  obtains (fields) a b c d e f where "y = (a, b, c, d, e, f)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   737
  by (cases y, case_tac e) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   738
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   739
lemma prod_induct6 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   740
    "(!!a b c d e f. P (a, b, c, d, e, f)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   741
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   742
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   743
lemma prod_cases7 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   744
  obtains (fields) a b c d e f g where "y = (a, b, c, d, e, f, g)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   745
  by (cases y, case_tac f) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   746
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   747
lemma prod_induct7 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   748
    "(!!a b c d e f g. P (a, b, c, d, e, f, g)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   749
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   750
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   751
lemma split_def:
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   752
  "split = (\<lambda>c p. c (fst p) (snd p))"
37591
d3daea901123 merged constants "split" and "prod_case"
haftmann
parents: 37411
diff changeset
   753
  by (fact prod_case_unfold)
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   754
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   755
definition internal_split :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c" where
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   756
  "internal_split == split"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   757
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   758
lemma internal_split_conv: "internal_split c (a, b) = c a b"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   759
  by (simp only: internal_split_def split_conv)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   760
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   761
use "Tools/split_rule.ML"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   762
setup Split_Rule.setup
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   763
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   764
hide_const internal_split
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   765
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   766
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   767
subsubsection {* Derived operations *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   768
37387
3581483cca6c qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
haftmann
parents: 37278
diff changeset
   769
definition curry    :: "('a \<times> 'b \<Rightarrow> 'c) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'c" where
3581483cca6c qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
haftmann
parents: 37278
diff changeset
   770
  "curry = (\<lambda>c x y. c (x, y))"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   771
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   772
lemma curry_conv [simp, code]: "curry f a b = f (a, b)"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   773
  by (simp add: curry_def)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   774
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   775
lemma curryI [intro!]: "f (a, b) \<Longrightarrow> curry f a b"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   776
  by (simp add: curry_def)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   777
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   778
lemma curryD [dest!]: "curry f a b \<Longrightarrow> f (a, b)"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   779
  by (simp add: curry_def)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   780
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   781
lemma curryE: "curry f a b \<Longrightarrow> (f (a, b) \<Longrightarrow> Q) \<Longrightarrow> Q"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   782
  by (simp add: curry_def)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   783
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   784
lemma curry_split [simp]: "curry (split f) = f"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   785
  by (simp add: curry_def split_def)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   786
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   787
lemma split_curry [simp]: "split (curry f) = f"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   788
  by (simp add: curry_def split_def)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   789
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   790
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   791
  The composition-uncurry combinator.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   792
*}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   793
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   794
notation fcomp (infixl "\<circ>>" 60)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   795
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   796
definition scomp :: "('a \<Rightarrow> 'b \<times> 'c) \<Rightarrow> ('b \<Rightarrow> 'c \<Rightarrow> 'd) \<Rightarrow> 'a \<Rightarrow> 'd" (infixl "\<circ>\<rightarrow>" 60) where
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   797
  "f \<circ>\<rightarrow> g = (\<lambda>x. prod_case g (f x))"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   798
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   799
lemma scomp_unfold: "scomp = (\<lambda>f g x. g (fst (f x)) (snd (f x)))"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   800
  by (simp add: fun_eq_iff scomp_def prod_case_unfold)
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37591
diff changeset
   801
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   802
lemma scomp_apply [simp]: "(f \<circ>\<rightarrow> g) x = prod_case g (f x)"
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   803
  by (simp add: scomp_unfold prod_case_unfold)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   804
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   805
lemma Pair_scomp: "Pair x \<circ>\<rightarrow> f = f x"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   806
  by (simp add: fun_eq_iff scomp_apply)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   807
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   808
lemma scomp_Pair: "x \<circ>\<rightarrow> Pair = x"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   809
  by (simp add: fun_eq_iff scomp_apply)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   810
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   811
lemma scomp_scomp: "(f \<circ>\<rightarrow> g) \<circ>\<rightarrow> h = f \<circ>\<rightarrow> (\<lambda>x. g x \<circ>\<rightarrow> h)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   812
  by (simp add: fun_eq_iff scomp_unfold)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   813
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   814
lemma scomp_fcomp: "(f \<circ>\<rightarrow> g) \<circ>> h = f \<circ>\<rightarrow> (\<lambda>x. g x \<circ>> h)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   815
  by (simp add: fun_eq_iff scomp_unfold fcomp_def)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   816
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   817
lemma fcomp_scomp: "(f \<circ>> g) \<circ>\<rightarrow> h = f \<circ>> (g \<circ>\<rightarrow> h)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   818
  by (simp add: fun_eq_iff scomp_unfold fcomp_apply)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   819
31202
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 30924
diff changeset
   820
code_const scomp
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 30924
diff changeset
   821
  (Eval infixl 3 "#->")
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 30924
diff changeset
   822
37751
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   823
no_notation fcomp (infixl "\<circ>>" 60)
89e16802b6cc nicer xsymbol syntax for fcomp and scomp
haftmann
parents: 37704
diff changeset
   824
no_notation scomp (infixl "\<circ>\<rightarrow>" 60)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   825
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   826
text {*
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   827
  @{term map_pair} --- action of the product functor upon
36664
6302f9ad7047 repaired comments where SOMEthing went utterly wrong (cf. 2b04504fcb69)
krauss
parents: 36622
diff changeset
   828
  functions.
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   829
*}
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   830
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   831
definition map_pair :: "('a \<Rightarrow> 'c) \<Rightarrow> ('b \<Rightarrow> 'd) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c \<times> 'd" where
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   832
  "map_pair f g = (\<lambda>(x, y). (f x, g y))"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   833
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   834
lemma map_pair_simp [simp, code]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   835
  "map_pair f g (a, b) = (f a, g b)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   836
  by (simp add: map_pair_def)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   837
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   838
type_mapper map_pair
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   839
  by (simp_all add: split_paired_all)
37278
307845cc7f51 added lemmas
nipkow
parents: 37166
diff changeset
   840
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   841
lemma fst_map_pair [simp]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   842
  "fst (map_pair f g x) = f (fst x)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   843
  by (cases x) simp_all
37278
307845cc7f51 added lemmas
nipkow
parents: 37166
diff changeset
   844
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   845
lemma snd_prod_fun [simp]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   846
  "snd (map_pair f g x) = g (snd x)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   847
  by (cases x) simp_all
37278
307845cc7f51 added lemmas
nipkow
parents: 37166
diff changeset
   848
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   849
lemma fst_comp_map_pair [simp]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   850
  "fst \<circ> map_pair f g = f \<circ> fst"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   851
  by (rule ext) simp_all
37278
307845cc7f51 added lemmas
nipkow
parents: 37166
diff changeset
   852
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   853
lemma snd_comp_map_pair [simp]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   854
  "snd \<circ> map_pair f g = g \<circ> snd"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   855
  by (rule ext) simp_all
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   856
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   857
lemma map_pair_compose:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   858
  "map_pair (f1 o f2) (g1 o g2) = (map_pair f1 g1 o map_pair f2 g2)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   859
  by (rule ext) (simp add: map_pair.compositionality comp_def)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   860
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   861
lemma map_pair_ident [simp]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   862
  "map_pair (%x. x) (%y. y) = (%z. z)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   863
  by (rule ext) (simp add: map_pair.identity)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   864
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   865
lemma map_pair_imageI [intro]:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   866
  "(a, b) \<in> R \<Longrightarrow> (f a, g b) \<in> map_pair f g ` R"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   867
  by (rule image_eqI) simp_all
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   868
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   869
lemma prod_fun_imageE [elim!]:
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   870
  assumes major: "c \<in> map_pair f g ` R"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   871
    and cases: "\<And>x y. c = (f x, g y) \<Longrightarrow> (x, y) \<in> R \<Longrightarrow> P"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   872
  shows P
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   873
  apply (rule major [THEN imageE])
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   874
  apply (case_tac x)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   875
  apply (rule cases)
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   876
  apply simp_all
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   877
  done
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   878
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   879
definition apfst :: "('a \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c \<times> 'b" where
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   880
  "apfst f = map_pair f id"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   881
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
   882
definition apsnd :: "('b \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'a \<times> 'c" where
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   883
  "apsnd f = map_pair id f"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   884
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   885
lemma apfst_conv [simp, code]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   886
  "apfst f (x, y) = (f x, y)" 
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   887
  by (simp add: apfst_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   888
33638
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   889
lemma apsnd_conv [simp, code]:
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   890
  "apsnd f (x, y) = (x, f y)" 
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   891
  by (simp add: apsnd_def)
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   892
33594
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   893
lemma fst_apfst [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   894
  "fst (apfst f x) = f (fst x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   895
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   896
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   897
lemma fst_apsnd [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   898
  "fst (apsnd f x) = fst x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   899
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   900
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   901
lemma snd_apfst [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   902
  "snd (apfst f x) = snd x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   903
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   904
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   905
lemma snd_apsnd [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   906
  "snd (apsnd f x) = f (snd x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   907
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   908
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   909
lemma apfst_compose:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   910
  "apfst f (apfst g x) = apfst (f \<circ> g) x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   911
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   912
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   913
lemma apsnd_compose:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   914
  "apsnd f (apsnd g x) = apsnd (f \<circ> g) x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   915
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   916
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   917
lemma apfst_apsnd [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   918
  "apfst f (apsnd g x) = (f (fst x), g (snd x))"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   919
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   920
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   921
lemma apsnd_apfst [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   922
  "apsnd f (apfst g x) = (g (fst x), f (snd x))"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   923
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   924
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   925
lemma apfst_id [simp] :
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   926
  "apfst id = id"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   927
  by (simp add: fun_eq_iff)
33594
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   928
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   929
lemma apsnd_id [simp] :
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   930
  "apsnd id = id"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39272
diff changeset
   931
  by (simp add: fun_eq_iff)
33594
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   932
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   933
lemma apfst_eq_conv [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   934
  "apfst f x = apfst g x \<longleftrightarrow> f (fst x) = g (fst x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   935
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   936
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   937
lemma apsnd_eq_conv [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   938
  "apsnd f x = apsnd g x \<longleftrightarrow> f (snd x) = g (snd x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   939
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   940
33638
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   941
lemma apsnd_apfst_commute:
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   942
  "apsnd f (apfst g p) = apfst g (apsnd f p)"
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   943
  by simp
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   944
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   945
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   946
  Disjoint union of a family of sets -- Sigma.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   947
*}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   948
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
   949
definition Sigma :: "['a set, 'a => 'b set] => ('a \<times> 'b) set" where
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   950
  Sigma_def: "Sigma A B == UN x:A. UN y:B x. {Pair x y}"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   951
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   952
abbreviation
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   953
  Times :: "['a set, 'b set] => ('a * 'b) set"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   954
    (infixr "<*>" 80) where
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   955
  "A <*> B == Sigma A (%_. B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   956
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   957
notation (xsymbols)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   958
  Times  (infixr "\<times>" 80)
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
   959
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   960
notation (HTML output)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   961
  Times  (infixr "\<times>" 80)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   962
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   963
syntax
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   964
  "_Sigma" :: "[pttrn, 'a set, 'b set] => ('a * 'b) set"  ("(3SIGMA _:_./ _)" [0, 0, 10] 10)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   965
translations
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   966
  "SIGMA x:A. B" == "CONST Sigma A (%x. B)"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   967
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   968
lemma SigmaI [intro!]: "[| a:A;  b:B(a) |] ==> (a,b) : Sigma A B"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   969
  by (unfold Sigma_def) blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   970
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   971
lemma SigmaE [elim!]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   972
    "[| c: Sigma A B;
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   973
        !!x y.[| x:A;  y:B(x);  c=(x,y) |] ==> P
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   974
     |] ==> P"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   975
  -- {* The general elimination rule. *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   976
  by (unfold Sigma_def) blast
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
   977
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   978
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   979
  Elimination of @{term "(a, b) : A \<times> B"} -- introduces no
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   980
  eigenvariables.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   981
*}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   982
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   983
lemma SigmaD1: "(a, b) : Sigma A B ==> a : A"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   984
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   985
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   986
lemma SigmaD2: "(a, b) : Sigma A B ==> b : B a"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   987
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   988
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   989
lemma SigmaE2:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   990
    "[| (a, b) : Sigma A B;
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   991
        [| a:A;  b:B(a) |] ==> P
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   992
     |] ==> P"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   993
  by blast
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
   994
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   995
lemma Sigma_cong:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   996
     "\<lbrakk>A = B; !!x. x \<in> B \<Longrightarrow> C x = D x\<rbrakk>
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   997
      \<Longrightarrow> (SIGMA x: A. C x) = (SIGMA x: B. D x)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   998
  by auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   999
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1000
lemma Sigma_mono: "[| A <= C; !!x. x:A ==> B x <= D x |] ==> Sigma A B <= Sigma C D"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1001
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1002
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1003
lemma Sigma_empty1 [simp]: "Sigma {} B = {}"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1004
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1005
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1006
lemma Sigma_empty2 [simp]: "A <*> {} = {}"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1007
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1008
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1009
lemma UNIV_Times_UNIV [simp]: "UNIV <*> UNIV = UNIV"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1010
  by auto
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1011
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1012
lemma Compl_Times_UNIV1 [simp]: "- (UNIV <*> A) = UNIV <*> (-A)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1013
  by auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1014
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1015
lemma Compl_Times_UNIV2 [simp]: "- (A <*> UNIV) = (-A) <*> UNIV"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1016
  by auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1017
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1018
lemma mem_Sigma_iff [iff]: "((a,b): Sigma A B) = (a:A & b:B(a))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1019
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1020
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1021
lemma Times_subset_cancel2: "x:C ==> (A <*> C <= B <*> C) = (A <= B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1022
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1023
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1024
lemma Times_eq_cancel2: "x:C ==> (A <*> C = B <*> C) = (A = B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1025
  by (blast elim: equalityE)
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1026
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1027
lemma SetCompr_Sigma_eq:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1028
    "Collect (split (%x y. P x & Q x y)) = (SIGMA x:Collect P. Collect (Q x))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1029
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1030
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1031
lemma Collect_split [simp]: "{(a,b). P a & Q b} = Collect P <*> Collect Q"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1032
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1033
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1034
lemma UN_Times_distrib:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1035
  "(UN (a,b):(A <*> B). E a <*> F b) = (UNION A E) <*> (UNION B F)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1036
  -- {* Suggested by Pierre Chartier *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1037
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1038
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
  1039
lemma split_paired_Ball_Sigma [simp,no_atp]:
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1040
    "(ALL z: Sigma A B. P z) = (ALL x:A. ALL y: B x. P(x,y))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1041
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1042
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35427
diff changeset
  1043
lemma split_paired_Bex_Sigma [simp,no_atp]:
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1044
    "(EX z: Sigma A B. P z) = (EX x:A. EX y: B x. P(x,y))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1045
  by blast
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1046
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1047
lemma Sigma_Un_distrib1: "(SIGMA i:I Un J. C(i)) = (SIGMA i:I. C(i)) Un (SIGMA j:J. C(j))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1048
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1049
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1050
lemma Sigma_Un_distrib2: "(SIGMA i:I. A(i) Un B(i)) = (SIGMA i:I. A(i)) Un (SIGMA i:I. B(i))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1051
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1052
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1053
lemma Sigma_Int_distrib1: "(SIGMA i:I Int J. C(i)) = (SIGMA i:I. C(i)) Int (SIGMA j:J. C(j))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1054
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1055
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1056
lemma Sigma_Int_distrib2: "(SIGMA i:I. A(i) Int B(i)) = (SIGMA i:I. A(i)) Int (SIGMA i:I. B(i))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1057
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1058
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1059
lemma Sigma_Diff_distrib1: "(SIGMA i:I - J. C(i)) = (SIGMA i:I. C(i)) - (SIGMA j:J. C(j))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1060
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1061
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1062
lemma Sigma_Diff_distrib2: "(SIGMA i:I. A(i) - B(i)) = (SIGMA i:I. A(i)) - (SIGMA i:I. B(i))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1063
  by blast
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1064
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1065
lemma Sigma_Union: "Sigma (Union X) B = (UN A:X. Sigma A B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1066
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1067
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1068
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1069
  Non-dependent versions are needed to avoid the need for higher-order
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1070
  matching, especially when the rules are re-oriented.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1071
*}
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1072
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1073
lemma Times_Un_distrib1: "(A Un B) <*> C = (A <*> C) Un (B <*> C)"
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1074
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1075
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1076
lemma Times_Int_distrib1: "(A Int B) <*> C = (A <*> C) Int (B <*> C)"
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1077
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1078
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1079
lemma Times_Diff_distrib1: "(A - B) <*> C = (A <*> C) - (B <*> C)"
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1080
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1081
36622
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1082
lemma Times_empty[simp]: "A \<times> B = {} \<longleftrightarrow> A = {} \<or> B = {}"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1083
  by auto
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1084
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1085
lemma fst_image_times[simp]: "fst ` (A \<times> B) = (if B = {} then {} else A)"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1086
  by (auto intro!: image_eqI)
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1087
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1088
lemma snd_image_times[simp]: "snd ` (A \<times> B) = (if A = {} then {} else B)"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1089
  by (auto intro!: image_eqI)
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1090
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1091
lemma insert_times_insert[simp]:
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1092
  "insert a A \<times> insert b B =
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1093
   insert (a,b) (A \<times> insert b B \<union> insert a A \<times> B)"
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
  1094
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1095
33271
7be66dee1a5a New theory Probability, which contains a development of measure theory
paulson
parents: 33089
diff changeset
  1096
lemma vimage_Times: "f -` (A \<times> B) = ((fst \<circ> f) -` A) \<inter> ((snd \<circ> f) -` B)"
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1097
  by (auto, case_tac "f x", auto)
33271
7be66dee1a5a New theory Probability, which contains a development of measure theory
paulson
parents: 33089
diff changeset
  1098
35822
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1099
lemma swap_inj_on:
36622
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1100
  "inj_on (\<lambda>(i, j). (j, i)) A"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1101
  by (auto intro!: inj_onI)
35822
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1102
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1103
lemma swap_product:
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1104
  "(%(i, j). (j, i)) ` (A \<times> B) = B \<times> A"
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1105
  by (simp add: split_def image_def) blast
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1106
36622
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1107
lemma image_split_eq_Sigma:
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1108
  "(\<lambda>x. (f x, g x)) ` A = Sigma (f ` A) (\<lambda>x. g ` (f -` {x} \<inter> A))"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1109
proof (safe intro!: imageI vimageI)
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1110
  fix a b assume *: "a \<in> A" "b \<in> A" and eq: "f a = f b"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1111
  show "(f b, g a) \<in> (\<lambda>x. (f x, g x)) ` A"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1112
    using * eq[symmetric] by auto
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36176
diff changeset
  1113
qed simp_all
35822
67e4de90d2c2 lemma swap_inj_on, swap_product
haftmann
parents: 35427
diff changeset
  1114
40607
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1115
text {* The following @{const map_pair} lemmas are due to Joachim Breitner: *}
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1116
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1117
lemma map_pair_inj_on:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1118
  assumes "inj_on f A" and "inj_on g B"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1119
  shows "inj_on (map_pair f g) (A \<times> B)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1120
proof (rule inj_onI)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1121
  fix x :: "'a \<times> 'c" and y :: "'a \<times> 'c"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1122
  assume "x \<in> A \<times> B" hence "fst x \<in> A" and "snd x \<in> B" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1123
  assume "y \<in> A \<times> B" hence "fst y \<in> A" and "snd y \<in> B" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1124
  assume "map_pair f g x = map_pair f g y"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1125
  hence "fst (map_pair f g x) = fst (map_pair f g y)" by (auto)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1126
  hence "f (fst x) = f (fst y)" by (cases x,cases y,auto)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1127
  with `inj_on f A` and `fst x \<in> A` and `fst y \<in> A`
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1128
  have "fst x = fst y" by (auto dest:dest:inj_onD)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1129
  moreover from `map_pair f g x = map_pair f g y`
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1130
  have "snd (map_pair f g x) = snd (map_pair f g y)" by (auto)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1131
  hence "g (snd x) = g (snd y)" by (cases x,cases y,auto)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1132
  with `inj_on g B` and `snd x \<in> B` and `snd y \<in> B`
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1133
  have "snd x = snd y" by (auto dest:dest:inj_onD)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1134
  ultimately show "x = y" by(rule prod_eqI)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1135
qed
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1136
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1137
lemma map_pair_surj:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1138
  assumes "surj f" and "surj g"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1139
  shows "surj (map_pair f g)"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1140
unfolding surj_def
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1141
proof
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1142
  fix y :: "'b \<times> 'd"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1143
  from `surj f` obtain a where "fst y = f a" by (auto elim:surjE)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1144
  moreover
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1145
  from `surj g` obtain b where "snd y = g b" by (auto elim:surjE)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1146
  ultimately have "(fst y, snd y) = map_pair f g (a,b)" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1147
  thus "\<exists>x. y = map_pair f g x" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1148
qed
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1149
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1150
lemma map_pair_surj_on:
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1151
  assumes "f ` A = A'" and "g ` B = B'"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1152
  shows "map_pair f g ` (A \<times> B) = A' \<times> B'"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1153
unfolding image_def
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1154
proof(rule set_eqI,rule iffI)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1155
  fix x :: "'a \<times> 'c"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1156
  assume "x \<in> {y\<Colon>'a \<times> 'c. \<exists>x\<Colon>'b \<times> 'd\<in>A \<times> B. y = map_pair f g x}"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1157
  then obtain y where "y \<in> A \<times> B" and "x = map_pair f g y" by blast
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1158
  from `image f A = A'` and `y \<in> A \<times> B` have "f (fst y) \<in> A'" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1159
  moreover from `image g B = B'` and `y \<in> A \<times> B` have "g (snd y) \<in> B'" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1160
  ultimately have "(f (fst y), g (snd y)) \<in> (A' \<times> B')" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1161
  with `x = map_pair f g y` show "x \<in> A' \<times> B'" by (cases y, auto)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1162
next
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1163
  fix x :: "'a \<times> 'c"
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1164
  assume "x \<in> A' \<times> B'" hence "fst x \<in> A'" and "snd x \<in> B'" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1165
  from `image f A = A'` and `fst x \<in> A'` have "fst x \<in> image f A" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1166
  then obtain a where "a \<in> A" and "fst x = f a" by (rule imageE)
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1167
  moreover from `image g B = B'` and `snd x \<in> B'`
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1168
  obtain b where "b \<in> B" and "snd x = g b" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1169
  ultimately have "(fst x, snd x) = map_pair f g (a,b)" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1170
  moreover from `a \<in> A` and  `b \<in> B` have "(a , b) \<in> A \<times> B" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1171
  ultimately have "\<exists>y \<in> A \<times> B. x = map_pair f g y" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1172
  thus "x \<in> {x. \<exists>y \<in> A \<times> B. x = map_pair f g y}" by auto
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1173
qed
30d512bf47a7 map_pair replaces prod_fun
haftmann
parents: 40590
diff changeset
  1174
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1175
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1176
subsection {* Inductively defined sets *}
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1177
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
  1178
use "Tools/inductive_codegen.ML"
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
  1179
setup Inductive_Codegen.setup
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
  1180
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31667
diff changeset
  1181
use "Tools/inductive_set.ML"
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31667
diff changeset
  1182
setup Inductive_Set.setup
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
  1183
37166
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1184
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1185
subsection {* Legacy theorem bindings and duplicates *}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1186
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1187
lemma PairE:
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1188
  obtains x y where "p = (x, y)"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1189
  by (fact prod.exhaust)
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1190
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1191
lemma Pair_inject:
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1192
  assumes "(a, b) = (a', b')"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1193
    and "a = a' ==> b = b' ==> R"
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1194
  shows R
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1195
  using assms by simp
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1196
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1197
lemmas Pair_eq = prod.inject
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1198
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1199
lemmas split = split_conv  -- {* for backwards compatibility *}
e8400e31528a more coherent theory structure; tuned headings
haftmann
parents: 37136
diff changeset
  1200
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
  1201
end