所以我刚刚开始学习coq(到目前为止它已经超出了我的想象)并且我正在尝试做一个基本的证明并且我很迷茫,到目前为止找到了一些帮助但是我认为我应该做 coq 会引发错误。所以在我的编辑部分我有:
Section wut.
Variables p q: Prop.
Theorem T1 : (~q->~p)->(p->q).
Proof.
intros.
apply NNPP.
intro.
apply H in H1.
contradiction.
Qed.
在打样框中我有:
1 subgoal
p, q : Prop
H : ~ q -> ~ p
H0 : p
______________________________________(1/1)
q
在错误框中我有:
The reference NNPP was not found in the current environment.
当前环境下找不到是什么意思?