Symbolize each of the following arguments (both of which are intended to be valid) and use indirect derivations.

1.  If Alice studies then she will get most of the answers correct, and if she gets most of the answers correct then she will pass the test.  Therefore, if Alice does not pass the test then she did not study.  [use S,A,P]

S -> A, A -> P | ~P -> ~S

1.  S -> A
2.  A -> P     \ ~P -> ~S
    3.  ~P      HCP
    4.  ~A      2,3,  MT
    5.  ~S      1,4,  MT
6.  ~P -> ~S    3-5,  CP


2.  Knowing that Alice studies only if she is not working and she is not working only if she does not have a job proves that unless she is not studying she does not have a job.   [use S,W,J]

|-  [(S -> ~W) & (~W -> ~J)] -> (~S v ~J)

    1.  (S -> ~W) & (~W -> ~J)      HCP
    2.  S -> ~J                              1,  HS
    3.  ~S v ~J                              2,  Impl
4
[(S -> ~W) & (~W -> ~J)] -> (~S v ~J)   1-3,  CP


One thing to note is the efficiency ot these proofs compared with the indirect derivations you did for the same forms.