deleted the redundant less_imp_binomial_eq_0
authorpaulson
Wed, 13 Oct 1999 12:07:44 +0200
changeset 7844 6462cb4dfdc2
parent 7843 077d305615df
child 7845 3561e0da35b8
deleted the redundant less_imp_binomial_eq_0
src/HOL/Power.ML
--- a/src/HOL/Power.ML	Wed Oct 13 12:07:23 1999 +0200
+++ b/src/HOL/Power.ML	Wed Oct 13 12:07:44 1999 +0200
@@ -71,16 +71,9 @@
 Addsimps [binomial_n_0, binomial_0_Suc, binomial_Suc_Suc];
 Delsimps [binomial_0, binomial_Suc];
 
-
-Goal "!k. n<k --> (n choose k) = 0";
-by (induct_tac "n" 1);
-by (ALLGOALS (rtac allI THEN' exhaust_tac "k"));
-by (ALLGOALS Asm_simp_tac);
-qed_spec_mp "less_imp_binomial_eq_0";
-
 Goal "(n choose n) = 1";
 by (induct_tac "n" 1);
-by (ALLGOALS (asm_simp_tac (simpset() addsimps [less_imp_binomial_eq_0])));
+by (ALLGOALS (asm_simp_tac (simpset() addsimps [binomial_eq_0])));
 qed "binomial_n_n";
 Addsimps [binomial_n_n];