]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/library/Z/z.ma
More notation here and there.
[helm.git] / helm / matita / library / Z / z.ma
index 423399ff2c85449324be1f97ee243930182e0114..8ce0047e169f6b6a8b014d4614877e6e9c2eb7c4 100644 (file)
@@ -51,7 +51,7 @@ match z with
 theorem OZ_test_to_Prop :\forall z:Z.
 match OZ_test z with
 [true \Rightarrow z=OZ 
-|false \Rightarrow \lnot (z=OZ)].
+|false \Rightarrow z \neq OZ].
 intros.elim z.
 simplify.reflexivity.
 simplify.intros [H].
@@ -81,17 +81,17 @@ qed.
 variant inj_neg : \forall n,m:nat. neg n = neg m \to n = m
 \def injective_neg.
 
-theorem not_eq_OZ_pos: \forall n:nat. \lnot (OZ = (pos n)).
+theorem not_eq_OZ_pos: \forall n:nat. OZ \neq pos n.
 simplify.intros [n; H].
 discriminate H.
 qed.
 
-theorem not_eq_OZ_neg :\forall n:nat. \lnot (OZ = (neg n)).
+theorem not_eq_OZ_neg :\forall n:nat. OZ \neq neg n.
 simplify.intros [n; H].
 discriminate H.
 qed.
 
-theorem not_eq_pos_neg :\forall n,m:nat. \lnot ((pos n) = (neg m)).
+theorem not_eq_pos_neg :\forall n,m:nat. pos n \neq neg m.
 simplify.intros [n; m; H].
 discriminate H.
 qed.