I have the sentence: "Every Chef has a existent dish that he prepares deliciously"
I need to translate it to the math language (∃∀,|,:,(),predicate..) I tried to solve it by choosing A-Chef, B- Dish ,C- Prepares, D delicious, but for no success.
My prof said to use predicate to solve it, So I understand the predicate input is P(A,B) but I don't know what the predicate will check, I thought about P(a,b): dish that the chef prepares deliciously, I understand how it can be right for only checking the prepares, but then adding the deliciously it feel to me undefined. Hope you could help me understand and solve this
Thank you
I would like to clarify something in your question. You wrote "the predicate input is $P(A,B)$", and this needs to be defined. The letter $P$, if you use it as a predicate, carries a unique meaning, in the form of a sentence with blanks for each input.
Here's a full example of how I would write out a similar problem:
$B(x):x$ is a bodybuilder
$G(x):x$ is a goat
$L(x,y):x$ lives with $y$
$D(x):x$ is done deliciously
$$\forall x|B(x)\exists y[G(y)\land D(L(x,y))]$$
"For every bodybuilder there is a goat who lives with him deliciously"... or, more literally in terms of the logic, "For every $x$ such that $x$ is a bodybuilder there exists $y$ such that $y$ is a goat and $x$ lives with $y$ deliciously"
The bar notation $\forall x|B(x)$ might not be standard, but in any case do be careful that your statement does not logically mean that "$B(x)$ is true for all $x$", when what you intend is that a certain related statement is true for all $x$ that satisfy $B(x)$.