Created
April 7, 2014 15:25
-
-
Save KeenS/10022411 to your computer and use it in GitHub Desktop.
This file contains 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
Lemma NotNot : forall P : Prop, P -> ~~P. | |
Proof. | |
intros. | |
unfold not. | |
intros. | |
apply H0. | |
apply H. | |
Qed. | |
Require Import Classical. | |
Theorem NotNot_LEM : forall P : Prop, ~~(P \/ ~P). | |
Proof. | |
intro P. | |
apply NotNot. | |
apply classic. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment