]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/RELATIONAL/NLE/nplus.ma
propagating the arithmetics library, partial commit
[helm.git] / matita / matita / contribs / RELATIONAL / NLE / nplus.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15
16
17 include "NLE/defs.ma".
18
19 theorem nle_nplus: ∀p, q, r. p ⊕ q ≍ r → q ≤ r.
20  intros; elim H; clear H q r; autobatch.
21 qed.
22
23 axiom nle_nplus_comp: ∀x1,x2,x3. x1 ⊕ x2 ≍ x3 → ∀y1,y2,y3. y1 ⊕ y2 ≍ y3 →
24                       x1 ≤ y1 → x2 ≤ y2 → x3 ≤ y3.
25
26 axiom nle_nplus_comp_lt_2: ∀x1,x2,x3. x1 ⊕ x2 ≍ x3 → ∀y1,y2,y3. y1 ⊕ y2 ≍ y3 →
27                            x1 ≤ y1 → x2 < y2 → x3 < y3.