I am working through Velleman's "How to Prove It", and I have some uncertainties about this exercise.
Analyze the logical forms of the following statements:
- Either both Ralph and Ed are tall, or both of them are handsome.
- Both Ralph and Ed are either tall or handsome
- Both Ralph and Ed are neither tall nor handsome
- Neither Ralph nor Ed is both tall and handsome
Here are my solutions:
Let $R_T =$ Ralph is tall, $R_H =$ Ralph is handsome, $E_T =$ Ed is tall, and $E_H =$ Ed is handsome.
- $(R_T \land E_T) \lor (R_H \land E_H)$
- $(R_T \lor R_H) \land (E_T \lor E_H)$
- $(\neg R_T \land \neg R_H) \land (\neg E_T \land \neg E_H)$
- $\neg (R_T \land R_H) \land \neg (E_T \land E_H)$
For #4 is it correct to interpret "neither Ralph nor Ed" as the conjunction of the two other negated conjunctions?
Thank you in advance!