logic - how to translate this into predicate logic?

54 Views Asked by At

"the result of additon between two negative integers are negative integers too"

i'm thinking of: x,y,z as negative integers

∀x∀y∃z(x+y=z)

thanks in advance

2

There are 2 best solutions below

0
On

Maybe $$\forall x\forall y(x<0 \wedge y<0\to x+y<0) $$

0
On

x,y are integers

$\forall x\forall y((x<0\land y<0)\to (x+y<0)) $