Created
May 26, 2016 16:01
-
-
Save mvaled/1284963f4f12fffe7c8854a97f766848 to your computer and use it in GitHub Desktop.
Proof that '(p -> q -> z) <-> ((p /\ q) -> z)'.
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 ImplicationProof. | |
Variables p q z : Prop. | |
Lemma T1: (p -> q -> z) -> ((p /\ q) -> z). | |
intros L P. | |
elim P. | |
trivial. | |
Save. | |
Lemma T2: ((p /\ q) -> z) -> (p -> q -> z). | |
intros. | |
cut (p /\ q); [trivial | split; [trivial | trivial]]. | |
Save. | |
Lemma ImplicationChain: (p -> q -> z) <-> ((p /\ q) -> z). | |
split; [apply T1 | apply T2]. | |
Qed. | |
End ImplicationProof. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment