Conditional Statements


ANSWERS

1. Rewrite statements to if-then form.

  1. If I catch the 9:00 ferry, then I will not be late.
  2. If I don't wash this dress, then I won't have anything to wear tonight.
  3. If you don't freeze, then I will shoot.

2. Construct truth tables

  1. p~q ~p

  2.    p       q       ~p       ~q       p~q       p ~q ~p   
       T       T       F       F    T F
       T       F       F       T    T F
       F       T       T       F    F T
       F       F       T       T    T T


  3. (p r) (q r)

  4.    p       q       r      pr     q r     (p r) (q r)  
       T       T       T    T T T
       T       T       F    F F F
       T       F       T    T T T
       T       F       F    F T F
       F       T       T    T T T
       F       T       F    T F F
       F       F       T    T T T
       F       F       F    T T T


3. Write the negation, contrapositive, converse and inverse of the following statements:

  1. If John can run to another town, then he can run more than five miles.
  2. If today is Christmas, tomorrow is Thursday.

  3. Negation:

    1. John can run to another town and he cannot run more than five miles.
    2. Today is Christmas and tomorrow is not Thursday.

    Contrapositive:

    1. If John cannot run more than five miles, then he cannot run to another town.
    2. If tomorrow is not Thursday, then today is not Christmas.

    Converse:

    1. If John can run more than five miles, then he can run to another town.
    2. If tomorrow is Thursday, then today is Christmas.

    Inverse:

    1. If John cannot run to another town, then he cannot run more than five miles.
    2. If today is not Christmas, then tomorrow is not Thursday.


4. Convert only-if statements to if-then statements.

  1. He will graduate only if he finishes the major project.

    Version 1:   If he finishes the major project, then he will graduate. (is not a correct translation)
    Version 2:   If he doesn't finish the major project, he won't graduate.


  2. She will go shopping with her friends only if she finishes her homework.
  3. Version 1:   If she finishes her homework, then she will go shopping. (is not a correct translation)
    Version 2:   If she doesn't finish her homework, she won't go shopping.