I'm learning First Order Logic at the moment. I'm looking at this example:
Some dogs bark ∃x (dog(X) Λ bark(x))
All dogs have four legs ∀x (dog(x) -> have_four_legs(x))
My question is: is it possible for the second example to be: ∀x (dog(x) Λ have_four_legs(x))
And why can't the first example be: ∃x (dog(X) -> bark(x))