Skip to content

Instantly share code, notes, and snippets.

@qnighy
Created April 13, 2014 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qnighy/10567940 to your computer and use it in GitHub Desktop.
Save qnighy/10567940 to your computer and use it in GitHub Desktop.
Theorem Disjunctive_syllogism : forall P Q : Prop, (P \/ Q) -> ~P -> Q.
intros.
destruct H.
- destruct H0.
apply H.
- apply H.
Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment