我是 Coq 的新手。我对以下证明感到困惑:
Lemma nth_eq : forall {A} (l1 l2 : list A),
length l1 = length l2 ->
(forall d k, nth k l1 d = nth k l2 d) ->l1 = l2.
Proof.
intros.
结果显示:
1 subgoal
A : Type
l1, l2 : list A
H : length l1 = length l2
H0 : forall (d : A) (k : nat), nth k l1 d = nth k l2 d
______________________________________(1/1)
l1 = l2
使用 H0 和 H 的推论很明显,但我不知道如何使用 H0 来完成证明。非常感谢您的帮助!