Skip to content

Instantly share code, notes, and snippets.

@JasonGross
Created January 9, 2014 00:05
Show Gist options
  • Select an option

  • Save JasonGross/8327118 to your computer and use it in GitHub Desktop.

Select an option

Save JasonGross/8327118 to your computer and use it in GitHub Desktop.
double negated lem
Goal forall T, ~~(T + ~T).
Proof.
intros T negLEM.
cut (~T).
- intro negT.
apply (negLEM (inr negT)).
- intro t.
apply (negLEM (inl t)).
Defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment