I'm having a hard time coming up with a formal proof by cases method for this set of premises and conclusion. Note that $\neg$ refers to negation and $\wedge$ denotes AND. | Denotes subproof
$\neg(A\wedge B)$
$\neg(A\wedge\neg B)$
Thus,
- $\neg A$
Use # for contradiction; justify subproof assumptions with Assume; always drop outer parentheses; no spaces in PROP.
- ~(A&B) Premise
- ~(A&~B) Premise
- | B Assume
- || ~B Assume
- || B Reit;3
- || # #Intro;4,5
- | A #Elim;6
- | A&~B &Intro;4,7
- | # #Intro;2,8
- ~A #Elim;9
This is what I have currently, but am not sure if the steps I took are okay.


By De Morgan's law and double negation we have $\neg(A\wedge B) \Leftrightarrow \neg A \vee \neg B$ and $\neg(A\wedge \neg B) \Leftrightarrow \neg A \vee B$. Therefore $$ \neg(A\wedge B) \wedge \neg(A\wedge \neg B) \Leftrightarrow (\neg A \vee \neg B) \wedge (\neg A \vee B) \overset{DP}{\Leftrightarrow} \neg A \vee (B\wedge \neg B) \Leftrightarrow \neg A $$ Here DP is the distributive property. The last equivalence holds because $B\wedge \neg B$ is a contradiction.