基本上,我想证明以下结果:
Lemma nat_ind_2 (P: nat -> Prop): P 0 -> P 1 -> (forall n, P n -> P (2+n)) ->
forall n, P n.
这就是所谓的双重归纳的递归方案。
我试图两次应用归纳来证明它,但我不确定我会以这种方式到达任何地方。确实,我当时就卡住了:
Proof.
intros. elim n.
exact H.
intros. elim n0.
exact H0.
intros. apply (H1 n1).