src/ZF/Sum.thy
author wenzelm
Sun, 08 Jul 2007 19:51:58 +0200
changeset 23655 d2d1138e0ddc
parent 16417 9bc16273c2d4
child 24893 b8ef7afe3a6b
permissions -rw-r--r--
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     1
(*  Title:      ZF/sum.thy
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
     8
header{*Disjoint Sums*}
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
     9
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 13823
diff changeset
    10
theory Sum imports Bool equalities begin
3923
c257b82a1200 global;
wenzelm
parents: 2469
diff changeset
    11
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
    12
text{*And the "Part" primitive for simultaneous recursive type definitions*}
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
    13
3923
c257b82a1200 global;
wenzelm
parents: 2469
diff changeset
    14
global
c257b82a1200 global;
wenzelm
parents: 2469
diff changeset
    15
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    16
constdefs
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    17
  sum     :: "[i,i]=>i"                     (infixr "+" 65)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    18
     "A+B == {0}*A Un {1}*B"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    19
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    20
  Inl     :: "i=>i"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    21
     "Inl(a) == <0,a>"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    22
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    23
  Inr     :: "i=>i"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    24
     "Inr(b) == <1,b>"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    25
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    26
  "case"  :: "[i=>i, i=>i, i]=>i"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    27
     "case(c,d) == (%<y,z>. cond(y, d(z), c(z)))"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    28
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    29
  (*operator for selecting out the various summands*)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    30
  Part    :: "[i,i=>i] => i"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    31
     "Part(A,h) == {x: A. EX z. x = h(z)}"
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
3940
wenzelm
parents: 3923
diff changeset
    33
local
3923
c257b82a1200 global;
wenzelm
parents: 2469
diff changeset
    34
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
    35
subsection{*Rules for the @{term Part} Primitive*}
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    36
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    37
lemma Part_iff: 
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    38
    "a : Part(A,h) <-> a:A & (EX y. a=h(y))"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    39
apply (unfold Part_def)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    40
apply (rule separation)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    41
done
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    42
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    43
lemma Part_eqI [intro]: 
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    44
    "[| a : A;  a=h(b) |] ==> a : Part(A,h)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    45
by (unfold Part_def, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    46
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    47
lemmas PartI = refl [THEN [2] Part_eqI]
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    48
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    49
lemma PartE [elim!]: 
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    50
    "[| a : Part(A,h);  !!z. [| a : A;  a=h(z) |] ==> P   
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    51
     |] ==> P"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    52
apply (unfold Part_def, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    53
done
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    54
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    55
lemma Part_subset: "Part(A,h) <= A"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    56
apply (unfold Part_def)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    57
apply (rule Collect_subset)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    58
done
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    59
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    60
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
    61
subsection{*Rules for Disjoint Sums*}
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    62
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    63
lemmas sum_defs = sum_def Inl_def Inr_def case_def
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    64
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    65
lemma Sigma_bool: "Sigma(bool,C) = C(0) + C(1)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    66
by (unfold bool_def sum_def, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    67
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    68
(** Introduction rules for the injections **)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    69
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    70
lemma InlI [intro!,simp,TC]: "a : A ==> Inl(a) : A+B"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    71
by (unfold sum_defs, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    72
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    73
lemma InrI [intro!,simp,TC]: "b : B ==> Inr(b) : A+B"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    74
by (unfold sum_defs, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    75
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    76
(** Elimination rules **)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    77
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    78
lemma sumE [elim!]:
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    79
    "[| u: A+B;   
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    80
        !!x. [| x:A;  u=Inl(x) |] ==> P;  
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    81
        !!y. [| y:B;  u=Inr(y) |] ==> P  
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    82
     |] ==> P"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    83
by (unfold sum_defs, blast) 
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    84
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    85
(** Injection and freeness equivalences, for rewriting **)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    86
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    87
lemma Inl_iff [iff]: "Inl(a)=Inl(b) <-> a=b"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    88
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    89
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    90
lemma Inr_iff [iff]: "Inr(a)=Inr(b) <-> a=b"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    91
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    92
13823
d49ffd9f9662 fixed anomalies in the installed classical rules
paulson
parents: 13356
diff changeset
    93
lemma Inl_Inr_iff [simp]: "Inl(a)=Inr(b) <-> False"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    94
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    95
13823
d49ffd9f9662 fixed anomalies in the installed classical rules
paulson
parents: 13356
diff changeset
    96
lemma Inr_Inl_iff [simp]: "Inr(b)=Inl(a) <-> False"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
    97
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    98
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
    99
lemma sum_empty [simp]: "0+0 = 0"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   100
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   101
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   102
(*Injection and freeness rules*)
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   103
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   104
lemmas Inl_inject = Inl_iff [THEN iffD1, standard]
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   105
lemmas Inr_inject = Inr_iff [THEN iffD1, standard]
13823
d49ffd9f9662 fixed anomalies in the installed classical rules
paulson
parents: 13356
diff changeset
   106
lemmas Inl_neq_Inr = Inl_Inr_iff [THEN iffD1, THEN FalseE, elim!]
d49ffd9f9662 fixed anomalies in the installed classical rules
paulson
parents: 13356
diff changeset
   107
lemmas Inr_neq_Inl = Inr_Inl_iff [THEN iffD1, THEN FalseE, elim!]
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   108
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   109
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   110
lemma InlD: "Inl(a): A+B ==> a: A"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   111
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   112
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   113
lemma InrD: "Inr(b): A+B ==> b: B"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   114
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   115
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   116
lemma sum_iff: "u: A+B <-> (EX x. x:A & u=Inl(x)) | (EX y. y:B & u=Inr(y))"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   117
by blast
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   118
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   119
lemma Inl_in_sum_iff [simp]: "(Inl(x) \<in> A+B) <-> (x \<in> A)";
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   120
by auto
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   121
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   122
lemma Inr_in_sum_iff [simp]: "(Inr(y) \<in> A+B) <-> (y \<in> B)";
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   123
by auto
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   124
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   125
lemma sum_subset_iff: "A+B <= C+D <-> A<=C & B<=D"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   126
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   127
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   128
lemma sum_equal_iff: "A+B = C+D <-> A=C & B=D"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   129
by (simp add: extension sum_subset_iff, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   130
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   131
lemma sum_eq_2_times: "A+A = 2*A"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   132
by (simp add: sum_def, blast)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   133
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   134
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
   135
subsection{*The Eliminator: @{term case}*}
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   136
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   137
lemma case_Inl [simp]: "case(c, d, Inl(a)) = c(a)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   138
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   139
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   140
lemma case_Inr [simp]: "case(c, d, Inr(b)) = d(b)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   141
by (simp add: sum_defs)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   142
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   143
lemma case_type [TC]:
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   144
    "[| u: A+B;  
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   145
        !!x. x: A ==> c(x): C(Inl(x));    
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   146
        !!y. y: B ==> d(y): C(Inr(y))  
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   147
     |] ==> case(c,d,u) : C(u)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   148
by auto
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   149
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   150
lemma expand_case: "u: A+B ==>    
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   151
        R(case(c,d,u)) <->  
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   152
        ((ALL x:A. u = Inl(x) --> R(c(x))) &  
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   153
        (ALL y:B. u = Inr(y) --> R(d(y))))"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   154
by auto
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   155
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   156
lemma case_cong:
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   157
  "[| z: A+B;    
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   158
      !!x. x:A ==> c(x)=c'(x);   
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   159
      !!y. y:B ==> d(y)=d'(y)    
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   160
   |] ==> case(c,d,z) = case(c',d',z)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   161
by auto 
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   162
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   163
lemma case_case: "z: A+B ==>    
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   164
        
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   165
	case(c, d, case(%x. Inl(c'(x)), %y. Inr(d'(y)), z)) =  
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   166
        case(%x. c(c'(x)), %y. d(d'(y)), z)"
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   167
by auto
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   168
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   169
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13255
diff changeset
   170
subsection{*More Rules for @{term "Part(A,h)"}*}
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   171
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   172
lemma Part_mono: "A<=B ==> Part(A,h)<=Part(B,h)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   173
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   174
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   175
lemma Part_Collect: "Part(Collect(A,P), h) = Collect(Part(A,h), P)"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   176
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   177
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   178
lemmas Part_CollectE =
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   179
     Part_Collect [THEN equalityD1, THEN subsetD, THEN CollectE, standard]
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   180
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   181
lemma Part_Inl: "Part(A+B,Inl) = {Inl(x). x: A}"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   182
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   183
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   184
lemma Part_Inr: "Part(A+B,Inr) = {Inr(y). y: B}"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   185
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   186
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   187
lemma PartD1: "a : Part(A,h) ==> a : A"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   188
by (simp add: Part_def)
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   189
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   190
lemma Part_id: "Part(A,%x. x) = A"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   191
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   192
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   193
lemma Part_Inr2: "Part(A+B, %x. Inr(h(x))) = {Inr(y). y: Part(B,h)}"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   194
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   195
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   196
lemma Part_sum_equality: "C <= A+B ==> Part(C,Inl) Un Part(C,Inr) = C"
13255
407ad9c3036d new theorems, tidying
paulson
parents: 13240
diff changeset
   197
by blast
13240
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   198
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   199
ML
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   200
{*
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   201
val sum_def = thm "sum_def";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   202
val Inl_def = thm "Inl_def";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   203
val Inr_def = thm "Inr_def";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   204
val sum_defs = thms "sum_defs";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   205
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   206
val Part_iff = thm "Part_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   207
val Part_eqI = thm "Part_eqI";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   208
val PartI = thm "PartI";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   209
val PartE = thm "PartE";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   210
val Part_subset = thm "Part_subset";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   211
val Sigma_bool = thm "Sigma_bool";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   212
val InlI = thm "InlI";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   213
val InrI = thm "InrI";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   214
val sumE = thm "sumE";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   215
val Inl_iff = thm "Inl_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   216
val Inr_iff = thm "Inr_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   217
val Inl_Inr_iff = thm "Inl_Inr_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   218
val Inr_Inl_iff = thm "Inr_Inl_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   219
val sum_empty = thm "sum_empty";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   220
val Inl_inject = thm "Inl_inject";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   221
val Inr_inject = thm "Inr_inject";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   222
val Inl_neq_Inr = thm "Inl_neq_Inr";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   223
val Inr_neq_Inl = thm "Inr_neq_Inl";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   224
val InlD = thm "InlD";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   225
val InrD = thm "InrD";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   226
val sum_iff = thm "sum_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   227
val sum_subset_iff = thm "sum_subset_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   228
val sum_equal_iff = thm "sum_equal_iff";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   229
val sum_eq_2_times = thm "sum_eq_2_times";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   230
val case_Inl = thm "case_Inl";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   231
val case_Inr = thm "case_Inr";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   232
val case_type = thm "case_type";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   233
val expand_case = thm "expand_case";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   234
val case_cong = thm "case_cong";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   235
val case_case = thm "case_case";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   236
val Part_mono = thm "Part_mono";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   237
val Part_Collect = thm "Part_Collect";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   238
val Part_CollectE = thm "Part_CollectE";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   239
val Part_Inl = thm "Part_Inl";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   240
val Part_Inr = thm "Part_Inr";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   241
val PartD1 = thm "PartD1";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   242
val Part_id = thm "Part_id";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   243
val Part_Inr2 = thm "Part_Inr2";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   244
val Part_sum_equality = thm "Part_sum_equality";
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   245
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   246
*}
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   247
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   248
bb5f4faea1f3 conversion of Sum, pair to Isar script
paulson
parents: 13220
diff changeset
   249
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   250
end