diff options
Diffstat (limited to 'theories')
| -rw-r--r-- | theories/ZArith/Znumtheory.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/theories/ZArith/Znumtheory.v b/theories/ZArith/Znumtheory.v index 5c0ed2ec0e..264c641ac0 100644 --- a/theories/ZArith/Znumtheory.v +++ b/theories/ZArith/Znumtheory.v @@ -421,7 +421,7 @@ Definition Zgcd a b := Zgcdn (Zgcd_bound a) a b. (** A first obvious fact : [Zgcd a b] is positive. *) -Lemma Zgcdn_pos : forall n a b, +Lemma Zgcdn_is_pos : forall n a b, 0 <= Zgcdn n a b. Proof. induction n. @@ -429,9 +429,9 @@ simpl; auto with zarith. destruct a; simpl; intros; auto with zarith; auto. Qed. -Lemma Zgcd_pos : forall a b, 0 <= Zgcd a b. +Lemma Zgcd_is_pos : forall a b, 0 <= Zgcd a b. Proof. -intros; unfold Zgcd; apply Zgcdn_pos; auto. +intros; unfold Zgcd; apply Zgcdn_is_pos; auto. Qed. (** We now prove that Zgcd is indeed a gcd. *) |
