Guest User

Untitled

a guest
Oct 3rd, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Ohad : "More formally, intuitionistic logic explicitly negates the law of excluded middle."
  2. HMC : "Erm, no. It does not have "not (p or (not p))" as an axiom, as this statement would suggest."
  3. Ohad : "is not an axiom but follows from the axioms in few steps. is in the literature all over...."
  4.  
  5. Theorem Ohad_Is_Wrong : forall P : Prop, not (not (P + not P)).
  6. Proof.
  7. intros P.
  8. unfold not.
  9. intros f.
  10. refine (f _ ).
  11. right.
  12. intros p.
  13. refine (f (inl P (P->False) p)).
  14. Qed.
Add Comment
Please, Sign In to add comment