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

Axiom

nat.nat_ind

Statement

∀ Q, Q O ⇒ ∀ x, Q x ⇒ Q (x+1) ⇒ ∀ x, Q x

Main Dependencies
constant
Theory
constant

Coq-Jumb
Statement

Axiom nat_ind : forall (Q:(nat -> Prop)), (Q O) -> (forall (x:nat), (Q x) -> Q (S x)) -> forall (x:nat), Q x



Matita-Jumb
Statement

axiom nat_ind : \forall (Q:nat -> Prop). (Q (O) ) -> (\forall (x:nat). (Q x) -> Q ((S) x)) -> \forall (x:nat). Q x



Lean-jumb
Statement

axiom nat_ind : forall (Q:(nat.nat) -> Prop) , ((Q) ((nat.O) )) -> (forall (x:nat.nat) , ((Q) (x)) -> (Q) (((nat.S) ) (x))) -> forall (x:nat.nat) , (Q) (x)



PVS-jumb

Statement

nat_ind : AXIOM (FORALL(Q:[nat_sttfa.sttfa_nat -> bool]):(Q(nat_sttfa.sttfa_O) => ((FORALL(x:nat_sttfa.sttfa_nat):(Q(x) => Q(nat_sttfa.sttfa_S(x)))) => (FORALL(x:nat_sttfa.sttfa_nat):Q(x)))))



OpenTheory

Printing for OpenTheory is not working at the moment.