Help with predicate logic formula?
I am trying to solve the following task: If two recipes have the same category, then they have at least one ingredient in common. My approach: ∀x ∀y ( ( f(x)=f(y) ∧ ¬(x=y) ) → ∃z ( E(x,z) ∧ E(y,z) ) ) It tells me it's not correct yet. I've tinkered around a lot, but…