I have a few logic statements and am unsure how to formulate them
- A student is excellent if he can solve all the logic questions
- No student can solve all the logic questions
- there is a logic problem no student can solve
- No student is excellent
I was thinking of formulating it the following way:
forall_yS(x,y)->E(x)(for all logic questions y if solve student x questions, then x is excellent)~exsit_xforall_yS(x,y)(not exist student x for all questions y student solve questions)exist_yforall_x~S(x,y)(exist question y for all student x student not solve question)~exist_xE(x)(not exist x such that x is excellent)
How can i be sure if i'm wrong or right ?