Created
April 27, 2015 00:41
-
-
Save nkaretnikov/808fdd7c446fb834558b to your computer and use it in GitHub Desktop.
not_exists_dist
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
Theorem not_exists_dist : | |
excluded_middle -> | |
forall (X:Type) (P : X -> Prop), | |
~ (exists x, ~ P x) -> (forall x, P x). | |
Proof. | |
intros. | |
unfold excluded_middle in H. | |
unfold "~" in H0. | |
unfold "~" in H. | |
(* 1 subgoals, subgoal 1 (ID 72) *) | |
(* H : forall P : Prop, P \/ (P -> False) *) | |
(* X : Type *) | |
(* P : X -> Prop *) | |
(* H0 : (exists x : X, P x -> False) -> False *) | |
(* x : X *) | |
(* ============================ *) | |
(* P x *) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment