$((\neg q\;\text{if}\;r)\text{unless}\;s)$ OR $(\neg q)\;\text{if}\;(r\;\text{unless}\; s)$

116 Views Asked by At

Derivation of the answer provided to my previous stack-question was elegant and answer thus obtained was correct according to Kenneth Rosan.

Proposition in question:

“[You cannot ride the roller coaster] if [you are under 4 feet tall] unless [you are older than 16 years old.]”

Which boils down to formula:

$\neg q$ if r unless s

Correct answer arrived was to formulate the compound proposition by grouping it as follows:

$((\neg q) \mathbf{\text{ if }} r) \mathbf{\text{ unless }} s$ (leads to right answer)

Whereas, I (wrongly) solved this question by grouping it as follows:

($\neg q$) if ($r$ unless $s$) (leads to wrong answer)

Here, both keywords if and unless generates implication ($\to$).

i.e. (Q if P) $\leftrightarrow$ (P $\to$Q) and (P unless Q) $\leftrightarrow$ ($\lnot Q \to P$)

Now, according Stanford reference

When an operand is surrounded by operators of equal precedence, the operand associates to the right.

Given example in reference:

$P \to Q \to R$ should be grouped as ($P \to (Q \to R))$

So, here lies my question:

How to approach such word problem in which operands have equal precedence?

If I follow Stanford reference (or generally excepted precedence) then, the answer thus results is wrong. If we go with other way around then, answer obtained is correct.

2

There are 2 best solutions below

6
On

English words are not symbolic operators. Rules of the English language, which are both quite complicated and sometimes ambiguous, determine the groupings of words into phrases and/or catenas, the relationships between them, and the meanings of those relationships. These rules can be somewhat modeled in similar ways to a strictly-defined formal grammar, but never perfectly.

The reasons the example sentence groups phrases the way it does would be more on topic on english.stackexchange.com.

0
On

The sentence

You cannot ride the roller coaster if you are under 4 feet tall unless you are older than 16 years old.

should tell us mainly one thing that young kids (younger than 16) shorter than 4 ft. are prohibited from riding. We can encode this idea as follows: $(r\land \neg s)\rightarrow \neg q$. Easily we can infer the sentence $(r\rightarrow \neg q)\lor s$ which is "the right" grouping.

We can consider the other way of grouping sentences, which is $(r\lor s)\rightarrow\neg q$. But by grouping atomic sentences this way we arrive at the situation where if you are older than 16 y.o. you cannot ride the roller coaster, which obviously not the idea we wanted to express with the original sentence.