Adelfa Home

Existence of an identity element for addition

Specification

[View ident.lf]
nat : type.
z : nat.
s : {x:nat} nat.

plus : {N1:nat}{N2:nat}{N3:nat} type.
plus_z : {N:nat} plus z N N.
plus_s : {N1:nat}{N2:nat}{N3:nat}
  {P:plus N1 N2 N3} plus (s N1) N2 (s N3).

Reasoning

[View ident.ath]

Click on a command or tactic to see a detailed view of its use.

Specification "ident.lf".

Theorem identity : exists I, ((forall X, {X:nat} => exists D, {D:plus I X X}) /\
                              (forall X, {X:nat} => exists D, {D:plus X I X})).