Problem 1: Translation
Consider the following parameterized atomic propositions:
- \(A(x, y, z) =\) “\(x\) knows that \(y\) owes \(z\) money”
- \(B(x, y) =\) “\(x\) owes \(y\) money”
- \(D(x, y) =\) “\(x\) will pay \(y\)”
- \(C(x) =\) “\(x\) is an honest person”
First, translate each of the following English propositions into a formal propositional statement, using the parameterized atomic propositions above. Make sure to to make maximal use of the logical connectives, in particular, negation, in your formal statements.
- Either Sam owes the store money or the store owes Sam money.
- If Henry knows that Io owes Mateo money and Io is honest, then Io will pay Mateo.
- For all people \(x\), if \(x\) is not honest, then \(x\) will not pay Tina.
- There exists people \(x\) and \(y\) such that for any person \(z\), \(x\) owes \(y\) money but \(z\) does not know that \(x\) owes \(y\) money.
Now consider the following formal propositional statements. Give English propositions that are equivalent to these formal statements.
- \(D(\text{"Laura"}, \text{"Roberto"}) → C(\text{"Laura"})\).
- \(∀x, y \ldotp C(x) → D(x, y)\).
- \(∀x \ldotp ¬C(x) → ∃y, z \ldotp A(y, x, z) → ¬D(x, z) ∧ D(x, y)\).
Problem 2: Objection!
A logical fallacy is a misconception due to an erroneous step of logical reasoning. In this problem, we’ll explore some common logical fallacies, their formal representation in propositional logic, and their refutation.
For each of the propositions below:
- Translate the proposition into a formal propositional statement, representing atomic propositions with fresh propositional variables. Make sure (a) state which variables correspond to which atomic propositions and (b) make maximal use of the logical connectives in your formal statement.
- In a few sentences, argue why the resulting formal proposition is not provable using your intuition of the semantics of the logical connectives of propositional logic.
(Hint: recall that logical implication \((\rightarrow)\) captures the idea that we assume that a proposition is true and go on to prove another proposition true using that assumption. Whenever a situation describes a proposition that you are suppose to assume is true, you should use implication to represent this fact.)
- I assume that if I buy you a present, you will like me. I did not buy you a present, therefore you will not like me.
- We know that this drug will cure cancer or kill the patient. Furthermore, we observe that the drug cures the patient. Therefore, the drug will not kill the patient.
- Suspect A claims that suspect B was the thief. We showed that suspect A is a liar. Therefore, we know that suspect B is not a thief.
- It has been proven that if you run, you will get into shape. I got into shape, therefore, I must have ran.
Problem 3: Just Drillin’
Formally prove the following propositions in first-order logic:
Claim 1: \(A, A \rightarrow C \wedge D \vdash A \wedge (B \vee C)\).
Claim 2: \(A \vee B, A \rightarrow C \vdash (B \rightarrow C) \rightarrow C\).