(************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) (* m}. Proof. induction n; destruct m; auto. elim (IHn m); auto. Defined. Hint Resolve O_or_S eq_nat_dec: arith. Theorem dec_eq_nat : forall n m, decidable (n = m). intros x y; unfold decidable in |- *; elim (eq_nat_dec x y); auto with arith. Defined.