Created
November 19, 2014 04:02
-
-
Save totem3/b32e718bc1059ad54242 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Import Arith. | |
Require Import NOrder. | |
Lemma le_n_0_eq n : n <= 0 -> 0 = n . | |
intros. | |
symmetry. | |
induction n. | |
reflexivity. | |
apply False_ind. | |
apply (NPeano.Nat.nle_succ_0 n). | |
apply H. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment