您的关系不正确,因为它缺少列表头部不是Z
您要查找的情况的情况。Count 0 [0] 1
例如,即使.也没有类型术语count 1 [0] = 0
。添加它,当您使用它时,使类型更自然(以相同的方式对参数进行排序并创建z
一个参数)。
Inductive Count (z : Z) : list Z -> nat -> Prop :=
| CountNil : Count z nil 0
| CountYes : forall l n, Count z l n -> Count z (z :: l) (S n)
| CountNo : forall z' l n, z <> z' -> Count z l n -> Count z (z' :: l) n.
至于正确性定理,嗯,count
在 上是归纳的l
,所以关于它的任何定理都应该是这样。
Theorem count_correct (z : Z) (n : N) (l : list Z) : Count z l (count z l).
Proof.
intros.
induction l as [ | z' l rec].
- constructor.
- cbn [count].
destruct (Z.eq_dec z z') as [<- | no]; constructor; assumption.
Qed.
请注意,有一个自动机制来定义Count
和count_correct
来自count
:
Require Import FunInd.
Function count (z : Z) (l : list Z) {struct l} : nat :=
match l with
| nil => 0
| z' :: l =>
if Z.eq_dec z z'
then S (count z l)
else count z l
end.
Print R_count. (* Like Count *)
(* Inductive R_count (z : Z) : list Z -> nat -> Set :=
R_count_0 : forall l : list Z, l = nil -> R_count z nil 0
| R_count_1 : forall (l : list Z) (z' : Z) (l' : list Z),
l = z' :: l' ->
forall _x : z = z',
Z.eq_dec z z' = left _x ->
forall _res : nat,
R_count z l' _res -> R_count z (z' :: l') (S _res)
| R_count_2 : forall (l : list Z) (z' : Z) (l' : list Z),
l = z' :: l' ->
forall _x : z <> z',
Z.eq_dec z z' = right _x ->
forall _res : nat,
R_count z l' _res -> R_count z (z' :: l') _res. *)
Check R_count_correct. (* : forall z l _res, _res = count z l -> R_count z l _res *)
Check R_count_complete. (* : forall z l _res, R_count z l _res -> _res = count z l *)