Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Notation for functional relation

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Notation for functional relation


Chronological Thread 
  • From: Anders Lundstedt <anders AT anderslundstedt.se>
  • To: "coq-club AT inria.fr" <coq-club AT inria.fr>
  • Subject: [Coq-Club] Notation for functional relation
  • Date: Sun, 26 Jan 2014 17:35:35 +0100

Dear all,

I have a ternary relation R such that R a b c -> R a b d -> c = d. Is it possible to treat R notationally as a binary function? R is not decidable.

Parameter A : Set.
Parameter R : A -> A -> A -> Prop.
(* we may assume that R is functional *)
Axiom R_functional : forall a b c d, R a b c -> R a b d -> c = d.
(* 
   is it possible to create a functional notation a * ... * b = c, i.e. s.t.
     a * b = c <-> R a b c
     a * b * c = d <-> exists x, a * b = x /\ x * c = d
     a * b * c * d = e <-> exists x, a * b * c = x /\ x * d = e
     etc...
*)

Best regards,

Anders Lundstedt



Archive powered by MHonArc 2.6.18.

Top of Page