如果您的定义是逐点的,我很惊讶您需要对矩阵进行矢量化,通常您应该能够将结果定义为\matrix_(i, j) op
,例如矩阵乘法的标准定义是:
\matrix_(i, k) \sum_j (A i j * B j k).
顺便说一句,您的引理的快速“肮脏”证明是:
Lemma nth_enum_prod p q (a : 'I_q) : val a = index (@ord0 p, a) (enum predT).
Proof.
have /(_ _ 'I_q) pair_snd_inj: injective [eta pair ord0] by move => n T i j [].
have Hfst : (ord0, a) \in [seq (ord0, x2) | x2 <- enum 'I_q].
by move=> n; rewrite mem_map /= ?mem_enum.
rewrite enumT !unlock /= /prod_enum enum_ordS /= index_cat {}Hfst.
by rewrite index_map /= ?index_enum_ord.
Qed.
但实际上,如果您发现自己使用它,则意味着您遇到了另一种问题。我只是将其发布为关于如何操作这种表达式的说明。
编辑:根据您的评论,操作上述内容的更原则性方法是定义关于index
和产品的引理;我把完整的证明留作练习,但大纲是:
Lemma index_allpairs (T U : eqType) (x : T) (y : U) r s :
(* TODO: Some conditions are missing here *)
index (x,y) [seq (x,y) | x <- r , y <- s] =
size s * (index x r) + index y s.
Proof.
Admitted.
Lemma index_ord_allpairs p q (x : 'I_p) (y : 'I_q) :
index (x,y) [seq (x,y) | x <- enum 'I_p , y <- enum 'I_q] = q * x + y.
Proof. by rewrite index_allpairs ?mem_enum ?size_enum_ord ?index_enum_ord. Qed.
Lemma nth_enum_prod p q (a : 'I_q) : val a = index (@ord0 p, a) (enum predT).
Proof. by rewrite enumT unlock index_ord_allpairs muln0. Qed.