src/HOL/Real/RealPow.ML
changeset 10778 2c6605049646
parent 10752 c4f1bf2acf4c
child 10784 27e4d90b35b5
--- a/src/HOL/Real/RealPow.ML	Thu Jan 04 10:22:33 2001 +0100
+++ b/src/HOL/Real/RealPow.ML	Thu Jan 04 10:23:01 2001 +0100
@@ -146,16 +146,15 @@
 Goal "(#1::real) <= #2 ^ n";
 by (res_inst_tac [("y","#1 ^ n")] order_trans 1);
 by (rtac realpow_le 2);
-by (auto_tac (claset() addIs [order_less_imp_le],simpset()));
+by (auto_tac (claset() addIs [order_less_imp_le], simpset()));
 qed "two_realpow_ge_one";
 
 Goal "real_of_nat n < #2 ^ n";
 by (induct_tac "n" 1);
-by Auto_tac;
+by (auto_tac (claset(), simpset() addsimps [real_of_nat_Suc]));
 by (stac real_mult_2 1);
 by (rtac real_add_less_le_mono 1);
-by (auto_tac (claset(),
-	      simpset() addsimps [two_realpow_ge_one]));
+by (auto_tac (claset(), simpset() addsimps [two_realpow_ge_one]));
 qed "two_realpow_gt";
 Addsimps [two_realpow_gt,two_realpow_ge_one];