Given the following predicates:
Truck(X): X is a truck
Person(X): X is a person
IsBlue(X): X is of blue color
Like(X,Y): X likes Y
Expensive(X): X is expensive
Write following statement in predicate logic (In each case Ross and Rachel are persons)
a) Ross likes all blue trucks
b) Rachel does not like any blue trucks at all
c) Ross and Rachel both like the same blue truck (not all blue trucks)
d) No person likes expensive blue trucks.
Can anyone help?
I can't really give any hints for your concrete examples without solving them. To demonstrate, I will formalize three different statements:
Alice likes Bob: $\mathrm{Like}(\mathrm{Alice}, \mathrm{Bob})$
Alice likes some expensive trucks: $\exists t: \mathrm{Truck}(t) \wedge \mathrm{Expensive}(t) \wedge \mathrm{Like}(\mathrm{Alice}, t)$, read: there is a $t$ which is a truck and expensive, and Alice likes it. This means that there is at least one expensive truck that Alice likes.
Alice does not like blue persons: $\forall p: (\mathrm{Person}(p) \wedge \mathrm{IsBlue}(p)) \to \neg \mathrm{Like}(\mathrm{Alice}, p)$, read: if $p$ is a person and blue, this implies that is not liked by Alice. In other words, if $p$ is any blue person, Alice does not like it.
I hope this helps you.