aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Reals/SplitRmult.v
diff options
context:
space:
mode:
authorGravatar mayero <mayero@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-04-23 18:56:41 +0000
committerGravatar mayero <mayero@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-04-23 18:56:41 +0000
commit92547fd709b2a08deaeb5c3156bff2d9de3c2837 (patch)
treeccbf9bed15f3efed27e0a3cfd0b8d5847e7b33d3 /theories/Reals/SplitRmult.v
parentb4f9c32a31c653f45a4daf821b860db84487f0d9 (diff)
Ajout Reals
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1676 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Reals/SplitRmult.v')
-rw-r--r--theories/Reals/SplitRmult.v19
1 files changed, 19 insertions, 0 deletions
diff --git a/theories/Reals/SplitRmult.v b/theories/Reals/SplitRmult.v
new file mode 100644
index 000000000..479112326
--- /dev/null
+++ b/theories/Reals/SplitRmult.v
@@ -0,0 +1,19 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
+
+(*i $Id$ i*)
+
+(*Lemma mult_non_zero :(r1,r2:R)``r1<>0`` /\ ``r2<>0`` -> ``r1*r2<>0``.*)
+
+
+Require Rbase.
+
+Tactic Definition SplitRMult :=
+ Match Context With
+ | [ |- ~(Rmult ?1 ?2)==R0 ] -> Apply mult_non_zero; Split;Try SplitRMult.
+