[Math] the difference between ‘logical symbols’ and ‘relation symbols’ in first order logic

definitionfirst-order-logiclogicpredicate-logic

I am currently looking at some logic notes which give the following definition

notes

However, there is no explanation for what the distinction between 'logical symbols' and 'relation symbols' is.

Can someone please help me to understand this?

Best Answer

Relation symbols can be used to express that certain objects stand in some kind of relation or, in case the relation symbol takes only one argument, that some object has some property. That is, relation symbols, together with a number of 'arguments' or objects, can be used to create claims.

Examples:

$Cube(x)$: this says that x is a cube (arity is 1)

$LeftOf(x,y)$: this says that x is to the left of y (arity is 2)

$Between(x,y,z)$: x is between y and z (arity is 3)

Logical symbols typically perform some kind of operation on those claims. That is, once I have the claims $Cube(x)$ and $LeftOf(x,y)$, I can combine those into something like $Cube(x) \land LeftOf(x,y)$.

In short (and very roughly): Relation symbols take objects as their arguments, and return claims. Logical symbols take claims as their arguments, and return more complicated claims.

Also: The meaning of logical symbols is fixed: $\land$ means the logical and, and always works the way we have defined it. But the meaning of relational symbols is not fixed. As we saw above, I could interpret $Between(x,y,z)$ as 'x is between y and z', but I could also interpret it is 'y is between x and z', or even : 'z is the sum of x and y'!

Related Question