edited by
2,601 views
0 votes
0 votes
Let S(x) be the predicate “x is a student,” F(x) the predicate
“x is a faculty member,” and A(x, y) the predicate
“x has asked y a question,” where the domain consists of
all people associated with your school. Use quantifiers to
express each of these statements.

Some student has not asked any faculty member a
question.

in rosen answer is given as-There is a student such that for every faculty member,

that student has not asked that faculty member a
question-----$\exists x(S(x) \Lambda \forall y(F(y)\rightarrow \sim A(x, y))).$

can i Write the above expression as-----$\forall y(F(y)\rightarrow \exists x(S(x) \Lambda \sim A(x, y))).$

for every faculty member, there exists some student who has not asked that faculty member a question.

is both the above statements have same meaning?
edited by

2 Answers

2 votes
2 votes

$S(x) :$ $x$ is a Student.

$F(x) :$ $x$ is a Faculty.

$A(x,y ) :$ $x$ has asked $y$ a Question.

Let me consider that Domain of discourse, over which my variables $x,y$ may range,  consists of All People in a College.

Some student has asked every faculty member a question : 

We can re-write it as "There is some student $x$ such that If $y$ is a Faculty then $x$ has asked $y$ a Question. "

Which again can be re-written as "There is some  $x$ such that ($x$ is a Student and If $y$ is a Faculty then $x$ has asked $y$ a Question.) "

So, $\exists x(S(x) \wedge \forall y(F(y) \rightarrow A(x,y)))$

0 votes
0 votes

No. Both are different.

There is a student such that for every faculty member, that student has not asked that faculty member a
question

It is like "That student $x$ who doesn't ask any faculty(F1,F2,F3) a question". 

for every faculty member, there exists some student who has not asked that faculty member a question.

 It is like "For F1 there is a student $y$ who hasn't asked him a question, For $F2$ there is some(possibly some other) student $z$ who hasn't asked F2 any question.....etc"

Related questions

0 votes
0 votes
0 answers
1