Theorem evenb_double_conv : forall n,
exists k, n = if evenb n then double k
else S (double k).
Proof.
(* Hint: Use the [evenb_S] lemma from [Induction.v]. *)
intros n. induction n as [|n' IHn'].
- simpl. exists O. simpl. reflexivity.
- rewrite -> evenb_S. destruct (evenb n') as [H1 | H2].
+ simpl.
我在这里卡住了:
n' : nat
IHn' : exists k : nat, n' = double k
============================
exists k : nat, S n' = S (double k)
我们可以使用归纳假设将 (double k) 重写为 n',也可以对目标使用注入,然后应用归纳假设。
但我不能做这些,因为exists
。
rewrite <- IHn'
给出:
错误:找不到要重写的同类关系。
injection
给出:
错误:Ltac 调用“注入”失败。不是否定的原始平等。
该怎么办?