I'm having trouble representing question # 3 in a propositional logic formula, from these lecture notes on propositional logic and propositional resolution:
3) Formalization and Proof. There are three suspects for a murder: Adams, Brown, and Clark. Adams says "I didn't do it. The victim was old acquaintance of Brown's. But Clark hated him." Brown states "I didn't do it. I didn't know the guy. Besides I was out of town all the week." Clark says "I didn't do it. I saw both Adams and Brown downtown with the victim that day; one of them must have done it." Assume that the two innocent men are telling the truth, but that the guilty man might not be. Write out the facts as sentences in Propositional Logic, and use propositional resolution to solve the crime.
So far I have this:
\begin{array}{l} A & : \text{Adam did it} \\ B & : \text{Brown did it} \\ C & : \text{Clark did it} \\ S_1 = & (\lnot A \Rightarrow (B \lor C) ) & : \text{Not A. But the victim was old acquaintance of B's. } \\ && : \text{But C hated him.} \\ S_2 = & (\lnot B) & : \text{Not B. B was out of town all the week.} \\ && : \text{The fact that B was ot of town gives us no info.} \\ S_3 = & (\lnot C \Rightarrow (A \lor B) ) & : \text{Not C. C saw both A and B downtown with the} \\ && : \text{ victim that day; one of them must have done it.} \\ S = & S_1 \lor S_2 \lor S_3 \end{array}
I feel like I should be deriving better interpretations. For example, should I interpret $S_1$ as: $$ S_1' = (\lnot A \rightarrow (\lnot B \land C)) $$
Because B was victim's "acquaintance" (didn't kill him) and C "hated him" (so killed him)?