Question 1190469
<font color=black size=3>
T = true
F = false<table border = "1" cellpadding = "5"><tr><td>p</td><td>q</td><td>~q</td><td>p ^ ~q</td><td>p -> q</td><td>(p ^ ~q) v (p -> q)</td></tr><tr><td>T</td><td>T</td><td>F</td><td>F</td><td>T</td><td>T</td></tr><tr><td>T</td><td>F</td><td>T</td><td>T</td><td>F</td><td>T</td></tr><tr><td>F</td><td>T</td><td>F</td><td>F</td><td>T</td><td>T</td></tr><tr><td>F</td><td>F</td><td>T</td><td>F</td><td>F</td><td>F</td></tr></table>Notes:<ul><li>p ^ q is true when both p and q are true together; otherwise, it's false.</li><li>p -> q is false when a true antecedent (p) leads to a false conclusion (q); otherwise, it's true</li><li>~q is the result of flipping everything in column q</li></ul>
</font>