X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Flibrary%2Fnat%2Frelevant_equations.ma;h=6e641708021d79d36c81b67283f889949e1fe43c;hb=0b69be40774bf7f75c8ed8a75c02998437ebbdbb;hp=f4cf43775058d9cfdd550c68f2cb959f00fba512;hpb=7f2444c2670cadafddd8785b687ef312158376b0;p=helm.git diff --git a/matita/library/nat/relevant_equations.ma b/matita/library/nat/relevant_equations.ma index f4cf43775..6e6417080 100644 --- a/matita/library/nat/relevant_equations.ma +++ b/matita/library/nat/relevant_equations.ma @@ -12,10 +12,12 @@ (* *) (**************************************************************************) -set "baseuri" "cic:/matita/nat/relevant_equations.ma". +set "baseuri" "cic:/matita/nat/relevant_equations". include "nat/times.ma". include "nat/minus.ma". +include "nat/gcd.ma". +(* if gcd is compiled before this, the applys will take too much *) theorem times_plus_l: \forall n,m,p:nat. (n+m)*p = n*p + m*p. intros. @@ -48,3 +50,13 @@ rewrite > distr_times_plus. rewrite > distr_times_plus. rewrite < assoc_plus.reflexivity. qed. + +theorem eq_pred_to_eq: + ∀n,m. O < n → O < m → pred n = pred m → n = m. +intros; +generalize in match (eq_f ? ? S ? ? H2); +intro; +rewrite < S_pred in H3; +rewrite < S_pred in H3; +assumption. +qed.