I'm trying to make a model to satisfy the following formula
∀xyz.((R(x,y) ∧ R(y,z)) → R(z,z))
∃xy.(P(x) ∧ ¬P(y))
∀x ∃y.(R(x,y) ∧ x ≠ y)
I made this.
D= {Susan, George, Bob, Emma, Sara, Ryan, Jacob}
I(P) = {Susan, George, Bob, Emma}
I(R) = {〈George, Emma〉, 〈Emma, Bob〉, 〈Bob, Bob〉, 〈Bob, Emma〉, 〈Emma, Emma〉, 〈Susan, Jacob〉}
But I don't know how to make P be satisfied!! and what does "∃xy.(P(x) ∧ ¬P(y))" mean exactly!
Thanks in advance
$\exists xy.(P(x) \wedge \lnot P(y))$ means there are two items in your universe such that $P$ is true about one and false about the other. Your set $I(P)$ looks like the items for which $P$ is true, so you have $P(Susan)$ and $\lnot P(Ryan)$ and the statement is satisfied in your model.
Your model does not satisfy the first and third statements. For the third, there is no pair $R(Jacob, y)$ with $y$ different from Jacob.