"Stockholm is the largest city in Sweden"
I am to provide my own key. The only "help" I've received is that I am not allowed to use designators for the definite description. I should use a two-place predicate "Lxy: x is larger than y". And consider then that Stockholm is the largest city if there is no larger city.
My thought was using this key:
a: Stockholm
b: Sweden
Lxy: x is larger than y
Cxy: x is a city in y
Then I came up with this translation:
$$Cab \space\ \wedge \forall x((\neg x=a \wedge Cxb) \rightarrow \neg Lxa)$$
"Stocholm is a city in Sweden and for all things if it is not identical to Stockholm and a city in Sweden, then it is not larger than Stockholm", I think.
What are your thoughts? Is it perhaps a bit redundant to use a two-place predicate for x is a city in Sweden? would it be better to just have:
Cx: x is a city in Sweden ? and then: $$ Ca \space\ \wedge \forall x((\neg x=a \wedge Cx) \rightarrow \neg Lxa) $$
Is both permissible?
Thank you!
I like your first translation, in terms of using $Cxy$ to denote "x is a city in y", though either should work.
Saying that "no city in Sweden is larger than Stockholm" is not quite the same thing as saying "Stockholm is the largest city in Sweden". The first allows for the existence of a city just as large but not larger than, Stockholm. However, we want to say "Stockholm is larger than all other cities in Sweden, that is, we want to say "Stockholm is the [one and only] largest city in Sweden."
So I would use your first translation key and write:
$$Cab \space\ \wedge \forall x\,\Big((Cxb \land \neg (x=a)) \rightarrow Lax\Big)$$
This modification now translates as "Stockholm is a city in Sweden and for all things $x$, if $x$ is a city in Sweden and $x$ is not identical to Stockholm, then Stockholm is larger than $x$".