Let S be a set of people, C be the set of all countries, and let T be a predicate defined over S × C such that T(x, y) is True if x ∈ S has travelled to country y ∈ C. Express each of the following statements by a simple English sentence.
• (∃x ∈ S, T(x, France)) ∧ (∀y ∈ S, T(y, Japan)). My guess .. Some person has traveled to France and everyone has traveled to Japan
• ∀x ∈ S, ∃y ∈ C, T(x, y). My guess.. Every person has traveled to some country
• ∀x, z ∈ S, ∃y ∈ C, T(x, y) ⇔ T(z, y).
My guess.. Every person has traveled to some country if and only if every person has traveled to some country
Some may be off.. I'm not confident so thanks for any help.