I have to convert the following sentence to First Order Logic :
Ken doesn't like what Goerge likes, and likes what Goerge doesn't like.
I tried the following convertion , but I am not sure it is right :
∀x(¬Likes(x,George) ^ Likes(x,Ken)) ^ (Likes(x,George) ^ ¬Likes(x,Ken))
Is the above convertion right , and even if it is , are there any better ways to express it ?