src/HOL/Sum.ML
author paulson
Wed, 09 Oct 1996 13:32:33 +0200
changeset 2073 fb0655539d05
parent 1985 84cf16192e03
child 2212 bd705e9de196
permissions -rw-r--r--
New unified treatment of sequent calculi by Sara Kalvala combines the old LK and Modal with the new ILL (Int. Linear Logic)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
     1
(*  Title:      HOL/Sum.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
For Sum.thy.  The disjoint sum of two types
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
open Sum;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
(** Inl_Rep and Inr_Rep: Representations of the constructors **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
(*This counts as a non-emptiness result for admitting 'a+'b as a type*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
goalw Sum.thy [Sum_def] "Inl_Rep(a) : Sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
by (EVERY1 [rtac CollectI, rtac disjI1, rtac exI, rtac refl]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
qed "Inl_RepI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
goalw Sum.thy [Sum_def] "Inr_Rep(b) : Sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
by (EVERY1 [rtac CollectI, rtac disjI2, rtac exI, rtac refl]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
qed "Inr_RepI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
goal Sum.thy "inj_onto Abs_Sum Sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
by (rtac inj_onto_inverseI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
by (etac Abs_Sum_inverse 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
qed "inj_onto_Abs_Sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
(** Distinctness of Inl and Inr **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
goalw Sum.thy [Inl_Rep_def, Inr_Rep_def] "Inl_Rep(a) ~= Inr_Rep(b)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
by (EVERY1 [rtac notI,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
    31
            etac (fun_cong RS fun_cong RS fun_cong RS iffE), 
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
    32
            rtac (notE RS ccontr),  etac (mp RS conjunct2), 
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
    33
            REPEAT o (ares_tac [refl,conjI]) ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
qed "Inl_Rep_not_Inr_Rep";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
goalw Sum.thy [Inl_def,Inr_def] "Inl(a) ~= Inr(b)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
by (rtac (inj_onto_Abs_Sum RS inj_onto_contraD) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
by (rtac Inl_Rep_not_Inr_Rep 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
by (rtac Inl_RepI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
by (rtac Inr_RepI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
qed "Inl_not_Inr";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    43
bind_thm ("Inr_not_Inl", Inl_not_Inr RS not_sym);
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    44
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    45
AddIffs [Inl_not_Inr, Inr_not_Inl];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    47
bind_thm ("Inl_neq_Inr", Inl_not_Inr RS notE);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    49
val Inr_neq_Inl = sym RS Inl_neq_Inr;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
(** Injectiveness of Inl and Inr **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
val [major] = goalw Sum.thy [Inl_Rep_def] "Inl_Rep(a) = Inl_Rep(c) ==> a=c";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
by (rtac (major RS fun_cong RS fun_cong RS fun_cong RS iffE) 1);
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
    56
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
qed "Inl_Rep_inject";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
val [major] = goalw Sum.thy [Inr_Rep_def] "Inr_Rep(b) = Inr_Rep(d) ==> b=d";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
by (rtac (major RS fun_cong RS fun_cong RS fun_cong RS iffE) 1);
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
    61
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
qed "Inr_Rep_inject";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
goalw Sum.thy [Inl_def] "inj(Inl)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
by (rtac injI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
by (etac (inj_onto_Abs_Sum RS inj_ontoD RS Inl_Rep_inject) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
by (rtac Inl_RepI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
by (rtac Inl_RepI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
qed "inj_Inl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
val Inl_inject = inj_Inl RS injD;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
goalw Sum.thy [Inr_def] "inj(Inr)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
by (rtac injI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
by (etac (inj_onto_Abs_Sum RS inj_ontoD RS Inr_Rep_inject) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
by (rtac Inr_RepI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
by (rtac Inr_RepI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
qed "inj_Inr";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
val Inr_inject = inj_Inr RS injD;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
goal Sum.thy "(Inl(x)=Inl(y)) = (x=y)";
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
    81
by (fast_tac (!claset addSEs [Inl_inject]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
qed "Inl_eq";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
goal Sum.thy "(Inr(x)=Inr(y)) = (x=y)";
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
    85
by (fast_tac (!claset addSEs [Inr_inject]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
qed "Inr_eq";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    88
AddIffs [Inl_eq, Inr_eq];
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    89
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
(*** Rules for the disjoint sum of two SETS ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
(** Introduction rules for the injections **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
goalw Sum.thy [sum_def] "!!a A B. a : A ==> Inl(a) : A plus B";
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    95
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
qed "InlI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
goalw Sum.thy [sum_def] "!!b A B. b : B ==> Inr(b) : A plus B";
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
    99
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
qed "InrI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
(** Elimination rules **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
val major::prems = goalw Sum.thy [sum_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
    "[| u: A plus B;  \
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
\       !!x. [| x:A;  u=Inl(x) |] ==> P; \
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
\       !!y. [| y:B;  u=Inr(y) |] ==> P \
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
\    |] ==> P";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
by (rtac (major RS UnE) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
by (REPEAT (rtac refl 1
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
     ORELSE eresolve_tac (prems@[imageE,ssubst]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
qed "plusE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
   115
AddSIs [InlI, InrI]; 
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
   116
AddSEs [plusE];
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
   117
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
(** sum_case -- the selection operator for sums **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
goalw Sum.thy [sum_case_def] "sum_case f g (Inl x) = f(x)";
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
   122
by (fast_tac (!claset addIs [select_equality]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
qed "sum_case_Inl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
goalw Sum.thy [sum_case_def] "sum_case f g (Inr x) = g(x)";
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
   126
by (fast_tac (!claset addIs [select_equality]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
qed "sum_case_Inr";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
   129
Addsimps [sum_case_Inl, sum_case_Inr];
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
   130
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
(** Exhaustion rule for sums -- a degenerate form of induction **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
val prems = goalw Sum.thy [Inl_def,Inr_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
    "[| !!x::'a. s = Inl(x) ==> P;  !!y::'b. s = Inr(y) ==> P \
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
\    |] ==> P";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
by (rtac (rewrite_rule [Sum_def] Rep_Sum RS CollectE) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
by (REPEAT (eresolve_tac [disjE,exE] 1
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
     ORELSE EVERY1 [resolve_tac prems, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   139
                    etac subst,
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   140
                    rtac (Rep_Sum_inverse RS sym)]));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
qed "sumE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
goal Sum.thy "sum_case (%x::'a. f(Inl x)) (%y::'b. f(Inr y)) s = f(s)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
by (EVERY1 [res_inst_tac [("s","s")] sumE, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   145
            etac ssubst, rtac sum_case_Inl,
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   146
            etac ssubst, rtac sum_case_Inr]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
qed "surjective_sum";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
goal Sum.thy "R(sum_case f g s) = \
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
\             ((! x. s = Inl(x) --> R(f(x))) & (! y. s = Inr(y) --> R(g(y))))";
1985
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
   151
by (res_inst_tac [("s","s")] sumE 1);
84cf16192e03 Tidied many proofs, using AddIffs to let equivalences take
paulson
parents: 1761
diff changeset
   152
by (Auto_tac());
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
qed "expand_sum_case";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
(*Prevents simplification of f and g: much faster*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
qed_goal "sum_case_weak_cong" Sum.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
  "s=t ==> sum_case f g s = sum_case f g t"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
  (fn [prem] => [rtac (prem RS arg_cong) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
(** Rules for the Part primitive **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
goalw Sum.thy [Part_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
    "!!a b A h. [| a : A;  a=h(b) |] ==> a : Part A h";
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
   166
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
qed "Part_eqI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   169
val PartI = refl RSN (2,Part_eqI);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
val major::prems = goalw Sum.thy [Part_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
    "[| a : Part A h;  !!z. [| a : A;  a=h(z) |] ==> P  \
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
\    |] ==> P";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   174
by (rtac (major RS IntE) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
by (etac CollectE 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
by (etac exE 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
by (REPEAT (ares_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
qed "PartE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
goalw Sum.thy [Part_def] "Part A h <= A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
by (rtac Int_lower1 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
qed "Part_subset";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   183
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   184
goal Sum.thy "!!A B. A<=B ==> Part A h <= Part B h";
1760
6f41a494f3b1 Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1515
diff changeset
   185
by (fast_tac (!claset addSIs [PartI] addSEs [PartE]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
qed "Part_mono";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1465
diff changeset
   188
val basic_monos = basic_monos @ [Part_mono];
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1465
diff changeset
   189
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
goalw Sum.thy [Part_def] "!!a. a : Part A h ==> a : A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
by (etac IntD1 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
qed "PartD1";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
goal Sum.thy "Part A (%x.x) = A";
1761
29e08d527ba1 Removed equalityI from some proofs (because it is now included
berghofe
parents: 1760
diff changeset
   195
by (fast_tac (!claset addIs [PartI] addSEs [PartE]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
qed "Part_id";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
1188
0443e4dc8511 Added Part_Int and Part_Collect for inductive definitions
lcp
parents: 923
diff changeset
   198
goal Sum.thy "Part (A Int B) h = (Part A h) Int (Part B h)";
1761
29e08d527ba1 Removed equalityI from some proofs (because it is now included
berghofe
parents: 1760
diff changeset
   199
by (fast_tac (!claset addIs [PartI] addSEs [PartE]) 1);
1188
0443e4dc8511 Added Part_Int and Part_Collect for inductive definitions
lcp
parents: 923
diff changeset
   200
qed "Part_Int";
0443e4dc8511 Added Part_Int and Part_Collect for inductive definitions
lcp
parents: 923
diff changeset
   201
0443e4dc8511 Added Part_Int and Part_Collect for inductive definitions
lcp
parents: 923
diff changeset
   202
(*For inductive definitions*)
0443e4dc8511 Added Part_Int and Part_Collect for inductive definitions
lcp
parents: 923
diff changeset
   203
goal Sum.thy "Part (A Int {x.P x}) h = (Part A h) Int {x.P x}";
1761
29e08d527ba1 Removed equalityI from some proofs (because it is now included
berghofe
parents: 1760
diff changeset
   204
by (fast_tac (!claset addIs [PartI] addSEs [PartE]) 1);
1188
0443e4dc8511 Added Part_Int and Part_Collect for inductive definitions
lcp
parents: 923
diff changeset
   205
qed "Part_Collect";