FinitudeOfPropositions
This commit is contained in:
parent
43b0af409b
commit
3f9948eaf9
1 changed files with 14 additions and 0 deletions
14
SimpleCounterexamples/FinitudeOfPropositions.lean
Normal file
14
SimpleCounterexamples/FinitudeOfPropositions.lean
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
-- I actually thought that ∀p, ∃q, (q ≠ p) ∧ q!
|
||||||
|
-- However, propositional extensionality tells us that (p ↔ q) → p = q
|
||||||
|
|
||||||
|
theorem finiteTrueProps
|
||||||
|
: ¬∀p, ∃q, (q ≠ p) ∧ q := by
|
||||||
|
intro h
|
||||||
|
have := h True
|
||||||
|
simp at this
|
||||||
|
|
||||||
|
theorem finiteFalseProps
|
||||||
|
: ¬∀p, ∃q, (q ≠ p) ∧ ¬q := by
|
||||||
|
intro h
|
||||||
|
have := h False
|
||||||
|
simp at this
|
||||||
Loading…
Reference in a new issue