M(x) = "x is male"
F(x) = "x is female"
S(x,y) = "x is scared of y"
O(x) = "x is open-minded"
Translate the following:
a) Some open-minded females fear some closed-minded males.
b) No female fears all males.
c) Some males are females.
d) All males are scared of all females.
I could find the answer for c) $\exists x[M(x) \land F(x)] $
but could not figure out the S(x,y) ones.
Thanks for your help.
Edit: After figuring out some answers: is this answer correct for part a) $ \exists x [ [F(x) \land O(x)] \land \exists y [[M(y) \land ¬O(y) ] \land S(x,y) ] $.
Hint: Whenever you see the word "some", put $\exists x$ (or some other letter), and think about what property that $x$ that exists should have. Whenever you see the word "all", put $\forall x$ and think about what property every $x$ should have. And whenever you see "no" or "none", put $\neg\exists x$ and think about what property no $x$ should have.
If there are multiple occurrences of these kinds of words in a sentence, then you will need multiple quantifiers, and each quantifier should use a different letter for the variable.