Created
April 6, 2012 23:52
-
-
Save einblicker/2324085 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
Section CultOfLoveDoesNotExist. | |
Variable human : Set. | |
Variable P : human -> Prop. (* xは愛の教団に属する *) | |
Variable L : human -> human -> Prop. (* xはyを愛する *) | |
Theorem CultOfLoveDoesNotExist | |
(forall x : human, P x -> forall y : human, ~ L y y -> L x y) /\ | |
(forall x : human, P x -> forall y : human, L x y -> ~ L y y) -> | |
~ (exists x : human, P x). | |
Proof. | |
unfold not. | |
intros. | |
destruct H0. | |
destruct H. | |
apply (H1 x H0 x); apply (H x H0 x); intros; apply (H1 x H0 x); assumption. | |
Qed. | |
End CultOfLoveDoesNotExist. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment