src/HOL/Fun.ML
author paulson
Fri, 04 Apr 1997 11:18:19 +0200
changeset 2890 f27002fc531d
parent 2499 0bc87b063447
child 2912 3fac3e8d5d3e
permissions -rw-r--r--
Adds image_eqI instead of imageI, as the former is more general
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
     1
(*  Title:      HOL/Fun
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:     Tobias Nipkow, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1993  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
Lemmas about functions.
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
goal Fun.thy "(f = g) = (!x. f(x)=g(x))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
by (rtac iffI 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
    11
by (Asm_simp_tac 1);
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
    12
by (rtac ext 1 THEN Asm_simp_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
qed "expand_fun_eq";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
val prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
    "[| f(x)=u;  !!x. P(x) ==> g(f(x)) = x;  P(x) |] ==> x=g(u)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
by (rtac (arg_cong RS box_equals) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
by (REPEAT (resolve_tac (prems@[refl]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
qed "apply_inverse";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
1883
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    22
(*** Image of a set under a function ***)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
(*Frequently b does not have the syntactic form of f(x).*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
val prems = goalw Fun.thy [image_def] "[| b=f(x);  x:A |] ==> b : f``A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
by (REPEAT (resolve_tac (prems @ [CollectI,bexI,prem]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
qed "image_eqI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
1883
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    29
bind_thm ("imageI", refl RS image_eqI);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
(*The eta-expansion gives variable-name preservation.*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
val major::prems = goalw Fun.thy [image_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
    "[| b : (%x.f(x))``A;  !!x.[| b=f(x);  x:A |] ==> P |] ==> P"; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
by (rtac (major RS CollectD RS bexE) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
by (REPEAT (ares_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
qed "imageE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
2890
f27002fc531d Adds image_eqI instead of imageI, as the former is more general
paulson
parents: 2499
diff changeset
    38
AddIs  [image_eqI];
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
    39
AddSEs [imageE]; 
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
    40
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
goalw Fun.thy [o_def] "(f o g)``r = f``(g``r)";
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
    42
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
qed "image_compose";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
goal Fun.thy "f``(A Un B) = f``A Un f``B";
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
    46
by (Fast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
qed "image_Un";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
1883
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    49
(*** Range of a function -- just a translation for image! ***)
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    50
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    51
goal Fun.thy "!!b. b=f(x) ==> b : range(f)";
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    52
by (EVERY1 [etac image_eqI, rtac UNIV_I]);
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    53
bind_thm ("range_eqI", UNIV_I RSN (2,image_eqI));
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    54
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    55
bind_thm ("rangeI", UNIV_I RS imageI);
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    56
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    57
val [major,minor] = goal Fun.thy 
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    58
    "[| b : range(%x.f(x));  !!x. b=f(x) ==> P |] ==> P"; 
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    59
by (rtac (major RS imageE) 1);
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    60
by (etac minor 1);
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
    61
qed "rangeE";
2890
f27002fc531d Adds image_eqI instead of imageI, as the former is more general
paulson
parents: 2499
diff changeset
    62
f27002fc531d Adds image_eqI instead of imageI, as the former is more general
paulson
parents: 2499
diff changeset
    63
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
(*** inj(f): f is a one-to-one function ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
val prems = goalw Fun.thy [inj_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
    "[| !! x y. f(x) = f(y) ==> x=y |] ==> inj(f)";
1754
852093aeb0ab Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1672
diff changeset
    68
by (fast_tac (!claset addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
qed "injI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
val [major] = goal Fun.thy "(!!x. g(f(x)) = x) ==> inj(f)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
by (rtac injI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
by (etac (arg_cong RS box_equals) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
by (rtac major 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
by (rtac major 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
qed "inj_inverseI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
val [major,minor] = goalw Fun.thy [inj_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
    "[| inj(f); f(x) = f(y) |] ==> x=y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
by (rtac (major RS spec RS spec RS mp) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
by (rtac minor 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
qed "injD";
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
(*Useful with the simplifier*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
val [major] = goal Fun.thy "inj(f) ==> (f(x) = f(y)) = (x=y)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
by (rtac iffI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
by (etac (major RS injD) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
by (etac arg_cong 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
qed "inj_eq";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
val [major] = goal Fun.thy "inj(f) ==> (@x.f(x)=f(y)) = y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
by (rtac (major RS injD) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
by (rtac selectI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
by (rtac refl 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
qed "inj_select";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
(*A one-to-one function has an inverse (given using select).*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
val [major] = goalw Fun.thy [Inv_def] "inj(f) ==> Inv f (f x) = x";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
by (EVERY1 [rtac (major RS inj_select)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
qed "Inv_f_f";
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
(* Useful??? *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
val [oneone,minor] = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
    "[| inj(f); !!y. y: range(f) ==> P(Inv f y) |] ==> P(x)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
by (res_inst_tac [("t", "x")] (oneone RS (Inv_f_f RS subst)) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
by (rtac (rangeI RS minor) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
qed "inj_transfer";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
(*** inj_onto f A: f is one-to-one over A ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
val prems = goalw Fun.thy [inj_onto_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
    "(!! x y. [| f(x) = f(y);  x:A;  y:A |] ==> x=y) ==> inj_onto f A";
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
   114
by (fast_tac (!claset addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
qed "inj_ontoI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
val [major] = goal Fun.thy 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
    "(!!x. x:A ==> g(f(x)) = x) ==> inj_onto f A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
by (rtac inj_ontoI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
by (etac (apply_inverse RS trans) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
by (REPEAT (eresolve_tac [asm_rl,major] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
qed "inj_onto_inverseI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
val major::prems = goalw Fun.thy [inj_onto_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
    "[| inj_onto f A;  f(x)=f(y);  x:A;  y:A |] ==> x=y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
by (rtac (major RS bspec RS bspec RS mp) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
by (REPEAT (resolve_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
qed "inj_ontoD";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
goal Fun.thy "!!x y.[| inj_onto f A;  x:A;  y:A |] ==> (f(x)=f(y)) = (x=y)";
1754
852093aeb0ab Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1672
diff changeset
   131
by (fast_tac (!claset addSEs [inj_ontoD]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
qed "inj_onto_iff";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
val major::prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
    "[| inj_onto f A;  ~x=y;  x:A;  y:A |] ==> ~ f(x)=f(y)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
by (rtac contrapos 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
by (etac (major RS inj_ontoD) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
by (REPEAT (resolve_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
qed "inj_onto_contraD";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
(*** Lemmas about inj ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
val prems = goalw Fun.thy [o_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
    "[| inj(f);  inj_onto g (range f) |] ==> inj(g o f)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
by (cut_facts_tac prems 1);
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
   147
by (fast_tac (!claset addIs [injI]
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
                     addEs [injD,inj_ontoD]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
qed "comp_inj";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   151
val [prem] = goal Fun.thy "inj(f) ==> inj_onto f A";
1754
852093aeb0ab Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1672
diff changeset
   152
by (fast_tac (!claset addIs [prem RS injD, inj_ontoI]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
qed "inj_imp";
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
val [prem] = goalw Fun.thy [Inv_def] "y : range(f) ==> f(Inv f y) = y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
by (EVERY1 [rtac (prem RS rangeE), rtac selectI, etac sym]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
qed "f_Inv_f";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
val prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
    "[| Inv f x=Inv f y; x: range(f);  y: range(f) |] ==> x=y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
by (rtac (arg_cong RS box_equals) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
by (REPEAT (resolve_tac (prems @ [f_Inv_f]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
qed "Inv_injective";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
val prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
    "[| inj(f);  A<=range(f) |] ==> inj_onto (Inv f) A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
by (cut_facts_tac prems 1);
1754
852093aeb0ab Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1672
diff changeset
   168
by (fast_tac (!claset addIs [inj_ontoI] 
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
   169
                      addEs [Inv_injective,injD]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
qed "inj_onto_Inv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
2499
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
   173
AddIs  [rangeI]; 
0bc87b063447 Tidying of proofs. New theorems are enterred immediately into the
paulson
parents: 2031
diff changeset
   174
AddSEs [rangeE]; 
1754
852093aeb0ab Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents: 1672
diff changeset
   175
1837
ce5dc74dec97 Now set_cs is just taken from !claset
paulson
parents: 1822
diff changeset
   176
val set_cs = !claset delrules [equalityI];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
1883
00b4b6992945 Redefining "range" as a macro
paulson
parents: 1837
diff changeset
   178