Exercises
Question #2 Translate the following English sentences into SPL. Use "P" to mean "it is going to rain." :
- (~Ta&~Sa) [Show answer]
- (Ta→~Sa) [Show answer]
- (Sa↔~Tb) [Show answer]
- ((Sa&~Sb)→(~Ta&Tb)) [Show answer]
- If it is not going to rain, then Ann will go out. [Show answer]
- Although it is going to rain, Ann and Beth both go hiking. [Show answer]
- If it is not going to rain, and if Ann goes hiking, then Beth goes hiking too. [Show answer]
∃x((Fx&Gx)→P)Now "((Fa&Ga)→P)" says that if a is both F and G, then P. It is a wff that talks about a particular object a. The difference with the quantified sentence is that the latter is not talking about the object a anymore. What the qauntified sentence says is that there is at least one object x such that if it is both F and G, then P. Maybe this object is a, or maybe it is some other object b, but the quantified sentence does not tell us which object it is.
Now consider also this wff :
∀x((Fx&Gx)→P)What this wff says is that everthing is such that if it is F and G, then P. Notice that this is not the same as saying that if everthing is F and G, then P. That would be formalized using this wff :
(∀x(Fx&Gx)→P)Do you know what is the difference between the two wffs? Roughly, what the first wff says is that if you take any object you can find, if it is both F and G, then "P" is true. So it implies that "P" is true even when there is only one thing in the whole world that is both F and G. But the second wff has no such implication. It says that "P" is true when everything is both F and G. So there is no guarantee that "P" is true when only one object is both F and G. Obviously, the first wff entails the second, but not vice versa.
Here are a few more examples :
∀y(By&Dy) : Everything is both B and DYou can replace "∀" with "∃", and "every" by "some" (meaning "at least one") in these examples to obtain the translation of the corresponding existentially quantified wffs.∀y(~By&Dy) : Everything is not B but D
∀y(By&~Dy) : Everything is B but not D
∀y(~By&~Dy) : Everything is such that it is not B and and it is not D
∀y~(By&Dy) : Everything is such that it is not both B and D
∀y(By→Dy) : Everything is such that if it is B then it is D (Or, every B is D)
∀y(By→~Dy) : Every B is not D
∀y(~By→Dy) : Everything that is not B is D
∀y(~By→~Dy) : Everything that is not B is also not D
∀y~(By→Dy) : Everything is such that it is not the case if it is B it is also D
ExercisesTranslate the wffs below into English using this translation scheme :
a : Ann
b : Beth
Hx : x is heavy
Ox : x is old
- ∃x(Hx→Ox) [Show answer]
- ~∃y(Hy&Oy) [Show answer]
- ~∀z(Hz&Oz) [Show answer]
- ~∀z(Hz→Oz) [Show answer]
- (∃xHx∨Oa) [Show answer]
- (Oa→∃yOy) [Show answer]
- (∃xHx↔~∀x~Hx) [Show answer]
- ((∀xHx&∀x~Ox)→(Hb&~Ob)) [Show answer]
- (∀x(Hx→Ox)→(Hb→Ob)) [Show answer]
- ∀y(Hy∨Oy) [Show answer]
- (∀yHy∨∀yOy) [Show answer]
Restricting the domain of quantification can make formalization easier. For example, we might formalize "everyone is wicked" as " ∀x(Hx→Wx)". But if we restrict the domain of quantification so that we are only talking about human beings, then we can just write down "∀xWx", and leave it as understood that the domain includes all human beings only. But remember : if you do restrict the domain of quantification in formalization, you should define the domain explicitly. For example, consider this simple inference:
Everyone is wicked.By restricting the domain only to human beings, we can formalize the argument easily :
If everyone is wicked, then nobody goes to heaven.
So nobody goes to heaven.
Translation scheme:Domain : the set of all human beings
Wx : x is wicked
Gx : x goes to heaven.Formalized sequent:
∀xWx, (∀xWx→~∃xGx)
~∃xGx
What if you do not restrict the domain? In such case the formalization can proceed as follows:
Translation scheme:So you can see that restricting the domain simplifies the formalization. But do remember that with any argument there should only be a single domain. That implies you should not use different domains to formalize the following argument:Domain : everything
Wx : x is wicked
Px : x is a person
Gx : x goes to heavenFormalized sequent:
∀x(Px→Wx), (∀x(Px→Wx)→~∃x(Px&Gx))
~∃x(Px&Gx)
Every human being is an animal.The correct way to formalize this argument is not to restrict the domain at all, but to write down something like the following:
Every animal can feel pain.
So every human being can feel pain.
Translation scheme :It would be a mistake to have three domains, one for each premise and another one for the conclusion.Hx : x is a human being
Ax : x is an animal
Cx : x can feel painFormalized sequent :
∀x(Hx→Ax), ∀x(Ax→Cx)
∀x(Hx→Cx)
Exercises
- Everyone is happy. [Show answer]
- If everyone is happy then nobody is sad. [Show answer]
- If everyone is happy then someone is not sad. [Show answer]
- If someone is sad, then not everyone is happy. [Show answer]
- Everybody is sad if someone is sad. [Show answer]
- Someone is not sad and not happy. [Show answer]
- Nobody is sad and happy. [Show answer]
- If nobody is sad and happy, then everyone who is sad is not happy, and everyone who is happy is not sad. [Show answer]
- Either Tom is happy, or Jane is sad. [Show answer]
- Someone is either happy, or sad, but not both. [Show answer]
- If Tom is happy, then everyone is happy. [Show answer]
The ultimate court of appeal is observation and experiment... not authority.

Thomas Henry Huxley