src/ZF/func.ML
author paulson
Wed, 13 Feb 2002 10:45:08 +0100
changeset 12885 6288ebcb1623
parent 12199 8213fd95acb5
child 12891 92af5c3a10fb
permissions -rw-r--r--
new function lemmas
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 857
diff changeset
     1
(*  Title:      ZF/func
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 857
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
Functions in Zermelo-Fraenkel Set Theory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
(*** The Pi operator -- dependent function space ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    11
Goalw [Pi_def]
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    12
    "f: Pi(A,B) <-> function(f) & f<=Sigma(A,B) & A<=domain(f)";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
    13
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    14
qed "Pi_iff";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    15
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    16
(*For upward compatibility with the former definition*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    17
Goalw [Pi_def, function_def]
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    18
    "f: Pi(A,B) <-> f<=Sigma(A,B) & (ALL x:A. EX! y. <x,y>: f)";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
    19
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    20
qed "Pi_iff_old";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    21
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    22
Goal "f: Pi(A,B) ==> function(f)";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    23
by (asm_full_simp_tac (FOL_ss addsimps [Pi_iff]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    24
qed "fun_is_function";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    25
12885
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    26
(*Functions are relations*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    27
Goalw [Pi_def] "f: Pi(A,B) ==> f <= Sigma(A,B)";  
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    28
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    29
qed "fun_is_rel";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    30
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    31
val prems = Goalw [Pi_def]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
    "[| A=A';  !!x. x:A' ==> B(x)=B'(x) |] ==> Pi(A,B) = Pi(A',B')";
6
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
    33
by (simp_tac (FOL_ss addsimps prems addcongs [Sigma_cong]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    34
qed "Pi_cong";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    35
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
    36
(*Sigma_cong, Pi_cong NOT given to Addcongs: they cause
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
    37
  flex-flex pairs and the "Check your prover" error.  Most
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
    38
  Sigmas and Pis are abbreviated as * or -> *)
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
    39
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents: 437
diff changeset
    40
(*Weakening one function type to another; see also Pi_type*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    41
Goalw [Pi_def] "[| f: A->B;  B<=D |] ==> f: A->D";
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
    42
by (Best_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    43
qed "fun_weaken_type";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    45
(*** Function Application ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
5505
paulson
parents: 5325
diff changeset
    47
Goalw [Pi_def, function_def] "[| <a,b>: f;  <a,c>: f;  f: Pi(A,B) |] ==> b=c";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
    48
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    49
qed "apply_equality2";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    50
5505
paulson
parents: 5325
diff changeset
    51
Goalw [apply_def, function_def] "[| <a,b>: f;  function(f) |] ==> f`a = b";
paulson
parents: 5325
diff changeset
    52
by (Blast_tac 1);
4829
aa5ea943f8e3 New proof of apply_equality and new thm Pi_image_cons
paulson
parents: 4512
diff changeset
    53
qed "function_apply_equality";
aa5ea943f8e3 New proof of apply_equality and new thm Pi_image_cons
paulson
parents: 4512
diff changeset
    54
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    55
Goalw [Pi_def] "[| <a,b>: f;  f: Pi(A,B) |] ==> f`a = b";
4829
aa5ea943f8e3 New proof of apply_equality and new thm Pi_image_cons
paulson
parents: 4512
diff changeset
    56
by (blast_tac (claset() addIs [function_apply_equality]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    57
qed "apply_equality";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    58
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 485
diff changeset
    59
(*Applying a function outside its domain yields 0*)
5505
paulson
parents: 5325
diff changeset
    60
Goalw [apply_def] "a ~: domain(f) ==> f`a = 0";
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 485
diff changeset
    61
by (rtac the_0 1);
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
    62
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    63
qed "apply_0";
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 485
diff changeset
    64
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    65
Goal "[| f: Pi(A,B);  c: f |] ==> EX x:A.  c = <x,f`x>";
7499
23e090051cb8 isatool expandshort;
wenzelm
parents: 6153
diff changeset
    66
by (ftac fun_is_rel 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
    67
by (blast_tac (claset() addDs [apply_equality]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    68
qed "Pi_memberD";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    69
12885
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    70
Goal "[| function(f);  a : domain(f)|] ==> <a,f`a>: f";
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    71
by (asm_full_simp_tac (simpset() addsimps [function_def, apply_def]) 1); 
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    72
by (rtac theI2 1);
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    73
by Auto_tac;  
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    74
qed "function_apply_Pair";
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    75
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    76
Goal "[| f: Pi(A,B);  a:A |] ==> <a,f`a>: f";
12885
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    77
by (asm_full_simp_tac (simpset() addsimps [Pi_iff]) 1); 
6288ebcb1623 new function lemmas
paulson
parents: 12199
diff changeset
    78
by (blast_tac (claset() addIs [function_apply_Pair]) 1); 
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    79
qed "apply_Pair";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    80
6
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
    81
(*Conclusion is flexible -- use res_inst_tac or else apply_funtype below!*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    82
Goal "[| f: Pi(A,B);  a:A |] ==> f`a : B(a)"; 
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    83
by (rtac (fun_is_rel RS subsetD RS SigmaE2) 1);
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
    84
by (REPEAT (ares_tac [apply_Pair] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    85
qed "apply_type";
6153
bff90585cce5 new typechecking solver for the simplifier
paulson
parents: 5505
diff changeset
    86
AddTCs [apply_type];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    87
6
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
    88
(*This version is acceptable to the simplifier*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    89
Goal "[| f: A->B;  a:A |] ==> f`a : B"; 
6
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
    90
by (REPEAT (ares_tac [apply_type] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    91
qed "apply_funtype";
6
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
    92
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    93
Goal "f: Pi(A,B) ==> <a,b>: f <-> a:A & f`a = b";
7499
23e090051cb8 isatool expandshort;
wenzelm
parents: 6153
diff changeset
    94
by (ftac fun_is_rel 1);
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    95
by (blast_tac (claset() addSIs [apply_Pair, apply_equality]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
    96
qed "apply_iff";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    98
(*Refining one Pi type to another*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
    99
val pi_prem::prems = Goal
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   100
    "[| f: Pi(A,C);  !!x. x:A ==> f`x : B(x) |] ==> f : Pi(A,B)";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   101
by (cut_facts_tac [pi_prem] 1);
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   102
by (asm_full_simp_tac (FOL_ss addsimps [Pi_iff]) 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   103
by (blast_tac (claset() addIs prems addSDs [pi_prem RS Pi_memberD]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   104
qed "Pi_type";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
8127
68c6159440f1 new lemmas for Ntree recursor example; more simprules; more lemmas borrowed
paulson
parents: 7499
diff changeset
   106
(*Such functions arise in non-standard datatypes, ZF/ex/Ntree for instance*)
68c6159440f1 new lemmas for Ntree recursor example; more simprules; more lemmas borrowed
paulson
parents: 7499
diff changeset
   107
Goal "(f : Pi(A, %x. {y:B(x). P(x,y)})) \
68c6159440f1 new lemmas for Ntree recursor example; more simprules; more lemmas borrowed
paulson
parents: 7499
diff changeset
   108
\     <->  f : Pi(A,B) & (ALL x: A. P(x, f`x))";
68c6159440f1 new lemmas for Ntree recursor example; more simprules; more lemmas borrowed
paulson
parents: 7499
diff changeset
   109
by (blast_tac (claset() addIs [Pi_type] addDs [apply_type]) 1);
68c6159440f1 new lemmas for Ntree recursor example; more simprules; more lemmas borrowed
paulson
parents: 7499
diff changeset
   110
qed "Pi_Collect_iff";
68c6159440f1 new lemmas for Ntree recursor example; more simprules; more lemmas borrowed
paulson
parents: 7499
diff changeset
   111
9683
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   112
val [major,minor] = Goal 
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   113
        "[| f : Pi(A,B);  !!x. x:A ==> B(x)<=C(x) |] ==> f : Pi(A,C)";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   114
by (fast_tac (claset() addSIs [major RS Pi_type, minor RS subsetD,
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   115
                major RS apply_type]) 1);
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   116
qed "Pi_weaken_type";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   117
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   118
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   119
(** Elimination of membership in a function **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   120
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   121
Goal "[| <a,b> : f;  f: Pi(A,B) |] ==> a : A";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   122
by (REPEAT (ares_tac [fun_is_rel RS subsetD RS SigmaD1] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   123
qed "domain_type";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   124
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   125
Goal "[| <a,b> : f;  f: Pi(A,B) |] ==> b : B(a)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   126
by (etac (fun_is_rel RS subsetD RS SigmaD2) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   127
by (assume_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   128
qed "range_type";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   129
9173
422968aeed49 fixed some weak elim rules
paulson
parents: 8201
diff changeset
   130
Goal "[| <a,b>: f;  f: Pi(A,B) |] ==> a:A & b:B(a) & f`a = b";
422968aeed49 fixed some weak elim rules
paulson
parents: 8201
diff changeset
   131
by (blast_tac (claset() addIs [domain_type, range_type, apply_equality]) 1);
422968aeed49 fixed some weak elim rules
paulson
parents: 8201
diff changeset
   132
qed "Pair_mem_PiD";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   133
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   134
(*** Lambda Abstraction ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   135
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   136
Goalw [lam_def] "a:A ==> <a,b(a)> : (lam x:A. b(x))";  
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   137
by (etac RepFunI 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   138
qed "lamI";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   139
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   140
val major::prems = Goalw [lam_def]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   141
    "[| p: (lam x:A. b(x));  !!x.[| x:A; p=<x,b(x)> |] ==> P  \
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   142
\    |] ==>  P";  
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   143
by (rtac (major RS RepFunE) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   144
by (REPEAT (ares_tac prems 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   145
qed "lamE";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   146
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   147
Goal "[| <a,c>: (lam x:A. b(x)) |] ==> c = b(a)";  
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   148
by (REPEAT (eresolve_tac [asm_rl,lamE,Pair_inject,ssubst] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   149
qed "lamD";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   150
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   151
val prems = Goalw [lam_def, Pi_def, function_def]
3840
e0baea4d485a fixed dots;
wenzelm
parents: 3093
diff changeset
   152
    "[| !!x. x:A ==> b(x): B(x) |] ==> (lam x:A. b(x)) : Pi(A,B)";  
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   153
by (blast_tac (claset() addIs prems) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   154
qed "lam_type";
6153
bff90585cce5 new typechecking solver for the simplifier
paulson
parents: 5505
diff changeset
   155
AddTCs [lam_type];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   156
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   157
Goal "(lam x:A. b(x)) : A -> {b(x). x:A}";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   158
by (REPEAT (ares_tac [refl,lam_type,RepFunI] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   159
qed "lam_funtype";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   160
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   161
Goal "a : A ==> (lam x:A. b(x)) ` a = b(a)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   162
by (REPEAT (ares_tac [apply_equality,lam_funtype,lamI] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   163
qed "beta";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   164
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   165
Goalw [lam_def] "(lam x:0. b(x)) = 0";
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   166
by (Simp_tac 1);
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   167
qed "lam_empty";
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   168
5156
f23494fa8dc1 A stronger apply_0, and new thm domain_lam
paulson
parents: 5137
diff changeset
   169
Goalw [lam_def] "domain(Lambda(A,b)) = A";
f23494fa8dc1 A stronger apply_0, and new thm domain_lam
paulson
parents: 5137
diff changeset
   170
by (Blast_tac 1);
f23494fa8dc1 A stronger apply_0, and new thm domain_lam
paulson
parents: 5137
diff changeset
   171
qed "domain_lam";
f23494fa8dc1 A stronger apply_0, and new thm domain_lam
paulson
parents: 5137
diff changeset
   172
f23494fa8dc1 A stronger apply_0, and new thm domain_lam
paulson
parents: 5137
diff changeset
   173
Addsimps [beta, lam_empty, domain_lam];
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   174
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   175
(*congruence rule for lambda abstraction*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   176
val prems = Goalw [lam_def] 
6
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
   177
    "[| A=A';  !!x. x:A' ==> b(x)=b'(x) |] ==> Lambda(A,b) = Lambda(A',b')";
8ce8c4d13d4d Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents: 0
diff changeset
   178
by (simp_tac (FOL_ss addsimps prems addcongs [RepFun_cong]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   179
qed "lam_cong";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   180
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   181
Addcongs [lam_cong];
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   182
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   183
val [major] = Goal
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   184
    "(!!x. x:A ==> EX! y. Q(x,y)) ==> EX f. ALL x:A. Q(x, f`x)";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   185
by (res_inst_tac [("x", "lam x: A. THE y. Q(x,y)")] exI 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   186
by (rtac ballI 1);
2033
639de962ded4 Ran expandshort; used stac instead of ssubst
paulson
parents: 1461
diff changeset
   187
by (stac beta 1);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   188
by (assume_tac 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   189
by (etac (major RS theI) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   190
qed "lam_theI";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   191
9683
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   192
Goal "[| (lam x:A. f(x)) = (lam x:A. g(x));  a:A |] ==> f(a)=g(a)";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   193
by (fast_tac (claset() addSIs [lamI] addEs [equalityE, lamE]) 1);
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   194
qed "lam_eqE";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   195
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   196
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   197
(*Empty function spaces*)
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   198
Goalw [Pi_def, function_def] "Pi(0,A) = {0}";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   199
by (Blast_tac 1);
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   200
qed "Pi_empty1";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   201
Addsimps [Pi_empty1];
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   202
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   203
(*The singleton function*)
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   204
Goalw [Pi_def, function_def] "{<a,b>} : {a} -> {b}";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   205
by (Blast_tac 1);
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   206
qed "singleton_fun";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   207
Addsimps [singleton_fun];
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   208
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   209
Goalw [Pi_def, function_def] "(A->0) = (if A=0 then {0} else 0)";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   210
by (Force_tac 1);
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   211
qed "Pi_empty2";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   212
Addsimps [Pi_empty2];
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   213
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   214
Goal "(A->X)=0 \\<longleftrightarrow> X=0 & (A \\<noteq> 0)";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   215
by Auto_tac;  
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   216
by (fast_tac (claset() addSIs [equals0I] addIs [lam_type]) 1);
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   217
qed "fun_space_empty_iff";
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   218
AddIffs [fun_space_empty_iff];
f87c8c449018 added some xsymbols, and tidied
paulson
parents: 9211
diff changeset
   219
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   220
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   221
(** Extensionality **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   222
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   223
(*Semi-extensionality!*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   224
val prems = Goal
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   225
    "[| f : Pi(A,B);  g: Pi(C,D);  A<=C; \
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   226
\       !!x. x:A ==> f`x = g`x       |] ==> f<=g";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   227
by (rtac subsetI 1);
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   228
by (eresolve_tac (prems RL [Pi_memberD RS bexE]) 1);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
by (etac ssubst 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   230
by (resolve_tac (prems RL [ssubst]) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   231
by (REPEAT (ares_tac (prems@[apply_Pair,subsetD]) 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   232
qed "fun_subset";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   234
val prems = Goal
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   235
    "[| f : Pi(A,B);  g: Pi(A,D);  \
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   236
\       !!x. x:A ==> f`x = g`x       |] ==> f=g";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   237
by (REPEAT (ares_tac (prems @ (prems RL [sym]) @
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 857
diff changeset
   238
                      [subset_refl,equalityI,fun_subset]) 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   239
qed "fun_extension";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   240
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   241
Goal "f : Pi(A,B) ==> (lam x:A. f`x) = f";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   242
by (rtac fun_extension 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   243
by (REPEAT (ares_tac [lam_type,apply_type,beta] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   244
qed "eta";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   245
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   246
Addsimps [eta];
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   247
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   248
Goal "[| f:Pi(A,B); g:Pi(A,C) |] ==> (ALL a:A. f`a = g`a) <-> f=g";
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   249
by (blast_tac (claset() addIs [fun_extension]) 1);
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   250
qed "fun_extension_iff";
5202
084ceb3844f5 A few new lemmas by Mark Staples
paulson
parents: 5156
diff changeset
   251
084ceb3844f5 A few new lemmas by Mark Staples
paulson
parents: 5156
diff changeset
   252
(*thanks to Mark Staples*)
9211
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   253
Goal "[| f:Pi(A,B); g:Pi(A,C) |] ==> f <= g <-> (f = g)";
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   254
by (rtac iffI 1);
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   255
by (asm_full_simp_tac ZF_ss 2);
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   256
by (rtac fun_extension 1);
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   257
by (REPEAT (atac 1));
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   258
by (dtac (apply_Pair RSN (2,subsetD)) 1);
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   259
by (REPEAT (atac 1));
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   260
by (rtac (apply_equality RS sym) 1);
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   261
by (REPEAT (atac 1)) ;
6236c5285bd8 removal of batch-style proofs
paulson
parents: 9173
diff changeset
   262
qed "fun_subset_eq";
5202
084ceb3844f5 A few new lemmas by Mark Staples
paulson
parents: 5156
diff changeset
   263
084ceb3844f5 A few new lemmas by Mark Staples
paulson
parents: 5156
diff changeset
   264
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   265
(*Every element of Pi(A,B) may be expressed as a lambda abstraction!*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   266
val prems = Goal
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   267
    "[| f: Pi(A,B);        \
3840
e0baea4d485a fixed dots;
wenzelm
parents: 3093
diff changeset
   268
\       !!b. [| ALL x:A. b(x):B(x);  f = (lam x:A. b(x)) |] ==> P   \
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   269
\    |] ==> P";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   270
by (resolve_tac prems 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   271
by (rtac (eta RS sym) 2);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   272
by (REPEAT (ares_tac (prems@[ballI,apply_type]) 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   273
qed "Pi_lamE";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   274
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   275
435
ca5356bd315a Addition of cardinals and order types, various tidying
lcp
parents: 129
diff changeset
   276
(** Images of functions **)
ca5356bd315a Addition of cardinals and order types, various tidying
lcp
parents: 129
diff changeset
   277
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   278
Goalw [lam_def] "C <= A ==> (lam x:A. b(x)) `` C = {b(x). x:C}";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
   279
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   280
qed "image_lam";
435
ca5356bd315a Addition of cardinals and order types, various tidying
lcp
parents: 129
diff changeset
   281
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   282
Goal "[| f : Pi(A,B);  C <= A |] ==> f``C = {f`x. x:C}";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents: 435
diff changeset
   283
by (etac (eta RS subst) 1);
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   284
by (asm_full_simp_tac (simpset() addsimps [image_lam, subset_iff]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   285
qed "image_fun";
435
ca5356bd315a Addition of cardinals and order types, various tidying
lcp
parents: 129
diff changeset
   286
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5067
diff changeset
   287
Goal "[| f: Pi(A,B);  x: A |] ==> f `` cons(x,y) = cons(f`x, f``y)";
4829
aa5ea943f8e3 New proof of apply_equality and new thm Pi_image_cons
paulson
parents: 4512
diff changeset
   288
by (blast_tac (claset() addDs [apply_equality, apply_Pair]) 1);
aa5ea943f8e3 New proof of apply_equality and new thm Pi_image_cons
paulson
parents: 4512
diff changeset
   289
qed "Pi_image_cons";
aa5ea943f8e3 New proof of apply_equality and new thm Pi_image_cons
paulson
parents: 4512
diff changeset
   290
435
ca5356bd315a Addition of cardinals and order types, various tidying
lcp
parents: 129
diff changeset
   291
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   292
(*** properties of "restrict" ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   293
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   294
Goalw [restrict_def,lam_def]
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   295
    "[| f: Pi(C,B);  A<=C |] ==> restrict(f,A) <= f";
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   296
by (blast_tac (claset() addIs [apply_Pair]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   297
qed "restrict_subset";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   298
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   299
val prems = Goalw [restrict_def]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   300
    "[| !!x. x:A ==> f`x: B(x) |] ==> restrict(f,A) : Pi(A,B)";  
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   301
by (rtac lam_type 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   302
by (eresolve_tac prems 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   303
qed "restrict_type";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   304
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   305
Goal "[| f: Pi(C,B);  A<=C |] ==> restrict(f,A) : Pi(A,B)";  
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   306
by (blast_tac (claset() addIs [apply_type, restrict_type]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   307
qed "restrict_type2";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   308
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   309
Goalw [restrict_def] "a : A ==> restrict(f,A) ` a = f`a";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   310
by (etac beta 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   311
qed "restrict";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   312
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   313
Goalw [restrict_def] "restrict(f,0) = 0";
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   314
by (Simp_tac 1);
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   315
qed "restrict_empty";
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   316
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   317
Addsimps [restrict, restrict_empty];
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   318
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   319
(*NOT SAFE as a congruence rule for the simplifier!  Can cause it to fail!*)
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   320
val prems = Goalw [restrict_def]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   321
    "[| A=B;  !!x. x:B ==> f`x=g`x |] ==> restrict(f,A) = restrict(g,B)";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   322
by (REPEAT (ares_tac (prems@[lam_cong]) 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   323
qed "restrict_eqI";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   324
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   325
Goalw [restrict_def, lam_def] "domain(restrict(f,C)) = C";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
   326
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   327
qed "domain_restrict";
8182
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   328
Addsimps [domain_restrict];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   329
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   330
Goalw [restrict_def]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   331
    "A<=C ==> restrict(lam x:C. b(x), A) = (lam x:A. b(x))";
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   332
by (rtac (refl RS lam_cong) 1);
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   333
by (set_mp_tac 1);
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   334
by (Asm_simp_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   335
qed "restrict_lam_eq";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   336
8182
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   337
Goal "f : cons(a, b) -> B ==> f = cons(<a, f ` a>, restrict(f, b))";
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   338
by (rtac equalityI 1);
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   339
by (blast_tac (claset() addIs [apply_Pair, impOfSubs restrict_subset]) 2);
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   340
by (auto_tac (claset() addSDs [Pi_memberD],
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   341
	       simpset() addsimps [restrict_def, lam_def]));
1ffd9ec37239 new lemma fun_cons_restrict_eq
paulson
parents: 8172
diff changeset
   342
qed "fun_cons_restrict_eq";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   343
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   344
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   345
(*** Unions of functions ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   346
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   347
(** The Union of a set of COMPATIBLE functions is a function **)
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   348
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   349
Goalw [function_def]
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   350
    "[| ALL x:S. function(x); \
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   351
\            ALL x:S. ALL y:S. x<=y | y<=x  |] ==>  \
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   352
\         function(Union(S))";
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2895
diff changeset
   353
by (fast_tac (ZF_cs addSDs [bspec RS bspec]) 1);
b0ae2e13db93 Using Blast_tac
paulson
parents: 2895
diff changeset
   354
	(*by (Blast_tac 1);  takes too long...*)
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   355
qed "function_Union";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   356
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   357
Goalw [Pi_def]
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   358
    "[| ALL f:S. EX C D. f:C->D; \
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   359
\            ALL f:S. ALL y:S. f<=y | y<=f  |] ==>  \
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   360
\         Union(S) : domain(Union(S)) -> range(Union(S))";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
   361
by (blast_tac (subset_cs addSIs [rel_Union, function_Union]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   362
qed "fun_Union";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   363
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   364
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   365
(** The Union of 2 disjoint functions is a function **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   366
9907
473a6604da94 tuned ML code (the_context, bind_thms(s));
wenzelm
parents: 9683
diff changeset
   367
bind_thms ("Un_rls", [Un_subset_iff, SUM_Un_distrib1, prod_Un_distrib2, 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 857
diff changeset
   368
              Un_upper1 RSN (2, subset_trans), 
9907
473a6604da94 tuned ML code (the_context, bind_thms(s));
wenzelm
parents: 9683
diff changeset
   369
              Un_upper2 RSN (2, subset_trans)]);
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   370
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   371
Goal "[| f: A->B;  g: C->D;  A Int C = 0  |]  \
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2895
diff changeset
   372
\                 ==> (f Un g) : (A Un C) -> (B Un D)";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
   373
(*Prove the product and domain subgoals using distributive laws*)
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   374
by (asm_full_simp_tac (simpset() addsimps [Pi_iff,extension]@Un_rls) 1);
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 857
diff changeset
   375
by (rewtac function_def);
4512
572440df6aa7 Changed required by new blast_tac (the one that squashes flex-flex pairs)
paulson
parents: 4091
diff changeset
   376
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   377
qed "fun_disjoint_Un";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   378
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   379
Goal "[| a:A;  f: A->B;  g: C->D;  A Int C = 0 |] ==>  \
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   380
\             (f Un g)`a = f`a";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   381
by (rtac (apply_Pair RS UnI1 RS apply_equality) 1);
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   382
by (REPEAT (ares_tac [fun_disjoint_Un] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   383
qed "fun_disjoint_apply1";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   384
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   385
Goal "[| c:C;  f: A->B;  g: C->D;  A Int C = 0 |] ==>  \
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   386
\             (f Un g)`c = g`c";
691
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   387
by (rtac (apply_Pair RS UnI2 RS apply_equality) 1);
b9fc536792bb ZF/func: tidied many proofs, using new definition of Pi(A,B)
lcp
parents: 538
diff changeset
   388
by (REPEAT (ares_tac [fun_disjoint_Un] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   389
qed "fun_disjoint_apply2";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   390
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   391
(** Domain and range of a function/relation **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   392
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   393
Goalw [Pi_def] "f : Pi(A,B) ==> domain(f)=A";
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
   394
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   395
qed "domain_of_fun";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   396
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   397
Goal "[| f : Pi(A,B);  a: A |] ==> f`a : range(f)";
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 485
diff changeset
   398
by (etac (apply_Pair RS rangeI) 1);
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 485
diff changeset
   399
by (assume_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   400
qed "apply_rangeI";
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 485
diff changeset
   401
5325
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   402
Goal "f : Pi(A,B) ==> f : A->range(f)";
f7a5e06adea1 Yet more removal of "goal" commands, especially "goal ZF.thy", so ZF.thy
paulson
parents: 5321
diff changeset
   403
by (REPEAT (ares_tac [Pi_type, apply_rangeI] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   404
qed "range_of_fun";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   405
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   406
(*** Extensions of functions ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   407
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5202
diff changeset
   408
Goal "[| f: A->B;  c~:A |] ==> cons(<c,b>,f) : cons(c,A) -> cons(b,B)";
857
f5314a7c93f2 Renamed single_fun to singleton_fun.
lcp
parents: 824
diff changeset
   409
by (forward_tac [singleton_fun RS fun_disjoint_Un] 1);
519
98b88551e102 ZF/func/empty_fun: renamed from fun_empty
lcp
parents: 517
diff changeset
   410
by (asm_full_simp_tac (FOL_ss addsimps [cons_eq]) 2);
2877
6476784dba1c Converted to call blast_tac.
paulson
parents: 2835
diff changeset
   411
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   412
qed "fun_extend";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   413
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5202
diff changeset
   414
Goal "[| f: A->B;  c~:A;  b: B |] ==> cons(<c,b>,f) : cons(c,A) -> B";
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   415
by (blast_tac (claset() addIs [fun_extend RS fun_weaken_type]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   416
qed "fun_extend3";
538
b4fe3da03449 ZF/func/fun_extend3: new
lcp
parents: 519
diff changeset
   417
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5202
diff changeset
   418
Goal "[| f: A->B;  a:A;  c~:A |] ==> cons(<c,b>,f)`a = f`a";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   419
by (rtac (apply_Pair RS consI2 RS apply_equality) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   420
by (rtac fun_extend 3);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   421
by (REPEAT (assume_tac 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   422
qed "fun_extend_apply1";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   423
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5202
diff changeset
   424
Goal "[| f: A->B;  c~:A |] ==> cons(<c,b>,f)`c = b";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   425
by (rtac (consI1 RS apply_equality) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   426
by (rtac fun_extend 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   427
by (REPEAT (assume_tac 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   428
qed "fun_extend_apply2";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   429
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   430
bind_thm ("singleton_apply", [singletonI, singleton_fun] MRS apply_equality);
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   431
Addsimps [singleton_apply];
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   432
538
b4fe3da03449 ZF/func/fun_extend3: new
lcp
parents: 519
diff changeset
   433
(*For Finite.ML.  Inclusion of right into left is easy*)
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5202
diff changeset
   434
Goal "c ~: A ==> cons(c,A) -> B = (UN f: A->B. UN b:B. {cons(<c,b>, f)})";
737
436019ca97d7 cons_fun_eq: modified strange uses of classical reasoner
lcp
parents: 691
diff changeset
   435
by (rtac equalityI 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   436
by (safe_tac (claset() addSEs [fun_extend3]));
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents: 437
diff changeset
   437
(*Inclusion of left into right*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents: 437
diff changeset
   438
by (subgoal_tac "restrict(x, A) : A -> B" 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   439
by (blast_tac (claset() addIs [restrict_type2]) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents: 437
diff changeset
   440
by (rtac UN_I 1 THEN assume_tac 1);
737
436019ca97d7 cons_fun_eq: modified strange uses of classical reasoner
lcp
parents: 691
diff changeset
   441
by (rtac (apply_funtype RS UN_I) 1 THEN REPEAT (ares_tac [consI1] 1));
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   442
by (Simp_tac 1);
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 857
diff changeset
   443
by (rtac fun_extension 1 THEN REPEAT (ares_tac [fun_extend] 1));
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents: 437
diff changeset
   444
by (etac consE 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents: 437
diff changeset
   445
by (ALLGOALS 
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 3840
diff changeset
   446
    (asm_simp_tac (simpset() addsimps [restrict, fun_extend_apply1, 
2493
bdeb5024353a Removal of sum_cs and eq_cs
paulson
parents: 2469
diff changeset
   447
                                      fun_extend_apply2])));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 737
diff changeset
   448
qed "cons_fun_eq";