How can I express the sentence: "Every human has exactly two legs" in First Order Logic without using the number 2 like the example "$(\forall x)(Human(x) \wedge NumberOfLegs(x, 2))$" and use something like $Leg(x,l)$ and $=$
2026-04-04 01:54:41.1775267681
How can I express the sentence: "Every human has exactly two legs" in First Order Logic
199 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
$$\forall x\left[H\left(x\right)\to\exists u\exists v\left[u\neq v\wedge L\left(x,u\right)\wedge L\left(x,v\right)\wedge\forall z\left[L\left(x,z\right)\to\left(z=u\vee z=v\right)\right]\right]\right]$$ Here $H(x)$ stands for "$x$ is human" and $L(x,y)$ for "$y$ is a leg of $x$".