Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] congruence

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] congruence


Chronological Thread 
  • From: Laurent Thery <Laurent.Thery AT inria.fr>
  • To: coq-club AT inria.fr
  • Subject: Re: [Coq-Club] congruence
  • Date: Thu, 1 Oct 2015 17:54:30 +0200



On 09/30/2015 06:43 PM, Patricia Peratto wrote:
I need to use congruence of equality.
I import the files Logic and Logic_Type
but does not find it. (I want to use the
function congr_id).

Is it in another place?

Regards
Patricia Peratto


This given by the inductive principle derived from the definition
of eq.

Print eq_ind.

This is what the rewrite tactic is using.

Goal forall (A : Type) (a b : A), a = b -> id a = id b.
intros A a b H.
rewrite H.
apply refl_equal.
Qed.


You can also have a look in Init/Logic.v at theorems such as f_equal, f_equal2....

Goal forall (A : Type) (a b : A), a = b -> id a = id b.
intros A a b H.
apply f_equal.
exact H.
Qed.

--
Laurent


  • [Coq-Club] congruence, Patricia Peratto, 10/01/2015
    • Re: [Coq-Club] congruence, Laurent Thery, 10/01/2015

Archive powered by MHonArc 2.6.18.

Top of Page