How to express "A is B" in first order logic

89 Views Asked by At

I would like to write "A is B" in first order logic. For example "Apple is food". Here are my guesses:

$\exists x, s.t. \forall y, \mbox{food(x) & apple(y) & y} \in x.$

or simply

$food(apple)$

What is the proper expression?