Say C: set of courses
P(x,y): 'x is a prerequisite for course y'
statement: 'some courses have the same prerequisites'
Is this symbolic expression correct?
If not, how would I write this with implication? Also how would I write this without implication?
∃ x ∈ C, ∃ y ∈ C, ∃ z ∈ C, P(y, x) ∧ P(z, x) ∧ y = z
Thanks again!
What you’ve written simply says that there is a course with a prerequisite (that you happen to have mentioned twice, once as $y$ and once as $z$). First we need to say that there are (at least) two courses:
$$\exists x\in C\,\exists y\in C(x\ne y)\;.$$
Now we need to add something to that to say that these courses $x$ and $y$ have a prerequisite in common; I’ve included an answer, but I’ve left it spoiler-protected.
My answer does not use an implication, and I don’t think that there is a really natural way of saying this that does use an implication.