Skip to content

Instantly share code, notes, and snippets.

@GallagherCommaJack
Last active August 29, 2015 14:17
Show Gist options
  • Save GallagherCommaJack/9aebc5f9fb88fc8134fe to your computer and use it in GitHub Desktop.
Save GallagherCommaJack/9aebc5f9fb88fc8134fe to your computer and use it in GitHub Desktop.
Theorem contr_pos_eq_classic :
(forall P Q, (~ Q -> ~ P) -> P -> Q) ->
forall P, ~~ P -> P.
Proof. intros H P nnP. apply H with (Q := P) in nnP; intuition. Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment