please help with this question Translate the following sente
please help with this question
Translate the following sentences into predicate logic expressions: You can fool all the people some of the time. You can fool some of the people all the time. You cannot fool all the people all the time. If you understand logic, you can pass CS320 mid-term. It is impossible to pass C$320 if you did not attend any lecture.Solution
a)You can fool all of the people some of the time.
x t (person(x) -> time(t) ^fool(x,t))
b)You can fool some of the people all of the time.
Ans:xperson(x) ^time(t) -> fool(x,t)
c)You cannot fool all the people all the time
¬(x(person(x)t(time(t)fool(x,t))))
d)If you understand logic,you can pass CS320 mid-term
UnderstandLogic(x)->Pass(mid-term)
e)It is impossible to pass CS320 if you did not attend any lecture.
¬(Attend_Lecture(x)->Possible_to_Pass(e))
