aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theories/Arith/Factorial.v2
-rw-r--r--theories/Reals/Rfunctions.v2
2 files changed, 4 insertions, 0 deletions
diff --git a/theories/Arith/Factorial.v b/theories/Arith/Factorial.v
index 71cef55ce4..ca176a6c67 100644
--- a/theories/Arith/Factorial.v
+++ b/theories/Arith/Factorial.v
@@ -22,6 +22,8 @@ Fixpoint fact [n:nat]:nat:=
|(S n) => (mult (S n) (fact n))
end.
+Arguments Scope fact [ nat_scope ].
+
Lemma lt_O_fact : (n:nat)(lt O (fact n)).
Proof.
Induction n; Unfold lt; Simpl; Auto with arith.
diff --git a/theories/Reals/Rfunctions.v b/theories/Reals/Rfunctions.v
index 7d8e4b02cb..220e3919bc 100644
--- a/theories/Reals/Rfunctions.v
+++ b/theories/Reals/Rfunctions.v
@@ -66,6 +66,8 @@ Fixpoint pow [r:R;n:nat]:R:=
|(S n) => (Rmult r (pow r n))
end.
+Arguments Scope pow [ R_scope nat_scope ].
+
Lemma pow_O: (e : R) (pow e O) == R1.
Simpl; Auto with real.
Qed.