Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] Symmetry does not work with <>

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] Symmetry does not work with <>


Chronological Thread 
  • From: Jonathan <jonikelee AT gmail.com>
  • To: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] Symmetry does not work with <>
  • Date: Tue, 22 Jul 2014 16:53:50 -0400

On 07/22/2014 04:46 PM, Marcus Ramos wrote:
​Hi,

My goal is "l <> []"​, however I need it to be "[] <> l". How can I get
this since symmetry does not work for <>?

Thanks,
Marcus.


intro H; symmetry in H; contradict H.

Or, apply the lemma not_eq_sym:

not_eq_sym: forall (A : Type) (x y : A), x <> y -> y <> x

-- Jonathan




Archive powered by MHonArc 2.6.18.

Top of Page