-1

Cat(x) for “x is a cat,” Mouse(x) for “x is a mouse” Eats(x, y) for “x eats y”

  1. Every cat eats exactly one mouse.
  2. Some Cat eats at least two mouses
  3. Every Cat eats at most one mouse.

Sentences 1: ∀x∃y Cat(x)∧ Mouse(y) ⇨ Eats(x,y)

Sentences 2: ∃x∃y∃z Cat(x)∧ (Mouse(y) ∧ Mouse(z) ∧ ¬(y=z)) ⇨ Eats(x,y)

Sentences 3: ∀x Cat(x)∧ Mouse(y) ⇨ Eats(x,y)

Could you please help me if I have made an error somewhere. I am unsure if these are correct

Dan Leo
  • 23
  • is wrong.....
  • – Mauro ALLEGRANZA Jul 15 '21 at 09:06
  • is right ? @MauroALLEGRANZA
  • – Dan Leo Jul 15 '21 at 09:26