Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Problems with reduction

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Problems with reduction


chronological Thread 
  • From: "D. Pucci" <danpucci AT poczta.onet.pl>
  • To: <coq-club AT pauillac.inria.fr>
  • Subject: [Coq-Club] Problems with reduction
  • Date: Thu, 1 Jul 2004 21:15:54 +0200
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

I am stuck with an apparently very simple prove:

=================================================
Parameter f: bool -> bool -> bool.

Definition p1 := fun a: bool => (if a then (f false) else (f true)) a.

Definition p2 := fun a: bool => if a then (f false a) else (f true a).

Theorem abc: p1 = p2.
=================================================

Shouldn't this be provable by reducing p1 and p2 to the same normal form?

Can anybody help me?

Thank you in advance.




Archive powered by MhonArc 2.6.16.

Top of Page