File: Nat.v

package info (click to toggle)
coq 8.0pl2-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 14,228 kB
  • ctags: 17,685
  • sloc: ml: 97,070; makefile: 1,255; sh: 738; lisp: 456; awk: 15
file content (19 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Definition T:=nat.

Definition le:=Peano.le.

Hints Unfold le.

Lemma le_refl:(n:nat)(le n n).
  Auto.
Qed.

Require Le.

Lemma le_trans:(n,m,k:nat)(le n m) -> (le m k) -> (le n k).
  EAuto with arith.
Qed.

Lemma le_antis:(n,m:nat)(le n m) -> (le m n) -> n=m.
  EAuto with arith.
Qed.