Processing math: 100%

Friday, October 14, 2011 CC-BY-NC
More proofs, and some logical axioms

Maintainer: admin

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(HxAx)A(x(HxHyx)x(AxHyx))

Where Hx means "x is a horse", Hxy 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) HxAx,HxHyxAxHyx Tautology
(2) HxAx,HxHyxx(AxHyx) -introduction from (1)
(3) x(HxAx)HxAx -elimination
(4) x(HxAx),HxAx,HxHyxx(AxHyx) Monotonicity from (2)
(5) x(HxAx),HxHyxHxAx Monotonicity from (3)
(6) x(HxAx),HxHyxx(AxHyx) Transitivity using (4), (5)
(7) x(HxAx),x(HxHyx)x(AxHyx) -elimination
(8) x(HxAx)x(HxHyx)x(AxHyx) Deduction from (7)
(9) x(HxAx)y(x(HxHyx)x(AxHyx)) -introduction from (8)

2Some logical axioms for equality

  1. x(x=x) (reflexivity)
  2. xy(x=yy=x) (symmetry)
  3. xyz((x=yy=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(Bxy(Byx=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?

xy(Byy=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.