Say C: set of courses
P(x,y): 'x is a prerequisite for course y'
Statement:
No course is a prerequisite for itself.
is same as:
For all x in C, ¬P(x,x)
But is this correct?
There doesn't exist x in C, P(x,x)
And if this is correct, is it true for all cases that moving the ¬ to flip between a universal quantification to existential one will be equivalent?