// This prints the left floatting menu
Dedukti    Load Matita      Load Coq         Load Lean        Load PVS         Load OpenTheory Load
Dedukti-jumb

Definition

relations.associative

Body

λf. ∀ x y z, (f (f x y) z) = (f x (f y z))

Main Dependencies
constant
Theory
constant

Coq-Jumb
Body

Definition associative : forall (A:Type), (A -> A -> A) -> Prop := fun (A:Type) => fun (f:(A -> A -> A)) => forall (x:A), forall (y:A), forall (z:A), logic.eq (A) (f (f x y) z) (f x (f y z))



Matita-Jumb
Body

definition associative : \forall A : Type[0] . (A -> A -> A) -> Prop := \lambda A : Type[0]. \lambda f : A -> A -> A. \forall (x:A). \forall (y:A). \forall (z:A). (eq) (A) (f (f x y) z) (f x (f y z))



Lean-jumb
Body

def associative : forall (A : Type) , ((A) -> (A) -> A) -> Prop := fun (A : Type) , fun (f : (A) -> (A) -> A) , forall (x:A) , forall (y:A) , forall (z:A) , (((logic.eq_) (A)) (((f) (((f) (x)) (y))) (z))) (((f) (x)) (((f) (y)) (z)))



PVS-jumb

Body

associative [A:TYPE+] : [[A -> [A -> A]] -> bool] = (LAMBDA(f:[A -> [A -> A]]):(FORALL(x:A):(FORALL(y:A):(FORALL(z:A):logic_sttfa_th.eq[A](f(f(x)(y))(z))(f(x)(f(y)(z)))))))



OpenTheory

Printing for OpenTheory is not working at the moment.