Question 471379
Things to remember


1) p v q is true when either p or q is true (otherwise it's true)


2) p --> q is only false when both p is true and q is false (otherwise it's true)



Using this info, we get the following table:


<table border=1 cellpadding=5><th>p</th><th>q</th><th>~q</th><th>p V q</th><th>~q --> (p V q)</th><tr><td>T</td><td>T</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>T</td></tr><tr><td>F</td><td>T</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></tr></table>


Let me know if you need me to go over how I got a particular element or column.