I need to translate the following sentence:
All women fear close-minded men.
F(x): x is female;
M(x): x is male;
O(x): x is open mind
S(x,y): x is scared of y
The Universe of x and y are people.
My answer is :
∀x∀y [F(x)∧M(y)∧¬O(y)∧S(x,y)]
meaning all women fears all the men that are close minded.
But my teacher says the answer is :
∀x∃y [F(x)∧M(y)∧¬O(y)∧S(x,y)]
But my understanding for the above translation is that: all women fears some men who are close minded.
Do you think my answer is right? what is your answer?