Skip to content

Instantly share code, notes, and snippets.

@gclaramunt
Created October 3, 2011 13:53
Show Gist options
  • Save gclaramunt/1259144 to your computer and use it in GitHub Desktop.
Save gclaramunt/1259144 to your computer and use it in GitHub Desktop.
Trivial proof
Theorem AE: forall k:U,A(k)->(exists x:U,A(x)).
Proof.
intros k Ha; exists k; apply Ha.
Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment