Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Proving equalities for records with Prop component

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Proving equalities for records with Prop component


Chronological Thread 
  • From: Kirill Taran <kirill.t256 AT gmail.com>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] Proving equalities for records with Prop component
  • Date: Thu, 23 Oct 2014 19:27:55 +0400

Hello,

I have such problem:
  Record R := { number : nat; proof : exists n, n + number = 100 }.
  Lemma r_eq (x y : R) : number x = number y -> x = y.
  Admitted.

Is it possible to solve it and how?

Sincerely,
Kirill Taran



Archive powered by MHonArc 2.6.18.

Top of Page