Last active
August 8, 2024 22:00
-
-
Save mheiber/872eddb8fdec21a8cb63b6a4d2710892 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
Theorem sum_equiv_visitor(A B C: Prop): A \/ B -> C <-> (A -> C) /\ (B -> C). | |
Proof. | |
split. | |
- auto. | |
- destruct H; intro H0; destruct H0; auto. | |
Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment