Chapter 2: Official and Unofficial Notation

Recall, the basic rules for building up grammatical assertions in the simple language we've been using so far.

  1. Every sentence letter in the list

    P, Q, ..., W, P1, Q1, ..., W1, P2, ...

    is a grammatical assertion

  2. We may build a grammatical assertion:

    1. by taking two grammatical assertions we already have, putting an ∧,∨,→ or ↔︎ between them, and wrapping the result in parentheses;
    2. by taking one grammatical assertions we already have, and putting a ¬ in front of it.

We say that a sentence built up merely by following these rules is in official notation. Such sentences are easy to parse, but sometimes tedious to write, and difficult to read at a glance. So, we will allow three sorts of abbreviations to our official sentences, in order to make them easier to read and write.

The first type of abbreviation is easy to explain. When the first symbol of a sentence is "(", and the last is ")", we allow these to be removed. This won't cause any confusion about the structure of the sentence, since if the outer parentheses are missing, you can still parse the sentence "as if" they were there.

The second type of abbreviation needs a little more explanation. An analogy will be helpful. Think of PEMDAS. What PEMDAS really instructs you to do is to combine the numerals in a formula in a certain way. So, for example, PEMDAS tells you that in 2 + 2 × 2, you ought to combine the right pair of 2s, and then combine the result of that with the left pair of 2s. You can think of these instructions as telling you how to "group" the numerals. To make this explicit , you can wrap the groups in parentheses; since you combine the right pair of 2s, you can wrap those, and since you combine that result with the left-most 2, you can wrap the whole thing. What you get is (2+(2×2))---which is the same, according to PEMDAS, as 2 + 2 × 2.

In logic, we're not dealing with addition and so on, so we don't use PEMDAS. Instead, we use what you might think of as a "JI"-rule. "J" stands for junctions---specifically, , the "and" symbol (sometimes known as "conjunction"), and , the "or" symbol (sometimes known as "disjunction"). "I" stands for ifs---specifically, , the "if-then" symbol, and ↔︎, the "if and only if" symbol. What the rule says is that when there aren't enough parentheses, you group junctions together before you group together your ifs, just like PEMDAS says that you group multiplications together before you group additions together.

So, for example:

  1. P → Q ∧ R is the same as P → (QR).
  2. S ∧ T ↔︎ R ∨ Q is the same as (ST) ↔︎ (RQ).
  3. ((ST)∨RWS) ↔︎ T ∨ W is the same as (((ST)∨R)→(WS)) ↔︎ (TW)

Note that in each of these cases, we're applying the JI-rule to formulas where we've already applied the rule allowing us to drop outer parentheses.

Officially, let's give the rule the following definition.

The JI-Rule

The JI-Rule states that you may remove parentheses in the following ways:

  1. ((…∧…) → …   can be replaced with   … ∧ … → …
  2. (…∨…) → …   can be replaced with   … ∨ … → …
  3. (…∧…) ↔︎ …   can be replaced with   … ∧ … ↔︎ …
  4. (…∨…) ↔︎ …   can be replaced with   … ∨ … ↔︎ …
  5. … → (…∧…)   can be replaced with   … → … ∧ …
  6. … → (…∨…)   can be replaced with   … → … ∨ …
  7. … ↔︎ (…∧…)   can be replaced with   … ↔︎ … ∧ …
  8. … ↔︎ (…∨…)   can be replaced with   … ↔︎ … ∨ …

In other words, you may take a formula that has one of the shapes on the left, above, and remove parentheses to make it match the corresponding formula on the right

There's just one more rule to take care of. Again, it's helpful to think of arithmetic. When we do arithmetic, we (usually) proceed from left to right. So, for example, 10 − 10 − 10 is equal to  − 10 = ((10−10)−10), not to 10 = (10−(10−10)). One has a similar "lefty rule" for division. 2 ÷ 2 ÷ 2 is equal to 1/2 = ((2÷2)÷2), rather than 2 = (2÷(2÷2)). Call this way of doing subtraction a "lefty rule" for subtraction. Operations are grouped "lefty" rather than "righty", meaning you do the ones on the left first.

In logic, we have a similar lefty-rule for each of our junctions: there's a lefty-rule for and a lefty-rule for . So for example

  1. ((PQ)∧R) ∧ S is the same as (PQ) ∧ R ∧ S.
  2. (WR) ∨ Q → T is the same as W ∨ R ∨ Q → T.

Note that in the second case, we are applying the lefty rule to a formula where we've already applied the JI-rule.

Let's give an official statement of the lefty rules as follows.

Lefty-Rules

The Lefty-Rule for states that you may remove parentheses in the following way:

(…∨…) ∨ …   can be replaced with   … ∨ … ∨ …

The Lefty-rule for states that you may remove parentheses in the following way:

(…∧…) ∧ …   can be replaced with   … ∧ … ∧ …

In other words, you may take a formula that has one of the shapes on the left, above, and remove parentheses to make it match the corresponding formula on the right Note that the lefty-rule can be applied several times, so that long strings of s or s can be used without parentheses. For example, changing ((PQ)∨R) ∨ S into (PQ) ∨ R ∨ S and then into P ∨ Q ∨ R ∨ S would be a legitimate use of the lefty-rule for .

These---the rule that lets us remove outer parentheses, the JI-rule, and the lefty-rules for and ---are our three basic types of abbreviation. None of them introduces any ambiguity into our language. Since formulas that are abbreviated using these rules go beyond what's allowed in official notation, however, we give them a new name: formulas in unofficial notation.

Unofficial notation
A formula is said to be in unofficial notation when it can be generated from a formula in official notation by removing one or more pairs of parentheses, using the JI rule, the lefty-rule for , the lefty-rule for or the operation of dropping an outer set of parentheses.

Problem Set 2

As in the previous chapter, unpack the parsing trees for the following sentences:

2.1
2.2
2.3
2.4
2.5
2.6
2.7
2.8
2.9
2.10

Translation

Symbolization

We've now done everything we need to do to present the formal language that we will be using for quite a while. In this section, we'll take a little bit of time to think about how our formal language relates to natural language. For practical reasons (since English is the only language we all speak) we will focus on English-language arguments. But in principle, we could do the same thing with other natural languages.

The general idea for applying our tools can be summed up in this way.

We will show how to translate between English and our artificial language: both how to turn a sentence of our artificial language into English, and how to go in the other direction with certain sentences of English. Our translation technique will have the property that the translation of an argument shares a logical form with the original argument.

As a result, if we come up with two arguments---one formal, one English---that are translations of one another, we can test the formal one for formal validity (we don't know how to do this yet, but we will learn soon). If we find that the formal argument is formally valid, then the English sentence must be formally valid too (and so it is also deductively valid---the truth of its premises ensures the truth of its conclusions). If we find that the Formal Argument is invalid, can we infer that the English argument is too? Often we can, but not in every case. There are aspects of the logical form of English sentences that can't be captured in our current---very simple--formal language; for example, arguments in English can be valid because of the presence of words like "all" and "some". But we don't yet have any way of representing the contribution that these words make to the logical form of an argument.

Symbols to English

In this section, we'll need to sometimes speak of arbitrary sentences in our formal language, which might be simple---that is, they might be P or Q---or might be complex---that is, they might contain one or more connectives. When we need to do this, we'll use some Greek letters, like ϕ, ψ, χ, … to stand for those arbitrary sentences.

To translate, it will often be useful to be able to go from our formal language to English. For example, we may wish to find out what a statement in English implies. Then we might take that statement, translate it into our formal language, work out a bunch of formal conclusions that follow from it, and finally translate these formal conclusions back into English.

We'll start simple, by restricting ourselves to the connectives and ¬.

Given a sentence ϕ in our formal language, the first step to translating is to select an appropriate scheme of abbreviation:

Scheme of Abbreviation
A scheme of abbreviation for a sentence (or argument) is an assignment of a unique English meanings to the sentence letters occurring in the sentence (or argument).

We'll want our scheme of abbreviation to cover all of the sentence letters that occur in ϕ, or, if we are working with a whole argument, all the sentence letters in the whole argument. It's not OK to use two schemes of abbreviation to translate different parts of the argument. If you do this, there's no guarantee that the English argument and formal argument you end up with will have the same logical form.

For example, if we have an sentence (PQ) → R, we need a scheme of abbreviation that covers P, Q and R. So we might choose this one:

P = Deputy Dan Dances
Q = Carl Cringes
R = Ronny Runs

Once we have our scheme of abbreviation, we can translate into English by carrying out the following procedure.

Symbols to English
  1. If the sentence to be translated is in unofficial notation, then (if it makes things simpler for you) restore any parentheses that would be there if the sentence were in official notation.
  2. Locate the main connective of the formal sentence.
  3. If the main connective is , so that the sentence is (ϕψ), then write "If ϕ, then ψ"
  4. If the main connective is ¬, so that the sentence is ¬ϕ, then write "It is not the case that ϕ"
  5. If either ϕ or ψ contains any formal language connectives, then apply this procedure to ϕ and ψ as well.
  6. Once you have only sentence letters, replace each sentence letter with its English meaning according to the scheme of abbreviation.

Here are some examples of translations of formal sentences, using the scheme of abbreviation above.

Ex. 1

  1. (QR)
  2. If Q, then R
  3. If Carl Cringes, then Ronny Runs

Ex. 2

  1. (Q→¬R)
  2. If Q, then ¬R
  3. If Q, then it is not the case that R.
  4. If Carl Cringes, then it is not the case that Ronny Runs

Ex. 3

  1. QR)
  2. If ¬Q, then R
  3. If it is not the case that Q, then R
  4. If it is not the case that Carl Cringes, then Ronny Runs

Ex. 4

  1. ¬(QR)
  2. It is not the case that (QR)
  3. It is not the case that if Q, then R
  4. It is not the case that if Carl Cringes, then Ronny Runs

Ex. 5

  1. (P→(QR))
  2. If P, then (Q → R)
  3. If P, then if Q, then R
  4. If Deputy Dan Dances, then if Carl Cringes, then Ronny Runs

Ex 6

  1. (PQ) → R
  2. If (PQ), then R
  3. If If Deputy Dan Dances, then Carl Cringes, then Ronny Runs

This gives us a unique translation for each sentence, and one that has the right logical properties. But although the resulting sentences are grammatical, they're sometimes very difficult to understand, and extremely bad in terms of style.How can such an awkward sentence be grammatical? Well, the grammar of a language and the readability and style of the sentences you make in accordance with that grammar are two different things. For example, there's no limit on how long a grammatical sentence of English can be. But beyond a certain point, even grammatical sentences are impossible to understand. There are also fun examples of grammatical sentences the repeat certain constructions in an unexpected way. For example, consider the following sentence.

"The boy the girl the cat the rat bit scratched loved died."

Is it grammatical? Yes.

What does it mean? Think---start with the noun phrase "the cat the rat bit".
So we may want to make them more readable. The following tricks are helpful.

  1. The word "if" functions as a flag to mark off the left sentence in a conditional statement. But many other words and phrases perform the same function. So usually, the phrase "if ϕ, then ψ" can be replaced by phrases like

    1. "provided that ϕ, ψ"
    2. "given that ϕ, ψ"
    3. "assuming that ϕ, ψ"
    4. "on the condition that ϕ, ψ"
    5. "in the case where ϕ, ψ"
  2. The flag marking the left half of the sentence, in a conditional statement, is what is important in English---the ordering of the clauses does not generally matter very much. Hence when you have a phrase like

    Provided that ϕ, ψ

    You can typically use

    ψ provided that ϕ

    instead.

  3. The world "only" reverses the meaning of a flag phrase. It changes the flag from an indicator of what ought to be the left half of an "if ... then..." statement into an indicator of what ought to be the right half of an "if ... then ..." statement. So, "If ϕ, then ψ" can be replaced by phrases like

    1. "ϕ only if ψ"
    2. "ϕ only provided that ψ"
    3. "ϕ only given that ψ"
    4. "ϕ only assuming that ψ"
    5. "ϕ only on the condition that ψ"
    6. "ϕ only in the case where ψ"

    You can see that this is correct if you compare the sentences

    1. You can drive only if you're older than eleven.
    2. If you can drive, then you're older than eleven.

    with the sentences

    1. You can drive if you're older than eleven.
    2. If you're older than eleven, then you can drive.

    The first two sentences mean the same thing (something true). The second two sentences also mean the same thing as one another (something false). But what the second two sentences mean is different from what the first two sentences mean.

  4. When "it is not the case that" is in front of a sentence that has no internal logical structure---usually a sentence with just one verb-phrase---the negation can be "transferred to the verb" in various ways. For example

    1. "It is not the case that Deputy Dan Dances" can be cleaned up as "Deputy Dan doesn't Dance".
    2. "It is not the case that translation is trivial" can be cleaned up as "Translation is not trivial".
    3. "It is not the case that Ronny Runs" can be cleaned up as "Ronny fails to Run".

We can clean up the awkward sentence "If If Deputy Dan Dances, then Carl Cringes, then Ronny Runs" in two steps.

  1. If If Deputy Dan Dances, then Carl Cringes, then Ronny Runs.
  2. If on the condition that Deputy Dan Dances, Carl Cringes, then Ronny Runs.
  3. If Carl Cringes on the condition that Deputy Dan Dances, then Ronny Runs.

the resulting sentence is much easier to read.

We call the result of cleaning up a sentence a stylistic variant or stylistic variation of the original sentence.

Stylistic Variant
A stylistic variant of a sentence is the result of "cleaning it up" to make it more readable while preserving its meaning

Cleaning up sentences can be a dangerous matter, though. This is because the transformations we apply when we clean up sentences can sometimes introduce ambiguity.

Here's an example. Consider the sentence "It is not the case that if Ronny Runs, then Carl Cringes", which we get from ¬(RQ)

  1. It is not the case that if Ronny Runs, then Carl Cringes
  2. Is not the case that on the condition that Ronny Runs, Carl Cringes
  3. It is not the case that Carl Cringes on the condition that Ronny Runs

This may seem like a good translation. But now consider the sentence "If Ronny Runs, it is not the case that Carl Cringes", which we get from (R→¬Q).

  1. If Ronny Runs, it is not the case that Carl Cringes
  2. On the condition that Ronny Runs, it is not the case that Carl Cringes
  3. It is not the case that Carl Cringes on the condition that Ronny Runs

Notice that we get exactly the same sentence. Thus, in our attempt at a more elegant expression, we've lost some information. At least without looking at context and other things, there's no way of recovering which sentence "It is not the case that Carl Cringes on the condition that Ronny Runs" is a translation of. By cleaning up the style, we've obscured the logical structure of the sentence and introduced an ambiguity.

How we can transform sentences while preserving their meanings, and not introducing ambiguities is a big and hard problem, and one still studied by logicians, philosophers and linguists. Since we can't spend time reviewing all that literature, you'll just need to use common sense and your understanding of English to avoid introducing harmful ambiguities when you translate from symbols to English.

English to Symbols

Translations in the opposite direction---from English to Symbols---also require a scheme of abbreviation. Such translations are judged for correctness according to the following rule.

Criterion of Correctness for English to Symbols
A formal sentence ϕ correctly translates an English sentence (relative to some scheme of abbreviation) if and only if the original english sentence is a stylistic variant of the translation of ϕ into English according to that scheme of abbreviation.

For example:

  1. A correct translation of "If Carl Cringes on the condition that Deputy Dan Dances, then Ronny Runs", relative to the scheme of abbreviation that we used in the previous section, is (PQ) → R---because one good translation of (PQ) → R using this scheme is "If Carl Cringes on the condition that Deputy Dan Dances, then Ronny Runs".
  2. A correct translation of "It is not the case that if Carl Cringes, then Ronny Runs", relative to the scheme of abbreviation that we used in the previous section, is ¬(QR)---because one good translation of ¬(QR) using this scheme is "It is not the case that if Carl Cringes, then Ronny Runs".
  3. The translation of "It is not the case that if Carl Cringes, then Ronny Runs", relative to the scheme of abbreviation that we used in the previous section, as QR) is not correct---because there is no way of translating QR) to mean "It is not the case that if Carl Cringes, then Ronny Runs".

Sometimes more than one translation from English to symbols will technically be correct, according to our definition. This happens when a sentence is ambiguous, as in the example at the end of the previous section. We must be cautious in cases like these that we choose whichever of the available correct translations is relevant to the argument as the speaker intends it (assuming that they have a specific intention in mind---if they are talking without being certain of what they mean to say, then we should take note of this fact and act accordingly).

Because translating from English to Symbols sometimes requires telling which sentence is a stylistic variant on which other sentence, it sometimes requires a bit of intuition. But there's a good approximate algorithm to follow.

English To Symbols
  1. Replace all the stylistic variations on "if ..., then" and "it is not the case that" with their "if ..., then" and "it is not the case that" equivalents.
  2. Replace the English main connective with the appropriate symbol. If you are replacing an "If... then", remember to wrap the two clauses you're replacing in parentheses, if they're not already wrapped.
  3. If there are any sentences remaining that do not occur in the scheme of abbreviation, repeat this procedure on those sentences.
  4. If there are just sentences that occur in the scheme of abbreviation, replace them with the corresponding sentence letters.

Some tips:

  1. Once you've removed stylistic variation, if the first world is "If", the main connective is whatever "if ... then ..." pair that word is part of.
  2. Once you've removed stylistic variation, if the first phrase is "It is not the case that", then that is the main connective.
  3. Once you've removed stylistic variation "If" and ",then" behave a lot like parentheses: they're monogamous (they have only one partner), and not very discriminating (they pair with the nearest available unpaired partner).

Here's how the sentences of the previous section look if we translate in the other direction:

Ex.

  1. If Carl Cringes, then Ronny Runs
  2. (Carl Cringes Ronny Runs)
  3. Q → R

Ex. 2

  1. If Carl Cringes, then it is not the case that Ronny Runs
  2. (Carl Cringes it is not the case that Ronny Runs)
  3. (Carl Cringes  → ¬Ronny Runs)
  4. (Q→¬R)

Ex. 3

  1. If it is not the case that Carl Cringes, then Ronny Runs
  2. (it is not the case that Carl Cringes Ronny Runs)
  3. (¬Carl Cringes Ronny Runs)
  4. QR)

Ex. 4

  1. It is not the case that if Carl Cringes, then Ronny Runs
  2. ¬ if Carl Cringes, then Ronny Runs
  3. ¬(Carl Cringes Ronny Runs)

Ex. 5

  1. If Deputy Dan Dances, then if Carl Cringes, then Ronny Runs
  2. (Deputy Dan Dances if Carl Cringes, then Ronny Runs)
  3. (Deputy Dan Dances (Carl Cringes Ronny Runs))
  4. (P→(QR))

Ex. 6

  1. If If Deputy Dan Dances, then Carl Cringes, then Ronny Runs
  2. (If Deputy Dan Dances, then Carl Cringes Ronny Runs)
  3. ((Deputy Dan Dances Carl Cringes) Ronny Runs)
  4. ((PQ)→R)

Problem Set 3

Please use the following scheme of abbreviation to translate the attached English sentences into our formal language.

P = People want to know what's going on
Q = Questions will be raised
R = Randy's wrangling a deal
S = Somebody is going to get rich

Press return to check your translation. If the sentence to be translated turns green, this means you've succeeded! Once you've got a green sentence, press submit to submit and save your answer.

Remember, the keyboard shorthand for our logical symbols is as follows:

ConnectiveKeyboard Shorthand
/\
\/
->
↔︎<->
¬~
3.1
People want to know what's going on.
3.2
If people want to know what's going on, then questions will be raised.
3.3
Questions will be raised only if people want to know what's going on.
3.4
Given that questions will be raised if people want to know what's going on, Randy's not wrangling a deal.
3.5
If Randy's wrangling a deal, then provided that questions won't be raised, somebody is going to get rich.
3.6
Somebody is going to get rich only provided that Randy's wrangling a deal.
3.7
Assuming that Randy's wrangling a deal, questions won't be raised.
3.8
In the case where somebody is going to get rich, if Randy's not wrangling a deal, then people want to know what's going on.
3.9
Questions won't be raised only on the condition that somebody is going to get rich.
3.10
It's not the case that if Randy's wrangling a deal, then somebody is going to get rich