Here is the sentence:
There is a shortest person, but there is no tallest person.
Here is the sentence:
There is a shortest person, but there is no tallest person.
There exists person where person < i, for all persons i, i != person.
There doesn't exists a person where person > i, for all persons i, i != person.
∃p : T(i,p) ∀i, i!=p, i in (x, y, z)
~(∃p : T(p,i) ∀i, i!=p), i in (x y, z)
Something like:
(EXISTS x in People | FORALL y in People \ {x} y TALLER_THAN x)
AND
NOT (EXISTS w in People | FORALL z in People \ {w} w TALLER_THAN z)
Some notes:
shortest && !(tallest)
Is this you are expecting