src/ZF/Update.ML
author paulson
Fri, 18 Feb 2000 15:35:29 +0100
changeset 8255 38f96394c099
parent 6068 2d8f3e1f1151
child 9907 473a6604da94
permissions -rw-r--r--
new distributive laws
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5157
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     1
(*  Title:      ZF/Update.thy
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     2
    ID:         $Id$
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     5
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     6
Function updates: like theory Map, but for ordinary functions
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     7
*)
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     8
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
     9
open Update;
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    10
6068
2d8f3e1f1151 if-then-else syntax for ZF
paulson
parents: 6048
diff changeset
    11
Goal "f(x:=y) ` z = (if z=x then y else f`z)";
5157
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    12
by (simp_tac (simpset() addsimps [update_def]) 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    13
by (case_tac "z : domain(f)" 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    14
by (Asm_simp_tac 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    15
by (asm_simp_tac (simpset() addsimps [apply_0]) 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    16
qed "update_apply";
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    17
Addsimps [update_apply];
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    18
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    19
Goalw [update_def] "[| f`x = y;  f: Pi(A,B);  x: A |] ==> f(x:=y) = f";
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    20
by (asm_simp_tac (simpset() addsimps [domain_of_fun, cons_absorb]) 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    21
by (rtac fun_extension 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    22
by (best_tac (claset() addIs [apply_type, if_type, lam_type]) 1);
5168
adafef6eb295 isatool expandshort;
wenzelm
parents: 5157
diff changeset
    23
by (assume_tac 1);
5157
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    24
by (Asm_simp_tac 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    25
qed "update_idem";
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    26
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    27
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    28
(* [| f: Pi(A, B); x:A |] ==> f(x := f`x) = f *)
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    29
Addsimps [refl RS update_idem];
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    30
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    31
Goalw [update_def] "domain(f(x:=y)) = cons(x, domain(f))";
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    32
by (Asm_simp_tac 1);
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    33
qed "domain_update";
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    34
Addsimps [domain_update];
6e03de8ec2b4 as in HOL
paulson
parents:
diff changeset
    35
6048
88e6e55dd168 new theorem update_type
paulson
parents: 5168
diff changeset
    36
Goalw [update_def] "[| f: A -> B;  x : A;  y: B |] ==> f(x:=y) : A -> B";
88e6e55dd168 new theorem update_type
paulson
parents: 5168
diff changeset
    37
by (asm_simp_tac (simpset() addsimps [domain_of_fun, cons_absorb, 
88e6e55dd168 new theorem update_type
paulson
parents: 5168
diff changeset
    38
				      apply_funtype, lam_type]) 1);
88e6e55dd168 new theorem update_type
paulson
parents: 5168
diff changeset
    39
qed "update_type";
88e6e55dd168 new theorem update_type
paulson
parents: 5168
diff changeset
    40
88e6e55dd168 new theorem update_type
paulson
parents: 5168
diff changeset
    41