Skip to content

Instantly share code, notes, and snippets.

View es30's full-sized avatar

es30

View GitHub Profile
@es30
es30 / gist:093dbe9b69164780fd0e50c7445238db
Created April 10, 2018 04:22
Logic and Proof, Selected Chapter 9 Exercises
-- Exercise 9.4
section
variable Person : Type
variable shaves : Person → Person → Prop
variable barber : Person
variable h : ∀ x, shaves barber x ↔ ¬ shaves x x
-- Show the following:
example : false :=