I have the following question I have been trying to answer
Symbolise the following sentence in FOL. Remember to provide a translation key.
- All respiring cells have mitochondria, but strictly fermenting cells do not.
I have attempted to answer this in the following way but I am unsure as to if it is correct or not
Domain: Cells
P(x): Respiring Cells S(x): Fermenting Cells l: mitocondria
$ ∀x(Px \to l) (Sx \to ¬ l) $
Am I on the right path with this or am I totally going in the wrong direction?
If I am completely wrong, could someone please breakdown how I could symbolise the sentence provided, just so I can understand a bit more, many thanks.
You'll need to make the part about having mitochondria part a predicate. You can either follow LoMaPh's suggestion and use a $Have(x,y)$ ('$x$ has $y$') predicate together with a $M(x)$ ('$x$ is a mitochondria') predicate, or you can simply use a $M(x)$ predicate that stands for '$x$ has mitochondria'.
You'll also need to use an $\land$ somwhere, since you are basically dealing with two sentences with a 'but' in between, and 'but' in logic simply means 'and'.