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

Theorem

nat.eqb_elim

Statement

∀ n m P, n = m ⇒ P true ⇒ ¬(n = m) ⇒ P false ⇒ P (n = m)

Main Dependencies
Theory

Coq-Jumb
Statement

Theorem eqb_elim : forall (n:nat), forall (m:nat), forall (P:(bool.bool -> Prop)), ((logic.eq (nat) n m) -> P bool.true) -> ((connectives.Not (logic.eq (nat) n m)) -> P bool.false) -> P (eqb n m).



Matita-Jumb
Statement

theorem eqb_elim : \forall (n:nat). \forall (m:nat). \forall (P:bool -> Prop). (((eq) (nat) n m) -> P (true) ) -> (((Not) ((eq) (nat) n m)) -> P (false) ) -> P ((eqb) n m).



Lean-jumb
Statement

theorem eqb_elim : forall (n:nat.nat) , forall (m:nat.nat) , forall (P:(bool.bool) -> Prop) , (((((logic.eq_) (nat.nat)) (n)) (m)) -> (P) ((bool.true) )) -> ((((connectives.Not) ) ((((logic.eq_) (nat.nat)) (n)) (m))) -> (P) ((bool.false) )) -> (P) ((((nat.eqb) ) (n)) (m)).



PVS-jumb

Statement

eqb_elim : LEMMA (FORALL(n:nat_sttfa.sttfa_nat):(FORALL(m:nat_sttfa.sttfa_nat):(FORALL(P:[bool_sttfa_th.sttfa_bool -> bool]):((logic_sttfa_th.eq[nat_sttfa.sttfa_nat](n)(m) => P(bool_sttfa_th.sttfa_true)) => ((connectives_sttfa_th.sttfa_Not(logic_sttfa_th.eq[nat_sttfa.sttfa_nat](n)(m)) => P(bool_sttfa_th.sttfa_false)) => P(nat_sttfa.eqb(n)(m)))))))



OpenTheory

Printing for OpenTheory is not working at the moment.