Added
authornipkow
Sat, 15 Nov 1997 13:10:52 +0100
changeset 4229 551684f275b9
parent 4228 22e3f0368c85
child 4230 eb5586526bc9
Added > "(? x : f `` A. P x) = (? a:A. P(f a))" > "(! x : f `` A. P x) = (! a:A. P(f a))"
src/HOL/Set.ML
--- a/src/HOL/Set.ML	Fri Nov 14 15:51:09 1997 +0100
+++ b/src/HOL/Set.ML	Sat Nov 15 13:10:52 1997 +0100
@@ -610,6 +610,16 @@
 qed "image_iff";
 
 
+goal Set.thy "(! x : f `` A. P x) = (! a:A. P(f a))";
+by (Blast_tac 1);
+qed "ball_image";
+
+goal Set.thy "(? x : f `` A. P x) = (? a:A. P(f a))";
+by (Blast_tac 1);
+qed "bex_image";
+
+Addsimps [ball_image,bex_image];
+
 (*** Range of a function -- just a translation for image! ***)
 
 goal thy "!!b. b=f(x) ==> b : range(f)";