blob: b119bb0007cd61995b7d550fde66f3ce8c1fdc43 (
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
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
Require Import PeanoNat Plus Mult Lt.
Local Open Scope nat_scope.
(** Factorial *)
Fixpoint fact (n:nat) : nat :=
match n with
| O => 1
| S n => S n * fact n
end.
Arguments fact n%nat.
Lemma lt_O_fact n : 0 < fact n.
Proof.
induction n; simpl; auto with arith.
Qed.
Lemma fact_neq_0 n : fact n <> 0.
Proof.
apply Nat.neq_0_lt_0, lt_O_fact.
Qed.
Lemma fact_le n m : n <= m -> fact n <= fact m.
Proof.
induction 1.
- apply le_n.
- simpl. transitivity (fact m). trivial. apply Nat.le_add_r.
Qed.
|