Note: 10th was a holiday, 12th was the midterm so yeah works out
1A proof¶
From last class:
"All horses are animals. Therefore, all heads of horses are heads of animals."
∀x(Hx→Ax)⊢A(∃x(Hx∧H∗yx)→∃x(Ax∧H∗yx))
Where Hx means "x is a horse", H∗xy means "x is the head of y", and Ax means "x is an animal".
Strategy for the proof: let's try to get ∀x()⊢∃x()→∃x() using a deduction?.
So working up from the bottom:
∀x()⊢∃x()→∃x()
∀x(),∃x()⊢∃x()
The last quantifier to be put back on: middle term.
Anyways, whatever. The proof:
Sequent | Justification/rule |
---|---|
(1) Hx→Ax,Hx∧H∗yx⊢Ax∧H∗yx | Tautology |
(2) Hx→Ax,Hx∧H∗yx⊢∃x(Ax∧H∗yx) | ∃-introduction from (1) |
(3) ∀x(Hx→Ax)⊢Hx→Ax | ∀-elimination |
(4) ∀x(Hx→Ax),Hx→Ax,Hx∧H∗yx⊢∃x(Ax∧H∗yx) | Monotonicity from (2) |
(5) ∀x(Hx→Ax),Hx∧H∗yx⊢Hx→Ax | Monotonicity from (3) |
(6) ∀x(Hx→Ax),Hx∧H∗yx⊢∃x(Ax∧H∗yx) | Transitivity using (4), (5) |
(7) ∀x(Hx→Ax),∃x(Hx∧H∗yx)⊢∃x(Ax∧H∗yx) | ∀-elimination |
(8) ∀x(Hx→Ax)⊢∃x(Hx∧H∗yx)→∃x(Ax∧H∗yx) | Deduction from (7) |
(9) ∀x(Hx→Ax)⊢∀y(∃x(Hx∧H∗yx)→∃x(Ax∧H∗yx)) | ∀-introduction from (8) |
2Some logical axioms for equality¶
- ∀x(x=x) (reflexivity)
- ∀x∀y(x=y→y=x) (symmetry)
- ∀x∀y∀z((x=y∧y=z)→x=z)
These are all properties of equivalence relations, and equality is, in a way, the epitome of equivalence relations.
Since these are logical axioms, you can use them in any line of a proof, in the following manner:
⊢∀x(x=x)
2.1Quantifying existence¶
How do you say that there is exactly one boy? (Or Buddha, or whatever.) Well, you'd have to use equality. For instance:
∃x(Bx∧∀y(By→x=y))
So there is a boy, and anything else that is also a boy is the same as our original boy. So there is only one boy.
How would you say there is at most one boy?
∃x∀y(By→y=x)
So if there are boys, they are all the same boy.
2.2Using the logical axioms¶
Here's a proof that uses logical axiom 1 in its first line:
⊢∃x(x=x)
Sequent | Justification/rule |
---|---|
(1) ⊢∀x(x=x) | Logical axiom |
(2) ∀x(x=x)⊢x=x | ∀-elimination |
(3) ⊢x=x | Transitivity using (1) and (2) |
(4) ⊢∃x(x=x) | ∃-introduction from (3) |
This fails in an empty universe, but don't worry about that. Loveys doesn't care about empty universes and neither should you.