src/HOL/Hyperreal/Transcendental.ML
changeset 14268 5cf13e80be0e
parent 14266 08b34c902618
child 14269 502a7c95de73
--- a/src/HOL/Hyperreal/Transcendental.ML	Tue Nov 25 10:37:03 2003 +0100
+++ b/src/HOL/Hyperreal/Transcendental.ML	Thu Nov 27 10:47:55 2003 +0100
@@ -5,6 +5,13 @@
     Description : Power Series
 *)
 
+fun multr_by_tac x i = 
+       let val cancel_thm = 
+           CLAIM "[| (0::real)<z; x*z<y*z |] ==> x<y" 
+       in
+           res_inst_tac [("z",x)] cancel_thm i 
+       end;
+
 Goalw [root_def] "root (Suc n) 0 = 0";
 by (safe_tac (claset() addSIs [some_equality,realpow_zero] 
     addSEs [realpow_zero_zero]));