what is predicate logic of "cats have tails" or "if x is a cat then x has tail"
which one of the following is correct:
- cat(x) -> hastail(x)
- ∀x cat(x) -> hastail(x)
are both of them correct?
does both make same sense ?
if any of the above statement is wrong please explain it why.