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?
This works, it's basically $$\begin{align*} \forall x : \neg\Phi(x) & \Longleftrightarrow \nexists x : \Phi(x) \\ \forall x : \Psi(x) & \Longleftrightarrow \exists x : \neg\Psi(x) \end{align*}$$