Using Coq Field axioms
问题 I'm experimenting with the Coq field module trying to prove the following simple identity directly from field axioms: forall v, 0v == v . I saw that both 0 and == have existing notations, so I tried this (but failed): (***********) (* IMPORTS *) (***********) Require Import Coq.setoid_ring.Field_theory. (*********************) (* forall v, 0v == v *) (*********************) Lemma mul_0_l: forall v, ("0" * v "==" "0")%R_scope. Proof. I got this error message: Unknown scope delimiting key R