I am a little confused about this sentence. How can I symbolize it?
Let P(x), L(x), R(x,y,z), and E(x,y) represent "x is a point," "x is a
line," "z passes through x and y," and "x = y," respectively. Translate
the following:
For every two points, there is one and only one line passing through
both points.
$∀(x,y)((P(x) ∧ P(y) )→ (L(z) ∧ R(x,y,z)))$
so I want to say that for all x and y , if x and y are points then z is a line and it passes through x and y. is my formulae correct? I guess not because I am not using E(x, y) at all and I don't understand where to use it.
EDIT:
I think this is it:
$$ ∀(x,y)((P(x) ∧ P(y) )→(∃z(R(x,y,z) ∧ ∀k(R(x, y, k)) → E(z, k))) $$