aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib7/ring/NArithRing.v
blob: 65814a1400b880bb7864cf9bc04b083ade9740f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(***********************************************************************)
(*  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       *)
(***********************************************************************)

(* $Id$ *)

(* Instantiation of the Ring tactic for the binary natural numbers *)

Require Export Ring.
Require Export ZArith_base.
Require NArith.
Require Eqdep_dec.

Definition Neq := [n,m:entier]
  Cases (Ncompare n m) of
    EGAL => true
  | _ => false
  end.

Lemma Neq_prop : (n,m:entier)(Is_true (Neq n m)) -> n=m.
  Intros n m H; Unfold Neq in H.
  Apply Ncompare_Eq_eq.
  NewDestruct (Ncompare n m); [Reflexivity | Contradiction | Contradiction ].
Save.

Definition NTheory : (Semi_Ring_Theory Nplus Nmult (Pos xH) Nul Neq).
  Split.
    Apply Nplus_comm.
    Apply Nplus_assoc.
    Apply Nmult_comm.
    Apply Nmult_assoc.
    Apply Nplus_0_l.
    Apply Nmult_1_l.
    Apply Nmult_0_l.
    Apply Nmult_plus_distr_r.
    Apply Nplus_reg_l.
    Apply Neq_prop.
Save.

Add Semi Ring entier Nplus Nmult (Pos xH) Nul Neq NTheory [Pos Nul xO xI xH].