我试图证明eqb_neq
:
Theorem eqb_neq : forall x y : nat,
x =? y = false <-> x <> y.
在证明过程中,我到达了最后一步,我只需要证明附加辅助定理:
Theorem eqb_false_helper : forall n m : nat,
n <> m -> S n <> S m.
我尝试了多种策略,但现在我什至不确定是否可以证明这个辅助定理。
我还能尝试什么?任何提示eqb_neq
或辅助定理?
谢谢