]> matita.cs.unibo.it Git - helm.git/commitdiff
first lemma
authorEnrico Tassi <enrico.tassi@inria.fr>
Mon, 14 Jan 2008 15:20:51 +0000 (15:20 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Mon, 14 Jan 2008 15:20:51 +0000 (15:20 +0000)
helm/software/matita/dama/infsup.ma [new file with mode: 0644]
helm/software/matita/dama/sandwich_corollary.ma

diff --git a/helm/software/matita/dama/infsup.ma b/helm/software/matita/dama/infsup.ma
new file mode 100644 (file)
index 0000000..ef436f8
--- /dev/null
@@ -0,0 +1,35 @@
+(**************************************************************************)
+(*       ___                                                              *)
+(*      ||M||                                                             *)
+(*      ||A||       A project by Andrea Asperti                           *)
+(*      ||T||                                                             *)
+(*      ||I||       Developers:                                           *)
+(*      ||T||         The HELM team.                                      *)
+(*      ||A||         http://helm.cs.unibo.it                             *)
+(*      \   /                                                             *)
+(*       \ /        This file is distributed under the terms of the       *)
+(*        v         GNU General Public License Version 2                  *)
+(*                                                                        *)
+(**************************************************************************)
+
+include "sandwich_corollary.ma".
+
+(* 3.19 *)
+definition supremum ≝ 
+  λR.λml:mlattice R.λxn:sequence ml.λx:ml.
+    increasing ? xn → upper_bound ? xn x ∧ xn ⇝ x.
+
+definition infimum ≝ 
+  λR.λml:mlattice R.λxn:sequence ml.λx:ml.
+    decreasing ? xn → lower_bound ? xn x ∧ xn ⇝ x.
+    
+(* 3.20 *)
+lemma supremum_uniq:
+  ∀R.∀ml:mlattice R.∀xn:sequence ml.increasing ? xn → (* BUG again the wrong coercion is chosen *)
+   ∀x,y:apart_of_metric_space ? ml.supremum ?? xn x → supremum ?? xn y → x ≈ y.
+intros (R ml xn Hxn x y Sx Sy);
+elim (Sx Hxn) (_ Hx); elim (Sy Hxn) (_ Hy);
+apply (tends_uniq ?? xn ?? Hx Hy);
+qed.
+
+(* 3.21 *)
index f41b65028b75574f89092d2f478c5a239004d354..8dafe1f63bcfed57912df44f4625c2ce08061043 100644 (file)
@@ -42,4 +42,4 @@ change in H with ( δx y/1+ δx y/1< δx y/1+ δx y/1);
 apply (lt_coreflexive ?? H);
 qed.
 
-
+(* 3.18 *)